Skip to content

Commit

Permalink
Update a few dependencies (#50)
Browse files Browse the repository at this point in the history
* Update `itertools` dependency from "0.12" to "0.13"

* Update `rustc-hash` dependency from "1.1" to "2.0"

* Update `duplicate` dependency from "1.0" to "2.0"
  • Loading branch information
regexident authored Dec 12, 2024
1 parent f7779c1 commit e70d643
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ascent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ readme = "../README.MD"
ascent_macro = { workspace = true }
ascent_base = { workspace = true }
cfg-if = "1.0"
rustc-hash = "1.1"
hashbrown = {version = "0.14", features = ["raw"]}
rustc-hash = "2.0"
instant = "0.1"
dashmap = { version = "5.5", features = ["raw-api", "rayon"], optional = true }
rayon = { version = "1.5", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions ascent_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ syn = { version = "2.0.57", features = ["derive", "full", "extra-traits", "visit
quote = "1.0"
ascent_base = { workspace = true }
proc-macro2 = "1.0"
itertools = "0.12.0"
itertools = "0.13"
petgraph = "0.6.0"
derive-syn-parse = "0.2.0"
lazy_static = "1.4.0"
duplicate = { version = "1.0.0", default-features = false }
duplicate = { version = "2.0", default-features = false }

[dev-dependencies]
ascent = { path = "../ascent" }
Expand Down
2 changes: 1 addition & 1 deletion ascent_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ascent = { path = "../ascent", default-features = false }
stopwatch = "0.0.7"
bencher = "0.1.5"
derive_more = "0.99.16"
itertools = "0.12"
itertools = "0.13"
quote = "1.0"
arrayvec = "0.7"
const-fnv1a-hash = "1.0.1"
Expand Down
4 changes: 2 additions & 2 deletions byods/ascent-byods-rels/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ autoexamples = false

[dependencies]
ascent = { workspace = true, default-features = false }
itertools = "0.12"
rustc-hash = "1.1"
derive_more = "0.99.17"
itertools = "0.13"
rustc-hash = "2.0"
# syn is a dependency of derive_more 0.99, and the minimum version is buggy, so choosing a well-behaved
# version. Should be removed when derive_more switches to syn v2.0.
syn = "1.0.109"
Expand Down
2 changes: 1 addition & 1 deletion byods/ascent-byods-rels/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ autobins = false
[dependencies]
ascent = { path = "../../../ascent" }
ascent-byods-rels = { path = ".." }
itertools = "0.12"
itertools = "0.13"
serde = "1.0"
csv = "1.0"
separator = "0.4.1"
Expand Down

0 comments on commit e70d643

Please sign in to comment.