Skip to content

Commit ea4106f

Browse files
committed
Pinned dependency iota to version "v0.10.3-rc" and tokio to version = "1.43" (as been used in iota repository)
1 parent c947de0 commit ea4106f

File tree

14 files changed

+25
-25
lines changed

14 files changed

+25
-25
lines changed

.github/actions/iota-rebase-sandbox/setup/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ runs:
2929
# url = https://api.github.com/repos/iotaledger/iota/releases/latest
3030
# releases might be visible before all binaries are available, so refer to fixed binaries here
3131
if [ "$PLATFORM" = "linux" ]; then
32-
DOWNLOAD_URL="https://github.com/iotaledger/iota/releases/download/v0.9.2-rc/iota-v0.9.2-rc-linux-x86_64.tgz"
32+
DOWNLOAD_URL="https://github.com/iotaledger/iota/releases/download/v0.10.3-rc/iota-v0.10.3-rc-linux-x86_64.tgz"
3333
elif [ "$PLATFORM" = "macos" ]; then
34-
DOWNLOAD_URL="https://github.com/iotaledger/iota/releases/download/v0.9.2-rc/iota-v0.9.2-rc-macos-arm64.tgz"
34+
DOWNLOAD_URL="https://github.com/iotaledger/iota/releases/download/v0.10.3-rc/iota-v0.10.3-rc-macos-arm64.tgz"
3535
else
3636
echo "not binaries for platform: $PLATFORM"
3737
exit 1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ edition = "2021"
115115
[dependencies]
116116
anyhow = "1.0.62"
117117
identity_iota = { git = "https://github.com/iotaledger/identity.rs.git", tag = "v1.6.0-alpha", features = ["memstore"] }
118-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.9.2-rc" }
118+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.10.3-rc" }
119119
rand = "0.8.5"
120120
tokio = { version = "1", features = ["full"] }
121121
```

bindings/grpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ identity_iota = { path = "../../identity_iota", features = ["resolver", "sd-jwt"
2424
identity_jose = { path = "../../identity_jose" }
2525
identity_storage = { path = "../../identity_storage", features = ["memstore"] }
2626
identity_stronghold = { path = "../../identity_stronghold", features = ["send-sync-storage"] }
27-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.9.2-rc" }
27+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.10.3-rc" }
2828
iota-sdk-legacy = { package = "iota-sdk", version = "1.1.2", features = ["stronghold"] }
2929
prost = "0.13"
3030
rand = "0.8.5"

bindings/wasm/identity_wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ serde-wasm-bindgen = "0.6.5"
3333
serde_json = { version = "1.0", default-features = false }
3434
serde_repr = { version = "0.1", default-features = false }
3535
# Want to use the nice API of tokio::sync::RwLock for now even though we can't use threads.
36-
tokio = { version = "=1.39.2", default-features = false, features = ["sync"] }
36+
tokio = { version = "1.43", default-features = false, features = ["sync"] }
3737
tsify = "0.4.5"
3838
wasm-bindgen = { version = "0.2.100", features = ["serde-serialize"] }
3939
wasm-bindgen-futures = { version = "0.4", default-features = false }

bindings/wasm/iota_interaction_ts/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ serde_json.workspace = true
3434
serde_repr = { version = "0.1", default-features = false }
3535
thiserror.workspace = true
3636
# Want to use the nice API of tokio::sync::RwLock for now even though we can't use threads.
37-
tokio = { version = "1.29", default-features = false, features = ["sync"] }
37+
tokio = { version = "1.43", default-features = false, features = ["sync"] }
3838
tsify = "0.4.5"
3939
wasm-bindgen = { version = "0.2.100", features = ["serde-serialize"] }
4040
wasm-bindgen-futures = { version = "0.4", default-features = false }

examples/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ anyhow = "1.0.62"
1010
identity_eddsa_verifier = { path = "../identity_eddsa_verifier", default-features = false, features = ["ed25519"] }
1111
identity_storage = { path = "../identity_storage" }
1212
identity_stronghold = { path = "../identity_stronghold", default-features = false, features = ["send-sync-storage"] }
13-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.9.2-rc" }
13+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.10.3-rc" }
1414
iota-sdk-legacy = { package = "iota-sdk", version = "1.0", default-features = false, features = ["tls", "client", "stronghold"] }
1515
json-proof-token.workspace = true
1616
rand = "0.8.5"
1717
sd-jwt-payload = { version = "0.2.1", default-features = false, features = ["sha"] }
1818
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", tag = "v0.2.0" }
1919
serde_json = { version = "1.0", default-features = false }
20-
tokio = { version = "1.29", default-features = false, features = ["rt", "macros"] }
20+
tokio = { version = "1.43", default-features = false, features = ["rt", "macros"] }
2121

2222
[dependencies.identity_iota]
2323
path = "../identity_iota"

identity_credential/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ identity_eddsa_verifier = { path = "../identity_eddsa_verifier", default-feature
4444
iota-crypto = { version = "0.23.2", default-features = false, features = ["ed25519", "std", "random"] }
4545
josekit = "0.8"
4646
proptest = { version = "1.4.0", default-features = false, features = ["std"] }
47-
tokio = { version = "1.35.0", default-features = false, features = ["rt-multi-thread", "macros"] }
47+
tokio = { version = "1.43", default-features = false, features = ["rt-multi-thread", "macros"] }
4848

4949
[package.metadata.docs.rs]
5050
# To build locally:

identity_iota/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ identity_iota_interaction = { version = "=1.5.0", path = "../identity_iota_inter
3030
# required for doc test
3131
anyhow = "1.0.64"
3232
identity_iota = { version = "=1.5.0", path = "./", features = ["memstore"] }
33-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.9.2-rc" }
33+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.10.3-rc" }
3434
rand = "0.8.5"
3535
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", tag = "v0.2.0" }
36-
tokio = { version = "1.29.0", features = ["full"] }
36+
tokio = { version = "1.43", features = ["full"] }
3737

3838
[features]
3939
default = ["revocation-bitmap", "iota-client", "send-sync", "resolver"]

identity_iota/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ edition = "2021"
116116
anyhow = "1.0.62"
117117
identity_iota = { git = "https://github.com/iotaledger/identity.rs.git", tag = "v1.6.0-alpha", features = ["memstore"] }
118118
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", tag = "v0.2.0" }
119-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.9.2-rc" }
119+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.10.3-rc" }
120120
rand = "0.8.5"
121121
tokio = { version = "1", features = ["full"] }
122122
```

