Skip to content

Commit 25f3468

Browse files
committed
Update dependencies to specific revisions and tags in Cargo.toml files
1 parent f5b52f0 commit 25f3468

File tree

4 files changed

+35
-39
lines changed

4 files changed

+35
-39
lines changed

bindings/grpc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ identity_storage = { path = "../../identity_storage", features = ["memstore"] }
2626
identity_stronghold = { path = "../../identity_stronghold", features = ["send-sync-storage"] }
2727
identity_sui_name_tbd = { path = "../../identity_sui_name_tbd" }
2828
iota-sdk = { version = "1.1.2", features = ["stronghold"] }
29-
iota-sdk-move = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk" }
29+
iota-sdk-move = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9" }
3030
prost = "0.13"
3131
rand = "0.8.5"
3232
serde = { version = "1.0", features = ["derive", "alloc"] }

examples/Cargo.toml

+3-5
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,13 @@ publish = false
99
anyhow = "1.0.62"
1010
identity_eddsa_verifier = { path = "../identity_eddsa_verifier", default-features = false, features = ["ed25519"] }
1111
identity_storage = { path = "../identity_storage" }
12-
identity_stronghold = { path = "../identity_stronghold", default-features = false, features = [
13-
"send-sync-storage",
14-
] }
15-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.7.0-alpha" }
12+
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", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9" }
1614
iota-sdk-legacy = { package = "iota-sdk", version = "1.0", default-features = false, features = ["tls", "client", "stronghold"] }
1715
json-proof-token.workspace = true
1816
rand = "0.8.5"
1917
sd-jwt-payload = { version = "0.2.1", default-features = false, features = ["sha"] }
20-
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", branch = "main" }
18+
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", tag = "v0.1.0" }
2119
serde_json = { version = "1.0", default-features = false }
2220
tokio = { version = "1.29", default-features = false, features = ["rt"] }
2321

identity_iota_core/Cargo.toml

