Skip to content

Commit 9b191c9

Browse files
committed
Bump version to v0.1.3
Update indexmap 1.4 => 1.6
1 parent 7bf4421 commit 9b191c9

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zerogc"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
authors = ["Techcable <[email protected]>"]
55
description = "Zero overhead tracing garbage collection for rust"
66
repository = "https://github.com/DuckLogic/zerogc"
@@ -12,7 +12,7 @@ readme = "README.md"
1212
# Manually included tracing support for third party libraries
1313
# Providing support for these important libraries,
1414
# gives zerogc 'batteries included' support.
15-
indexmap = { version = "1.4", optional = true }
15+
indexmap = { version = "1.6", optional = true }
1616

1717
[workspace]
1818
members = ["libs/simple", "libs/derive", "libs/context"]

libs/context/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "zerogc-context"
33
description = "Handles the context of a zerogc collector."
4-
version = "0.1.2"
4+
version = "0.1.3"
55
authors = ["Techcable <[email protected]>"]
66
repository = "https://github.com/DuckLogic/zerogc"
77
readme = "../../README.md"
88
license = "MIT"
99
edition = "2018"
1010

1111
[dependencies]
12-
zerogc = { path = "../..", version = "0.1.2" }
13-
once_cell = { version = "1.4.0", optional = true }
12+
zerogc = { path = "../..", version = "0.1.3" }
13+
once_cell = { version = "1.5", optional = true }
1414
# Concurrency
1515
parking_lot = { version = "0.11", features = ["nightly"], optional = true }
1616
crossbeam-utils = { version = "0.8", optional = true }

libs/derive/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "zerogc-derive"
33
description = "Procedural derive for zerogc's garbage collection"
4-
version = "0.1.2"
4+
version = "0.1.3"
55
authors = ["Techcable <[email protected]>"]
66
repository = "https://github.com/DuckLogic/zerogc"
77
readme = "../../README.md"
@@ -12,12 +12,10 @@ edition = "2018"
1212
proc-macro = true
1313

1414
[dev-dependencies]
15-
zerogc = { version = "0.1.2", path = "../.." }
15+
zerogc = { version = "0.1.3", path = "../.." }
1616

1717
[dependencies]
1818
# Proc macros
1919
syn = "1.0.55"
2020
quote = "1.0.8"
2121
proc-macro2 = "1"
22-
# Itertools
23-
itertools = "0.9"

libs/simple/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "zerogc-simple"
33
description = "Lightweight mark/sweep collector for zerogc."
4-
version = "0.1.2"
4+
version = "0.1.3"
55
authors = ["Techcable <[email protected]>"]
66
repository = "https://github.com/DuckLogic/zerogc"
77
readme = "../../README.md"
88
license = "MIT"
99
edition = "2018"
1010

1111
[dependencies]
12-
zerogc = { path = "../..", version = "0.1.0" }
13-
once_cell = { version = "1.4.0", optional = true }
12+
zerogc = { path = "../..", version = "0.1.3" }
13+
once_cell = { version = "1.5", optional = true }
1414
# Shared impl
15-
zerogc-context = { path = "../context", version = "0.1.0", default-features = false }
15+
zerogc-context = { path = "../context", version = "0.1.3", default-features = false }
1616
# Concurrency
1717
parking_lot = { version = "0.11", features = ["nightly"], optional = true }
1818
# Logging

0 commit comments

Comments
 (0)