identity_iota_core/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ serde-aux = { version = "4.5.0", optional = true }
4444

4545
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
4646
identity_iota_interaction = { version = "=1.5.0", path = "../identity_iota_interaction", optional = true }
47-
iota-config = { git = "https://github.com/iotaledger/iota.git", package = "iota-config", tag = "v0.9.2-rc", optional = true }
48-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.9.2-rc", optional = true }
49-
move-core-types = { git = "https://github.com/iotaledger/iota.git", package = "move-core-types", tag = "v0.9.2-rc", optional = true }
50-
shared-crypto = { git = "https://github.com/iotaledger/iota.git", package = "shared-crypto", tag = "v0.9.2-rc", optional = true }
51-
tokio = { version = "1.29.0", default-features = false, optional = true, features = ["macros", "sync", "rt", "process"] }
47+
iota-config = { git = "https://github.com/iotaledger/iota.git", package = "iota-config", tag = "v0.10.3-rc", optional = true }
48+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.10.3-rc", optional = true }
49+
move-core-types = { git = "https://github.com/iotaledger/iota.git", package = "move-core-types", tag = "v0.10.3-rc", optional = true }
50+
shared-crypto = { git = "https://github.com/iotaledger/iota.git", package = "shared-crypto", tag = "v0.10.3-rc", optional = true }
51+
tokio = { version = "1.43", default-features = false, optional = true, features = ["macros", "sync", "rt", "process"] }
5252

