-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I need to release an official version to crates.io so that static-reflect has a public dependency to build against. AFAIK git-dependencies are forbidden on crates.io (thats a good thing)
- Loading branch information
Showing
4 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "zerogc" | ||
version = "0.2.0-alpha.1" | ||
version = "0.2.0-alpha.2" | ||
authors = ["Techcable <[email protected]>"] | ||
description = "Zero overhead tracing garbage collection for rust" | ||
repository = "https://github.com/DuckLogic/zerogc" | ||
|
@@ -14,7 +14,7 @@ readme = "README.md" | |
# gives zerogc 'batteries included' support. | ||
indexmap = { version = "1.6", optional = true } | ||
# Used for macros | ||
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.1" } | ||
zerogc-derive = { path = "libs/derive", version = "0.2.0-alpha.2" } | ||
|
||
[workspace] | ||
members = ["libs/simple", "libs/derive", "libs/context"] | ||
|
@@ -32,4 +32,4 @@ std = [] | |
# This is implied by using the standard library (feature="std") | ||
# | ||
# This implements `Trace` for `Box` and collections like `Vec` | ||
alloc = [] | ||
alloc = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "zerogc-context" | ||
description = "Handles the context of a zerogc collector." | ||
version = "0.2.0-alpha.1" | ||
version = "0.2.0-alpha.2" | ||
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.1" } | ||
zerogc = { path = "../..", version = "0.2.0-alpha.2" } | ||
once_cell = { version = "1.5", optional = true } | ||
# Concurrency | ||
parking_lot = { version = "0.11", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.1" | ||
version = "0.2.0-alpha.2" | ||
authors = ["Techcable <[email protected]>"] | ||
repository = "https://github.com/DuckLogic/zerogc" | ||
readme = "../../README.md" | ||
|
@@ -12,7 +12,7 @@ edition = "2018" | |
proc-macro = true | ||
|
||
[dev-dependencies] | ||
zerogc = { version = "0.2.0-alpha.1", path = "../.." } | ||
zerogc = { version = "0.2.0-alpha.2", path = "../.." } | ||
|
||
[dependencies] | ||
# Proc macros | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[package] | ||
name = "zerogc-simple" | ||
description = "Lightweight mark/sweep collector for zerogc." | ||
version = "0.2.0-alpha.1" | ||
version = "0.2.0-alpha.2" | ||
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.1" } | ||
zerogc = { path = "../..", version = "0.2.0-alpha.2" } | ||
once_cell = { version = "1.5", optional = true } | ||
# Shared impl | ||
zerogc-context = { path = "../context", version = "0.2.0-alpha.1", default-features = false } | ||
zerogc-context = { path = "../context", version = "0.2.0-alpha.2", default-features = false } | ||
# Concurrency | ||
parking_lot = { version = "0.11", optional = true } | ||
# Logging | ||
|