Skip to content

Commit

Permalink
chore: add versions to Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Dec 11, 2020
1 parent d152316 commit 1f004ea
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ tempfile = "3.1.0"
cid = { version = "0.6.0", default-features = false, features = ["std"] }
fil_logger = "0.1.2"
serde_json = "1.0.59"
storethehash-primary-cid = { path = "primary/cid" }
storethehash-primary-inmemory = { path = "primary/inmemory" }
storethehash-primary-cid = { version = "0.1.0", path = "primary/cid" }
storethehash-primary-inmemory = { version = "0.1.0", path = "primary/inmemory" }

[workspace]
members = [
Expand Down
4 changes: 2 additions & 2 deletions db/cid-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ name = "storethehash_db_cid"
crate-type = ["cdylib", "staticlib"]

[dependencies]
storethehash = { path = "../../" }
storethehash-primary-cid = { path = "../../primary/cid" }
storethehash = { version = "0.1.0", path = "../../" }
storethehash-primary-cid = { version = "0.1.0", path = "../../primary/cid" }
libc = "0.2.81"
2 changes: 1 addition & 1 deletion primary/cid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Volker Mische <[email protected]>"]
edition = "2018"

[dependencies]
storethehash = { path = "../../" }
storethehash = { version = "0.1.0", path = "../../" }
cid = { version = "0.6.0", default-features = false, features = ["std"] }
wasabi_leb128 = "0.4.0"
log = "0.4.11"
2 changes: 1 addition & 1 deletion primary/inmemory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ authors = ["Volker Mische <[email protected]>"]
edition = "2018"

[dependencies]
storethehash = { path = "../../" }
storethehash = { version = "0.1.0", path = "../../" }

0 comments on commit 1f004ea

Please sign in to comment.