5353
[target.'cfg(target_arch = "wasm32")'.dependencies]
5454
identity_iota_interaction = { version = "=1.5.0", path = "../identity_iota_interaction", default-features = false, optional = true }

identity_iota_interaction/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ serde.workspace = true
2222
serde_json.workspace = true
2323

2424
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
25-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.9.2-rc" }
26-
move-core-types = { git = "https://github.com/iotaledger/iota.git", package = "move-core-types", tag = "v0.9.2-rc" }
25+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.10.3-rc" }
26+
move-core-types = { git = "https://github.com/iotaledger/iota.git", package = "move-core-types", tag = "v0.10.3-rc" }
2727
tokio = { version = "1", optional = true, default-features = false, features = ["process"] }
2828

29-
shared-crypto = { git = "https://github.com/iotaledger/iota.git", package = "shared-crypto", tag = "v0.9.2-rc" }
29+
shared-crypto = { git = "https://github.com/iotaledger/iota.git", package = "shared-crypto", tag = "v0.10.3-rc" }
3030

3131
[target.'cfg(target_arch = "wasm32")'.dependencies]
3232
bcs = "0.1.4"

identity_resolver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ features = ["iota-client"]
3030
optional = true
3131

3232
[dev-dependencies]
33-
tokio = { version = "1.29.0", default-features = false, features = ["rt-multi-thread", "macros"] }
33+
tokio = { version = "1.43", default-features = false, features = ["rt-multi-thread", "macros"] }
3434

3535
[features]
3636
default = ["revocation-bitmap", "iota", "send-sync-client"]

identity_storage/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", def
3131
serde.workspace = true
3232
serde_json.workspace = true
3333
thiserror.workspace = true
34-
tokio = { version = "1.29.0", default-features = false, features = ["macros", "sync"], optional = true }
34+
tokio = { version = "1.43", default-features = false, features = ["macros", "sync"], optional = true }
3535
zkryptium = { workspace = true, optional = true }
3636

3737
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
@@ -44,7 +44,7 @@ identity_iota_interaction = { version = "=1.5.0", path = "../identity_iota_inter
4444
identity_credential = { version = "=1.5.0", path = "../identity_credential", features = ["revocation-bitmap"] }
4545
identity_eddsa_verifier = { version = "=1.5.0", path = "../identity_eddsa_verifier", default-features = false, features = ["ed25519"] }
4646
once_cell = { version = "1.18", default-features = false }
47-
tokio = { version = "1.29.0", default-features = false, features = ["macros", "sync", "rt"] }
47+
tokio = { version = "1.43", default-features = false, features = ["macros", "sync", "rt"] }
4848

4949
[features]
5050
default = ["iota-document", "memstore"]

identity_stronghold/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ iota-sdk = { version = "1.1.5", default-features = false, features = ["client",
2020
iota_stronghold = { version = "2.1.0", default-features = false }
2121
json-proof-token = { workspace = true, optional = true }
2222
rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"] }
23-
tokio = { version = "1.29.0", default-features = false, features = ["macros", "sync"] }
23+
tokio = { version = "1.43", default-features = false, features = ["macros", "sync"] }
2424
zeroize = { version = "1.6.0", default-features = false }
2525
zkryptium = { workspace = true, optional = true }
2626

@@ -30,7 +30,7 @@ bls12_381_plus = { workspace = true }
3030
identity_did = { version = "=1.5.0", path = "../identity_did", default-features = false }
3131
identity_storage = { version = "=1.5.0", path = "../identity_storage", default-features = false, features = ["jpt-bbs-plus"] }
3232
json-proof-token = { workspace = true }
33-
tokio = { version = "1.29.0", default-features = false, features = ["macros", "sync", "rt"] }
33+
tokio = { version = "1.43", default-features = false, features = ["macros", "sync", "rt"] }
3434
zkryptium = { workspace = true }
3535

3636
[features]

0 commit comments

Comments
 (0)