diff --git a/frozen-collections-macros/Cargo.toml b/frozen-collections-macros/Cargo.toml index babfc1f..219e886 100644 --- a/frozen-collections-macros/Cargo.toml +++ b/frozen-collections-macros/Cargo.toml @@ -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 diff --git a/frozen-collections/Cargo.toml b/frozen-collections/Cargo.toml index 2fae703..50bef31 100644 --- a/frozen-collections/Cargo.toml +++ b/frozen-collections/Cargo.toml @@ -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" @@ -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"