Skip to content

Commit ed2cd2c

Browse files
authored
Merge pull request #143 from iotaledger/chore/update-to-v0.1.5-alpha
release: update to v0.1.5-alpha
2 parents b6f346c + c4fbd96 commit ed2cd2c

File tree

2 files changed

+32
-32
lines changed

2 files changed

+32
-32
lines changed

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[workspace]
2+
resolver = "2"
23
members = ["hierarchies-rs/examples", "hierarchies-rs/hierarchies"]
34
exclude = ["bindings/wasm/hierarchies_wasm"]
4-
resolver = "2"
55

66
[workspace.package]
7-
version = "0.1.4-alpha"
7+
version = "0.1.5-alpha"
88
authors = ["IOTA Stiftung"]
99
edition = "2024"
1010
homepage = "https://www.iota.org"
@@ -16,17 +16,17 @@ anyhow = "1.0"
1616
async-trait = "0.1"
1717
bcs = "0.1"
1818
chrono = { version = "0.4", features = ["serde"] }
19-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", tag = "v1.9.2", package = "iota-sdk" }
20-
iota_interaction = { git = "https://github.com/iotaledger/product-core.git", default-features = false, tag = "v0.8.4", package = "iota_interaction" }
21-
iota_interaction_rust = { git = "https://github.com/iotaledger/product-core.git", default-features = false, tag = "v0.8.4", package = "iota_interaction_rust" }
22-
iota_interaction_ts = { git = "https://github.com/iotaledger/product-core.git", default-features = false, tag = "v0.8.4", package = "iota_interaction_ts" }
23-
product_common = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.4", default-features = false, package = "product_common" }
19+
iota-sdk = { package = "iota-sdk", git = "https://github.com/iotaledger/iota.git", tag = "v1.10.0" }
20+
iota_interaction = { package = "iota_interaction", git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.5", default-features = false }
21+
iota_interaction_rust = { package = "iota_interaction_rust", git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.5", default-features = false }
22+
iota_interaction_ts = { package = "iota_interaction_ts", git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.5", default-features = false }
23+
product_common = { package = "product_common", git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.5", default-features = false }
2424
secret-storage = { git = "https://github.com/iotaledger/secret-storage", tag = "v0.3.0", default-features = false }
2525
serde = { version = "1", features = ["derive"] }
2626
serde_json = "1"
27-
strum = { version = "0.27", default-features = false, features = ["std", "derive"] }
27+
strum = { version = "0.27", default-features = false, features = ["derive", "std"] }
2828
thiserror = "2.0"
2929
tokio = { version = "1.46", default-features = false, features = ["sync"] }
3030

3131
[profile.release.package.iota_interaction_ts]
32-
opt-level = 's'
32+
opt-level = "s"
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hierarchies_wasm"
3-
version = "0.1.4-alpha"
3+
version = "0.1.5-alpha"
44
authors = ["IOTA Stiftung"]
55
edition = "2024"
66
homepage = "https://www.iota.org"
@@ -18,46 +18,46 @@ crate-type = ["cdylib", "rlib"]
1818
[dependencies]
1919
anyhow = "1.0"
2020
console_error_panic_hook = "0.1"
21-
iota_interaction = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.4", package = "iota_interaction", default-features = false }
22-
iota_interaction_ts = { git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.4", package = "iota_interaction_ts" }
21+
iota_interaction = { package = "iota_interaction", git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.5", default-features = false }
22+
iota_interaction_ts = { package = "iota_interaction_ts", git = "https://github.com/iotaledger/product-core.git", tag = "v0.8.5" }
2323
js-sys = { version = "0.3" }
2424
serde = { version = "1.0", features = ["derive"] }
2525
serde-wasm-bindgen = "0.6"
2626
wasm-bindgen = { version = "=0.2.102", features = ["serde-serialize"] }
2727
wasm-bindgen-futures = { version = "0.4", default-features = false }
2828

29+
[dependencies.hierarchies]
30+
path = "../../../hierarchies-rs/hierarchies"
31+
default-features = false
32+
features = ["default-http-client", "gas-station"]
33+
2934
[dependencies.product_common]
30-
git = "https://github.com/iotaledger/product-core.git"
31-
tag = "v0.8.4"
3235
package = "product_common"
36+
git = "https://github.com/iotaledger/product-core.git"
37+
tag = "v0.8.5"
3338
features = [
34-
"core-client",
35-
"transaction",
36-
"bindings",
39+
"default-http-client",
3740
"binding-utils",
41+
"bindings",
42+
"core-client",
3843
"gas-station",
39-
"default-http-client",
44+
"transaction",
4045
]
4146

42-
[dependencies.hierarchies]
43-
path = "../../../hierarchies-rs/hierarchies"
44-
default-features = false
45-
features = ["gas-station", "default-http-client"]
47+
[lints.clippy]
48+
# can be removed as soon as fix has been added to clippy
49+
# see https://github.com/rust-lang/rust-clippy/issues/12377
50+
empty_docs = "allow"
51+
52+
[lints.rust]
53+
# required for current wasm_bindgen version
54+
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(wasm_bindgen_unstable_test_coverage)"] }
4655

4756
[profile.release]
48-
opt-level = 's'
57+
opt-level = "s"
4958
lto = true
5059
# Enabling debug for profile.release may lead to more helpful logged call stacks.
5160
# TODO: Clarify if 'debug = true' facilitates error analysis via console logs.
5261
# If not, remove the next line
5362
# If yes, describe the helping effect in the comment above
5463
# debug = true
55-
56-
[lints.clippy]
57-
# can be removed as soon as fix has been added to clippy
58-
# see https://github.com/rust-lang/rust-clippy/issues/12377
59-
empty_docs = "allow"
60-
61-
[lints.rust]
62-
# required for current wasm_bindgen version
63-
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasm_bindgen_unstable_test_coverage)'] }

0 commit comments

Comments
 (0)