Skip to content

Commit a307b36

Browse files
authored
Update dependencies to specific revisions and tags in Cargo.toml files (#1434)
* Update dependencies to specific revisions and tags in Cargo.toml files * chore: fmt
1 parent bdfeb42 commit a307b36

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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.7.0-alpha" }
27+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9" }
2828
iota-sdk-legacy = { package = "iota-sdk", version = "1.1.2", features = ["stronghold"] }
2929
prost = "0.13"
3030
rand = "0.8.5"

examples/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ 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.7.0-alpha" }
13+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9" }
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"] }
18-
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" }
1919
serde_json = { version = "1.0", default-features = false }
2020
tokio = { version = "1.29", default-features = false, features = ["rt"] }
2121

identity_iota_core/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ bcs = { version = "0.1.4", optional = true }
3535
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "5f2c63266a065996d53f98156f0412782b468597", package = "fastcrypto", optional = true }
3636
identity_eddsa_verifier = { version = "=1.4.0", path = "../identity_eddsa_verifier", optional = true }
3737
identity_jose = { version = "=1.4.0", path = "../identity_jose", optional = true }
38-
iota-config = { git = "https://github.com/iotaledger/iota.git", package = "iota-config", tag = "v0.7.0-alpha", optional = true }
38+
iota-config = { git = "https://github.com/iotaledger/iota.git", package = "iota-config", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9", optional = true }
3939
iota-crypto = { version = "0.23", optional = true }
40-
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", tag = "v0.7.0-alpha", optional = true }
40+
iota-sdk = { git = "https://github.com/iotaledger/iota.git", package = "iota-sdk", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9", optional = true }
4141
itertools = { version = "0.13.0", optional = true }
42-
move-core-types = { git = "https://github.com/iotaledger/iota.git", package = "move-core-types", tag = "v0.7.0-alpha", optional = true }
42+
move-core-types = { git = "https://github.com/iotaledger/iota.git", package = "move-core-types", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9", optional = true }
4343
rand = { version = "0.8.5", optional = true }
4444
secret-storage = { git = "https://github.com/iotaledger/secret-storage.git", branch = "main", optional = true }
4545
serde-aux = { version = "4.5.0", optional = true }
46-
shared-crypto = { git = "https://github.com/iotaledger/iota.git", package = "shared-crypto", tag = "v0.7.0-alpha", optional = true }
46+
shared-crypto = { git = "https://github.com/iotaledger/iota.git", package = "shared-crypto", rev = "39c83ddcf07894cdee2abd146381d8704205e6e9", optional = true }
4747
tokio = { version = "1.29.0", default-features = false, optional = true, features = ["macros", "sync", "rt", "process"] }
4848

4949
[dev-dependencies]

identity_storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ iota-crypto = { version = "0.23.2", default-features = false, features = ["ed255
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)