Skip to content

Commit 4dbdaa5

Browse files
committed
Update dependencies
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
1 parent 02f4bc5 commit 4dbdaa5

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

indextree-macros/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "indextree-macros"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
description = "Macros for indextree"
66
license = "MIT"
@@ -9,13 +9,13 @@ license = "MIT"
99
proc-macro = true
1010

1111
[dependencies]
12-
proc-macro2 = "1.0.86"
13-
quote = "1.0.36"
14-
thiserror = "2.0.0"
15-
either = "1.13.0"
16-
syn = { version = "2.0.71", features = ["extra-traits", "full", "visit"] }
12+
proc-macro2 = "1.0.95"
13+
quote = "1.0.40"
14+
thiserror = "2.0.12"
15+
either = "1.15.0"
16+
syn = { version = "2.0.101", features = ["extra-traits", "full", "visit"] }
1717
itertools = "0.14.0"
18-
strum = { version = "0.27.0", features = ["derive"] }
18+
strum = { version = "0.27.1", features = ["derive"] }
1919

2020
[dev-dependencies]
21-
indextree = { path = "../indextree", version = "4.7.2" }
21+
indextree = { path = "../indextree", version = "4.7.4" }

indextree/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "indextree"
3-
version = "4.7.3"
3+
version = "4.7.4"
44
license = "MIT"
55
readme = "../README.md"
66
keywords = ["tree", "arena", "index", "indextree", "trie"]
@@ -20,9 +20,9 @@ std = []
2020
macros = ["indextree-macros"]
2121

2222
[dependencies]
23-
rayon = { version = "1.7.0", optional = true }
24-
serde = { version = "1.0.154", features = ["derive"], optional = true }
25-
indextree-macros = { path = "../indextree-macros", version = "0.1.2", optional = true }
23+
rayon = { version = "1.10.0", optional = true }
24+
serde = { version = "1.0.219", features = ["derive"], optional = true }
25+
indextree-macros = { path = "../indextree-macros", version = "0.1.3", optional = true }
2626

2727
[[example]]
2828
name = "parallel_iteration"

0 commit comments

Comments
 (0)