Skip to content

Commit

Permalink
Fix covector releases (#486)
Browse files Browse the repository at this point in the history
* Fix covector releases

* Add workflow_dispatch
  • Loading branch information
thibault-martinez committed Jul 3, 2023
1 parent 5d258d1 commit 87d0ae0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 31 deletions.
1 change: 1 addition & 0 deletions .github/workflows/covector-version-or-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
branches:
- dev
- 2.0
workflow_dispatch:

jobs:
version-or-publish:
Expand Down
4 changes: 2 additions & 2 deletions bindings/native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ bench = false
[dependencies]
libc = "0.2.2"
thiserror = { version = "1.0.30" }
iota_stronghold = { package = "iota_stronghold", path = "../../client/", version = "1.0.0"}
engine = { package = "stronghold_engine", path = "../../engine", version = "1.0.0" }
iota_stronghold = { package = "iota_stronghold", path = "../../client/", version = "2.0.0-rc.0"}
engine = { package = "stronghold_engine", path = "../../engine", version = "2.0.0-rc.0" }
tokio = { version = "1.15.0", features = ["full"] }
base64 = { version = "0.13.0" }
iota-crypto = { version = "0.21.2", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ hkdf = { version = "0.12" }
bincode = { version = "1.3" }
pin-project = { version = "1.0.10", optional = true }
futures = { version = "0.3.21", optional = true }
engine = { package = "stronghold_engine", path = "../engine", version = "1.0.0" }
engine = { package = "stronghold_engine", path = "../engine", version = "2.0.0-rc.0" }
stronghold_utils = { package = "stronghold-utils", path = "../utils/", version = "1.0.0" }
stronghold_derive = { package = "stronghold-derive", path = "../derive", version = "1.0.0" }
rust-argon2 = { version = "=1.0.0" }
Expand Down
32 changes: 4 additions & 28 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,40 +26,16 @@ paste = "1.0.1"
once_cell = "1.4"
zeroize = { version = "1.5.7", features = [ "zeroize_derive" ] }
serde = { version = "1.0", features = [ "derive" ] }

[dependencies.stronghold-runtime]
path = "runtime"
version = "2.0"

[dependencies.digest]
version = "0.10.1"
optional = true
default-features = false

[dependencies.iota-crypto]
version = "0.21.2"
features = [
"age",
"pbkdf2",
"random",
"chacha",
"hmac",
"sha",
"x25519",
"blake2b",
"std"
]
default-features = false
stronghold-runtime = { version = "2.0.0-rc.0", path = "runtime" }
digest = { version = "0.10.1", optional = true, default-features = false }
iota-crypto = { version = "0.21.2", features = [ "age", "pbkdf2", "random", "chacha", "hmac", "sha", "x25519", "blake2b", "std" ], default-features = false }

[dev-dependencies]
tempfile = "3.1.0"
proptest = "1.0.0"
criterion = "0.4"
json = "0.12"

[dev-dependencies.stronghold-utils]
path = "../utils"
version = "1.0.0"
stronghold-utils = { path = "../utils", version = "1.0.0" }

[[bench]]
name = "engine_bench"
Expand Down

0 comments on commit 87d0ae0

Please sign in to comment.