Skip to content
Open
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
1,024 changes: 735 additions & 289 deletions rust/Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions rust/chains/tw_bitcoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ version = "0.1.0"
edition = "2021"

[dependencies]
bitcoin = { version = "0.30.0", features = ["rand-std", "serde"] }
itertools = "0.10.5"
lazy_static = "1.4.0"
secp256k1 = { version = "0.27.0", features = ["global-context", "rand-std"] }
bitcoin = { version = "0.32.8", features = ["rand-std", "serde"] }
itertools = "0.14.0"
lazy_static = "1.5.0"
secp256k1 = { version = "0.29.1", features = ["global-context", "rand-std"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tw_bech32_address = { path = "../../tw_bech32_address" }
Expand Down
6 changes: 3 additions & 3 deletions rust/chains/tw_solana/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "0.1.0"
edition = "2021"

[dependencies]
bincode = "1.3.3"
borsh = { version = "1.3.1", features = ["derive"] }
lazy_static = "1.4.0"
bincode = "3.0.0"
borsh = { version = "1.6.1", features = ["derive"] }
lazy_static = "1.5.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tw_coin_entry = { path = "../../tw_coin_entry" }
Expand Down
12 changes: 6 additions & 6 deletions rust/frameworks/tw_utxo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ version = "0.1.0"
edition = "2021"

[dependencies]
bech32 = "0.9.1"
bitcoin = { version = "0.30.0", features = ["rand-std"] }
byteorder = "1.4"
itertools = "0.10.5"
secp256k1 = { version = "0.27.0", features = ["rand-std"] }
strum_macros = "0.25"
bech32 = "0.11.1"
bitcoin = { version = "0.32.8", features = ["rand-std"] }
byteorder = "1.5"
itertools = "0.14.0"
secp256k1 = { version = "0.29.1", features = ["rand-std"] }
strum_macros = "0.28"
tw_base58_address = { path = "../../tw_base58_address" }
tw_bech32_address = { path = "../../tw_bech32_address" }
tw_coin_entry = { path = "../../tw_coin_entry" }
Expand Down
2 changes: 1 addition & 1 deletion rust/tw_coin_entry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
derivation-path = "0.2"
serde = "1.0"
serde_json = "1.0"
strum_macros = "0.25"
strum_macros = "0.28"
tw_encoding = { path = "../tw_encoding" }
tw_hash = { path = "../tw_hash" }
tw_keypair = { path = "../tw_keypair" }
Expand Down
8 changes: 4 additions & 4 deletions rust/tw_coin_registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ version = "0.1.0"
edition = "2021"

[dependencies]
lazy_static = "1.4.0"
lazy_static = "1.5.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = "0.25"
strum_macros = "0.25"
strum = "0.28"
strum_macros = "0.28"
tw_bitcoin = { path = "../chains/tw_bitcoin" }
tw_coin_entry = { path = "../tw_coin_entry" }
tw_ethereum = { path = "../chains/tw_ethereum" }
Expand All @@ -21,6 +21,6 @@ tw_solana = { path = "../chains/tw_solana" }
tw_utxo = { path = "../frameworks/tw_utxo" }

[build-dependencies]
itertools = "0.10.5"
itertools = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
10 changes: 5 additions & 5 deletions rust/tw_encoding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ edition = "2021"
[dependencies]
arbitrary = { version = "1", features = ["derive"], optional = true }
bcs = "0.1.6"
bech32 = "0.9.1"
bs58 = "0.4.0"
ciborium = "0.2.1"
data-encoding = "2.3.3"
bech32 = "0.11.1"
bs58 = "0.5.1"
ciborium = "0.2.2"
data-encoding = "2.10.0"
hex = "0.4.3"
serde = { version = "1.0", features = ["derive"] }
tw_memory = { path = "../tw_memory" }

[dev-dependencies]
serde_bytes = "0.11.12"
serde_bytes = "0.11.19"
6 changes: 3 additions & 3 deletions rust/tw_evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ version = "0.1.0"
edition = "2021"

[dependencies]
itertools = "0.10.5"
lazy_static = "1.4.0"
rlp = "0.5.2"
itertools = "0.14.0"
lazy_static = "1.5.0"
rlp = "0.6.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tw_coin_entry = { path = "../tw_coin_entry" }
Expand Down
14 changes: 7 additions & 7 deletions rust/tw_hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ default = ["serde"]
arbitrary = { version = "1", features = ["derive"], optional = true }
blake-hash = "0.4.1"
blake2b-ref = "0.3.1"
digest = "0.10.6"
groestl = "0.10.1"
hmac = "0.12.1"
ripemd = "0.1.3"
digest = "0.11.2"
groestl = "0.11.0"
hmac = "0.13.0"
ripemd = "0.2.0"
serde = { version = "1.0", features = ["derive"], optional = true }
sha1 = "0.10.5"
sha2 = "0.10.6"
sha3 = "0.10.6"
sha1 = "0.11.0"
sha2 = "0.11.0"
sha3 = "0.10.8"
tw_encoding = { path = "../tw_encoding" }
tw_memory = { path = "../tw_memory" }
zeroize = "1.8.2"
Expand Down
18 changes: 9 additions & 9 deletions rust/tw_keypair/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ test-utils = []

[dependencies]
arbitrary = { version = "1", features = ["derive"], optional = true }
lazy_static = "1.4.0"
rand_core = "0.6.4"
lazy_static = "1.5.0"
rand_core = "0.10.0"
serde = { version = "1.0", features = ["derive"] }
tw_encoding = { path = "../tw_encoding" }
tw_hash = { path = "../tw_hash" }
Expand All @@ -18,24 +18,24 @@ tw_misc = { path = "../tw_misc" }
zeroize = "1.8.2"
# ECDSA specific:
ecdsa = "0.16.6"
der = "0.7.3"
der = "0.8.0"
k256 = { version = "0.13.0", features = ["ecdh", "ecdsa", "pkcs8", "schnorr", "std"], default-features = false }
p256 = { version = "0.13.0", features = ["ecdsa", "std"], default-features = false }
pkcs8 = "0.10.2"
rfc6979 = "0.4.0"
# ED25519 specific:
blake2 = "0.10.6"
curve25519-dalek = { version = "4.1", features = ["digest", "legacy_compatibility"] }
digest = "0.10"
sha2 = "0.10.6"
digest = "0.11"
sha2 = "0.11.0"
# Bitcoin schnorr specific:
bitcoin = { version = "0.30.0", features = ["rand-std"] }
secp256k1 = { version = "0.27.0", features = ["global-context", "rand-std"] }
bitcoin = { version = "0.32.8", features = ["rand-std"] }
secp256k1 = { version = "0.29.1", features = ["global-context", "rand-std"] }
# TON Session key-exchange specific:
crypto_box = "0.9.1"
# Starknet specific:
starknet-crypto = "0.5.0"
starknet-ff = "0.3.2"
starknet-crypto = "0.8.1"
starknet-ff = "0.3.7"
tw_macros = { path = "../tw_macros" }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions rust/tw_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ proc-macro = true

[dependencies]
derive-syn-parse = "0.2.0"
proc-macro2 = "1.0.93"
quote = "1.0.38"
proc-macro2 = "1.0.106"
quote = "1.0.45"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.21"
syn = { version = "2.0.96", features = ["full"] }
syn = { version = "2.0.117", features = ["full"] }
4 changes: 2 additions & 2 deletions rust/tw_number/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ helpers = []

[dependencies]
arbitrary = { version = "1", features = ["derive"], optional = true }
lazy_static = "1.4.0"
primitive-types = "0.10.1"
lazy_static = "1.5.0"
primitive-types = "0.14.0"
serde = { version = "1.0", features = ["derive"], optional = true }
tw_encoding = { path = "../tw_encoding" }
tw_hash = { path = "../tw_hash" }
Expand Down
4 changes: 2 additions & 2 deletions rust/wallet_core_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ utils = [
]

[dependencies]
bitreader = "0.3.8"
bitreader = "0.3.11"
tw_any_coin = { path = "../tw_any_coin", optional = true }
tw_bitcoin = { path = "../chains/tw_bitcoin", optional = true }
tw_coin_registry = { path = "../tw_coin_registry", optional = true }
Expand All @@ -48,4 +48,4 @@ tw_macros = { path = "../tw_macros" }
tw_misc = { path = "../tw_misc" }
tw_proto = { path = "../tw_proto", optional = true }
tw_solana = { path = "../chains/tw_solana", optional = true }
uuid = { version = "1.7", features = ["v4"], optional = true }
uuid = { version = "1.23", features = ["v4"], optional = true }