-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (43 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (43 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[workspace]
members = ["crates/ccd-wallet-core", "crates/ccd-wallet-identity-provider", "crates/ccd-wallet-connect", "crates/ccd-wallet-ledger", "crates/ccd-wallet-ledger-governance", "crates/ccd-wallet"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
anyhow = "1.0.102"
argon2 = "0.5.3"
base64 = "0.22.1"
bip39 = { version = "2.2.2", features = ["rand"] }
chacha20poly1305 = "0.10.1"
chrono = "0.4.42"
clap = { version = "4.6.1", features = ["derive", "env"] }
cliclack = "0.5.4"
console = "0.15.11"
concordium-rust-sdk = { git = "https://github.com/Concordium/concordium-rust-sdk", branch = "release/p11" }
concordium-smart-contract-engine = { git = "https://github.com/Concordium/concordium-rust-sdk", branch = "release/p11" }
dirs = "6.0.0"
ed25519-dalek = "2.2.0"
either = "1.15.0"
futures-util = "0.3.31"
hex = "0.4.3"
hidapi = "2.6.3"
hkdf = "0.12.4"
hmac = "0.12.1"
open = "5.3.2"
rand = "0.8.5"
reqwest = { version = "0.12.24", default-features = false, features = ["blocking", "json", "rustls-tls"] }
reedline = "0.43.0"
sha2 = "0.10.8"
shlex = "1.3.0"
rpassword = "7.5.2"
rusqlite = { version = "0.32.1", features = ["bundled"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.52.3", features = ["io-util", "macros", "net", "rt-multi-thread", "signal", "time"] }
toml = "0.8.23"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "fmt", "json"] }
tonic = { version = "0.12.3", features = ["tls", "tls-native-roots"] }
uuid = { version = "1.12.1", features = ["v4"] }
zeroize = { version = "1.8.1", features = ["derive"] }