Skip to content

Commit

Permalink
Add missing dependency version
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Taillefer committed Dec 25, 2024
1 parent 68ce5bb commit d6a8d08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frozen-collections-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ proc-macro = true

[dependencies]
proc-macro-error = "1.0.4"
frozen-collections-core = { path = "../frozen-collections-core", features = ["macros"], default-features = false }
frozen-collections-core = { version = "0.2.0", path = "../frozen-collections-core", features = ["macros"], default-features = false }

[lints]
workspace = true
4 changes: 2 additions & 2 deletions frozen-collections/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ resolver = "2"
[dependencies]
ahash = { version = "0.8.11", default-features = false, features = ["default"] }
frozen-collections-macros = { path = "../frozen-collections-macros", optional = true }
frozen-collections-core = { path = "../frozen-collections-core", default-features = false }
frozen-collections-core = { version = "0.2.0", path = "../frozen-collections-core", default-features = false }

[dev-dependencies]
rand = "0.9.0-beta.1"
Expand All @@ -24,7 +24,7 @@ hashbrown = { version = "0.15.2", features = ["serde"] }
criterion = "0.5.1"
boomphf = "0.6.0"
ph = "0.8.5"
frozen-collections-core = { path = "../frozen-collections-core" }
frozen-collections-core = { version = "0.2.0", path = "../frozen-collections-core" }
serde = "1.0.216"
serde_json = "1.0.134"

Expand Down

0 comments on commit d6a8d08

Please sign in to comment.