Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bindings/wasm/iota_interaction_ts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iota_interaction_ts"
version = "0.8.15"
version = "0.8.16"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand All @@ -25,7 +25,7 @@ fastcrypto.workspace = true
futures = { version = "0.3" }
hyper = "1"
iota-sdk = { version = "1.1.5", default-features = false, features = ["serde", "std"] }
iota_interaction = { version = "0.8.15", path = "../../../iota_interaction", default-features = false }
iota_interaction = { version = "0.8.16", path = "../../../iota_interaction", default-features = false }
js-sys = { version = "=0.3.85" }
json-proof-token = { version = "0.3.5", optional = true }
sd-jwt-payload = { version = "0.2.1", default-features = false, features = ["sha"], optional = true }
Expand Down
4 changes: 2 additions & 2 deletions bindings/wasm/iota_interaction_ts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings/wasm/iota_interaction_ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "IOTA Foundation <info@iota.org>",
"description": "WASM bindings importing types from the IOTA Client typescript SDK to be used in Rust",
"homepage": "https://www.iota.org",
"version": "0.12.0",
"version": "0.13.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion iota_interaction/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iota_interaction"
version = "0.8.15"
version = "0.8.16"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions iota_interaction_rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iota_interaction_rust"
version = "0.8.15"
version = "0.8.16"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand All @@ -19,7 +19,7 @@ secret-storage.workspace = true
serde.workspace = true

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
iota_interaction = { version = "0.8.15", path = "../iota_interaction" }
iota_interaction = { version = "0.8.16", path = "../iota_interaction" }

[package.metadata.docs.rs]
# To build locally:
Expand Down
14 changes: 7 additions & 7 deletions product_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "product_common"
version = "0.8.15"
version = "0.8.16"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
Expand Down Expand Up @@ -38,20 +38,20 @@ toml = { workspace = true } # , optional = true --- TODO see comment for `move-h
url = { version = "2", default-features = false, features = ["serde"], optional = true }

[dev-dependencies]
iota_interaction = { path = "../iota_interaction", version = "0.8.15" }
iota_interaction_rust = { path = "../iota_interaction_rust", version = "0.8.15" }
iota_interaction = { path = "../iota_interaction", version = "0.8.16" }
iota_interaction_rust = { path = "../iota_interaction_rust", version = "0.8.16" }
tempfile.workspace = true

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
hyper.workspace = true
iota_interaction = { path = "../iota_interaction", version = "0.8.15", features = ["keytool"] }
iota_interaction_rust = { path = "../iota_interaction_rust", version = "0.8.15", optional = true }
iota_interaction = { path = "../iota_interaction", version = "0.8.16", features = ["keytool"] }
iota_interaction_rust = { path = "../iota_interaction_rust", version = "0.8.16", optional = true }
iota-sdk.workspace = true
tokio.workspace = true

[target.'cfg(target_arch = "wasm32")'.dependencies]
iota_interaction = { path = "../iota_interaction", version = "0.8.15", default-features = false }
iota_interaction_ts = { path = "../bindings/wasm/iota_interaction_ts", version = "0.8.15" }
iota_interaction = { path = "../iota_interaction", version = "0.8.16", default-features = false }
iota_interaction_ts = { path = "../bindings/wasm/iota_interaction_ts", version = "0.8.16" }
js-sys = { version = "0.3", optional = true }
serde-wasm-bindgen = { version = "0.6", optional = true }
wasm-bindgen = { version = "0.2.100", optional = true }
Expand Down
Loading