Skip to content

Commit

Permalink
refactor: Use version-fixed dependencies between workspace crates
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus23 committed Sep 10, 2023
1 parent 15be8d0 commit d789ea3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion wnfs-hamt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ semver = { version = "1.0", features = ["serde"] }
serde = { version = "1.0", features = ["rc"] }
serde-byte-array = "0.1.2"
thiserror = "1.0"
wnfs-common = { path = "../wnfs-common", version = "0.1.25" }
wnfs-common = { path = "../wnfs-common", version = "=0.1.25" }

[dev-dependencies]
async-std = { version = "1.11", features = ["attributes"] }
Expand Down
4 changes: 2 additions & 2 deletions wnfs-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ rand_core = "0.6"
wasm-bindgen = { version = "0.2.87", optional = true, features = ["serde-serialize"] }
wasm-bindgen-futures = { version = "0.4", optional = true }
web-sys = { version = "0.3", optional = true }
wnfs = { path = "../wnfs", version = "0.1.25" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.25" }
wnfs = { path = "../wnfs", version = "=0.1.26" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "=0.1.25" }

[dev-dependencies]
wasm-bindgen-test = "0.3"
Expand Down
6 changes: 3 additions & 3 deletions wnfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ serde_ipld_dagcbor = "0.4"
sha3 = "0.10"
skip_ratchet = { version = "0.3", features = ["serde"] }
thiserror = "1.0"
wnfs-common = { path = "../wnfs-common", version = "0.1.25" }
wnfs-hamt = { path = "../wnfs-hamt", version = "0.1.25" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "0.1.25" }
wnfs-common = { path = "../wnfs-common", version = "=0.1.25" }
wnfs-hamt = { path = "../wnfs-hamt", version = "=0.1.25" }
wnfs-nameaccumulator = { path = "../wnfs-nameaccumulator", version = "=0.1.25" }

[dev-dependencies]
async-std = { version = "1.11", features = ["attributes"] }
Expand Down

0 comments on commit d789ea3

Please sign in to comment.