Skip to content

Commit

Permalink
Version bump to alpha.6
Browse files Browse the repository at this point in the history
I am mostly using this as "garbage collected arenas".
Use as a more general GC would require a redesign.
  • Loading branch information
Techcable committed Dec 20, 2021
1 parent d0af2e3 commit c3e1955
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zerogc"
version = "0.2.0-alpha.5"
version = "0.2.0-alpha.6"
authors = ["Techcable <[email protected]>"]
description = "Zero overhead tracing garbage collection for rust"
repository = "https://github.com/DuckLogic/zerogc"
Expand All @@ -21,7 +21,7 @@ anyhow = { version = "1", optional = true }
# Serde support (optional)
serde = { version = "1", optional = true, features = ["derive"] }
# Used for macros
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.5" }
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.6" }
# Used for the "epsilon" no-op collector
bumpalo = { version = "3", optional = true }
# Used for our custom hashmap
Expand Down
6 changes: 3 additions & 3 deletions libs/context/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "zerogc-context"
description = "Handles the context of a zerogc collector."
version = "0.2.0-alpha.5"
version = "0.2.0-alpha.6"
authors = ["Techcable <[email protected]>"]
repository = "https://github.com/DuckLogic/zerogc"
readme = "../../README.md"
license = "MIT"
edition = "2018"

[dependencies]
zerogc = { path = "../..", version = "0.2.0-alpha.5" }
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.5" }
zerogc = { path = "../..", version = "0.2.0-alpha.6" }
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.6" }
once_cell = { version = "1.5", optional = true }
# Concurrency
parking_lot = { version = "0.11", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions libs/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zerogc-derive"
description = "Procedural derive for zerogc's garbage collection"
version = "0.2.0-alpha.5"
version = "0.2.0-alpha.6"
authors = ["Techcable <[email protected]>"]
repository = "https://github.com/DuckLogic/zerogc"
readme = "../../README.md"
Expand All @@ -12,7 +12,7 @@ edition = "2018"
proc-macro = true

[dev-dependencies]
zerogc = { version = "0.2.0-alpha.5", path = "../..", features = ["serde1"] }
zerogc = { version = "0.2.0-alpha.6", path = "../..", features = ["serde1"] }
serde = { version = "1" }

[dependencies]
Expand All @@ -29,4 +29,4 @@ itertools = "0.10.1"

[features]
# Indicates that zerogc was compiled with support for serde,
__serde-internal = []
__serde-internal = []
8 changes: 4 additions & 4 deletions libs/simple/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zerogc-simple"
description = "Lightweight mark/sweep collector for zerogc."
version = "0.2.0-alpha.5"
version = "0.2.0-alpha.6"
authors = ["Techcable <[email protected]>"]
repository = "https://github.com/DuckLogic/zerogc"
readme = "../../README.md"
Expand All @@ -10,11 +10,11 @@ edition = "2018"

[dependencies]
inherent = "1"
zerogc = { path = "../..", version = "0.2.0-alpha.5" }
zerogc = { path = "../..", version = "0.2.0-alpha.6" }
once_cell = { version = "1.5", optional = true }
# Shared impl
zerogc-context = { path = "../context", version = "0.2.0-alpha.5", default-features = false }
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.5" }
zerogc-context = { path = "../context", version = "0.2.0-alpha.6", default-features = false }
zerogc-derive = { path = "../derive", version = "0.2.0-alpha.6" }
# Concurrency
parking_lot = { version = "0.11", optional = true }
# Logging
Expand Down

0 comments on commit c3e1955

Please sign in to comment.