Skip to content

Commit

Permalink
fix: remove bindings from workspace dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
felsweg-iota committed Jun 2, 2022
1 parent 9f7118b commit b72f9fd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .changes/bump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
"iota_stronghold" : minor
---
bump version
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = [
"engine",
"engine/runtime",
"bindings/native",
# "bindings/native",
"client",
"utils",
"derive",
Expand Down
4 changes: 2 additions & 2 deletions bindings/native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ bench = false
[dependencies]
libc = "0.2.2"
thiserror = { version = "1.0.30" }
iota_stronghold_new = { package = "iota_stronghold", path = "../../client/" }
engine = { package = "stronghold_engine", path = "../../engine" }
iota_stronghold = { package = "iota_stronghold", path = "../../client/", version = "0.5.0"}
engine = { package = "stronghold_engine", path = "../../engine", version = "0.5.1" }
tokio = { version = "1.15.0", features = ["full"] }
base64 = { version = "0.13.0" }
iota-crypto = { version = "0.8.0", features = [ "aes", "random", "ed25519", "sha", "hmac", "bip39-en", "bip39-jp", "slip10", "chacha", "x25519" ] }
Expand Down
11 changes: 6 additions & 5 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iota_stronghold"
version = "0.6.0"
version = "0.4.1"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -37,11 +37,12 @@ hkdf = { version = "0.11" }
bincode = { version = "1.3" }
pin-project = { version = "1.0.10", optional = true }
futures = { version = "0.3.21", optional = true }

stronghold-p2p = { package = "stronghold-p2p", path = "../p2p", version = "0.4.0", optional = true }
rlu = { package = "stronghold-rlu", path = "../rlu/" }
engine = { package = "stronghold_engine", path = "../engine" }
stronghold_utils = { package = "stronghold-utils", path = "../utils/" }
stronghold_derive = { package = "stronghold-derive", path = "../derive" }
rlu = { package = "stronghold-rlu", path = "../rlu/", version = "0.4.0" }
engine = { package = "stronghold_engine", path = "../engine", version = "0.5.1" }
stronghold_utils = { package = "stronghold-utils", path = "../utils/", version = "0.3.1" }
stronghold_derive = { package = "stronghold-derive", path = "../derive", version = "0.3.0" }

[dev-dependencies]
tokio = { version = "1.15.0", features = [ "full" ] }
Expand Down

0 comments on commit b72f9fd

Please sign in to comment.