Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into fix/unique-method-ide…
Browse files Browse the repository at this point in the history
…ntifiers
  • Loading branch information
Oliver Anderson committed Nov 10, 2022
2 parents eef03d1 + c171639 commit 6c66a4e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bindings/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ crate-type = ["cdylib", "rlib"]
async-trait = { version = "0.1", default-features = false }
console_error_panic_hook = { version = "0.1" }
futures = { version = "0.3" }
iota-types = { version = "1.0.0-rc.1", default-features = false, features = ["block", "api", "dto", "std"] }
# Pin until iota-client v2.0.1-rc.4 is released
iota-types = { version = "=1.0.0-rc.1", default-features = false, features = ["block", "api", "dto", "std"] }
js-sys = { version = "0.3.60" }
proc_typescript = { version = "0.1.0", path = "./proc_typescript" }
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 2 additions & 0 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ anyhow = "1.0.62"
did-key = { version = "0.1.1", default-features = false }
identity_iota = { path = "../identity_iota" }
iota-client = { version = "2.0.1-rc.3", default-features = false, features = ["tls", "stronghold"] }
# Remove once iota-client 2.0.1-rc.4 is released.
iota-types = { version = "=1.0.0-rc.1", default-features = false, features = ["block", "std"], optional = true }
primitive-types = "0.12.1"
rand = "0.8.5"
tokio = { version = "1.20.1", default-features = false, features = ["rt"] }
Expand Down
3 changes: 2 additions & 1 deletion identity_iota_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ description = "An IOTA Ledger integration for the IOTA DID Method."
identity_core = { version = "=0.7.0-alpha.3", path = "../identity_core", default-features = false }
identity_credential = { version = "=0.7.0-alpha.3", path = "../identity_credential", default-features = false, features = ["validator"] }
identity_did = { version = "=0.7.0-alpha.3", path = "../identity_did", default-features = false }
iota-types = { version = "1.0.0-rc.1", default-features = false, features = ["block", "std"], optional = true }
# Pin until iota-client v2.0.1-rc.4 is released
iota-types = { version = "=1.0.0-rc.1", default-features = false, features = ["block", "std"], optional = true }

async-trait = { version = "0.1.56", default-features = false, optional = true }
futures = { version = "0.3" }
Expand Down

0 comments on commit 6c66a4e

Please sign in to comment.