+30-32
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ identity_credential = { version = "=1.4.0", path = "../identity_credential", def
2020
identity_did = { version = "=1.4.0", path = "../identity_did", default-features = false }
2121
identity_document = { version = "=1.4.0", path = "../identity_document", default-features = false }
2222
identity_verification = { version = "=1.4.0", path = "../identity_verification", default-features = false }
23-
iota_sdk_legacy = { version = "1.1.5", default-features = false, features = ["serde", "std"], optional = true, package="iota-sdk" }
23+
iota_sdk_legacy = { version = "1.1.5", default-features = false, features = ["serde", "std"], optional = true, package = "iota-sdk" }
2424
num-derive = { version = "0.4", default-features = false }
2525
num-traits = { version = "0.2", default-features = false, features = ["std"] }
2626
once_cell = { version = "1.18", default-features = false, features = ["std"] }
@@ -36,32 +36,24 @@ bcs = { version = "0.1.4", optional = true }
3636
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "5f2c63266a065996d53f98156f0412782b468597", package = "fastcrypto", optional = true }
3737
identity_eddsa_verifier = { version = "=1.4.0", path = "../identity_eddsa_verifier", optional = true }
3838
identity_jose = { version = "=1.4.0", path = "../identity_jose", optional = true }
39-
iota-config = { git = "https://github.com/iotaledger/iota.git", package = "iota-config", tag = "v0.7.0-alpha", optional = true }
39+
iota-config = { git = "https://github.com/iotaledger/iota.git", package = "iota-config", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9", optional = true }
4040
iota-crypto = { version = "0.23", optional = true }
41-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.7.0-alpha", optional = true }
41+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9", optional = true }
4242
itertools = { version = "0.13.0", optional = true }
43-
move-core-types = { git = "https://github.com/iotaledger/iota.git", package = "move-core-types", tag = "v0.7.0-alpha", optional = true }
43+
move-core-types = { git = "https://github.com/iotaledger/iota.git", package = "move-core-types", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9", optional = true }
4444
rand = { version = "0.8.5", optional = true }
4545
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", branch = "main", optional = true }
4646
serde-aux = { version = "4.5.0", optional = true }
47-
shared-crypto = { git = "https://github.com/iotaledger/iota.git", package = "shared-crypto", tag = "v0.7.0-alpha", optional = true }
48-
tokio = { version = "1.29.0", default-features = false, optional = true, features = [
49-
"macros",
50-
"sync",
51-
"rt",
52-
"process",
53-
] }
47+
shared-crypto = { git = "https://github.com/iotaledger/iota.git", package = "shared-crypto", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9", optional = true }
48+
tokio = { version = "1.29.0", default-features = false, optional = true, features = ["macros", "sync", "rt", "process"] }
5449

5550
[dev-dependencies]
5651
iota-crypto = { version = "0.23", default-features = false, features = ["bip39", "bip39-en"] }
5752
proptest = { version = "1.0.0", default-features = false, features = ["std"] }
5853

5954
# for feature kinesis-client tests
60-
identity_iota_core= { path = ".", features = ["kinesis-client"] } # enable for e2e tests
61-
identity_storage = { path = "../identity_storage", features = [
62-
"send-sync-storage",
63-
"storage-signer",
64-
] }
55+
identity_iota_core = { path = ".", features = ["kinesis-client"] } # enable for e2e tests
56+
identity_storage = { path = "../identity_storage", features = ["send-sync-storage", "storage-signer"] }
6557
jsonpath-rust = "0.5.1"
6658
serial_test = "3.1.1"
6759

@@ -72,26 +64,32 @@ all-features = true
7264
rustdoc-args = ["--cfg", "docsrs"]
7365

7466
[features]
75-
default = ["client", "iota-client", "kinesis-client", "revocation-bitmap", "send-sync-client-ext"]
67+
default = [
68+
"client",
69+
"iota-client",
70+
"kinesis-client",
71+
"revocation-bitmap",
72+
"send-sync-client-ext",
73+
]
7674
# Exposes the IotaIdentityClient and IotaIdentityClientExt traits.
7775
client = ["dep:async-trait", "iota_sdk_legacy"]
7876
# Client for rebased.
7977
kinesis-client = [
80-
"dep:async-trait",
81-
"dep:bcs",
82-
"dep:fastcrypto",
83-
"dep:identity_eddsa_verifier",
84-
"dep:identity_jose",
85-
"dep:iota-config",
86-
"dep:iota-crypto",
87-
"dep:iota-sdk",
88-
"dep:itertools",
89-
"dep:move-core-types",
90-
"dep:rand",
91-
"dep:secret-storage",
92-
"dep:serde-aux",
93-
"dep:shared-crypto",
94-
"dep:tokio",
78+
"dep:async-trait",
79+
"dep:bcs",
80+
"dep:fastcrypto",
81+
"dep:identity_eddsa_verifier",
82+
"dep:identity_jose",
83+
"dep:iota-config",
84+
"dep:iota-crypto",
85+
"dep:iota-sdk",
86+
"dep:itertools",
87+
"dep:move-core-types",
88+
"dep:rand",
89+
"dep:secret-storage",
90+
"dep:serde-aux",
91+
"dep:shared-crypto",
92+
"dep:tokio",
9593
]
9694
# Enables the implementation of the extension traits on the iota_sdk_legacy's Client.
9795
iota-client = ["client", "iota_sdk_legacy/client", "iota_sdk_legacy/tls"]

identity_storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ iota-crypto = { version = "0.23", default-features = false, features = ["ed25519
2626
json-proof-token = { workspace = true, optional = true }
2727
rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"], optional = true }
2828
seahash = { version = "4.1.0", default-features = false }
29-
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", branch = "main", optional = true }
29+
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", tag = "v0.1.0", optional = true }
3030
serde.workspace = true
3131
serde_json.workspace = true
3232
thiserror.workspace = true

0 commit comments

Comments
 (0)