-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
39 lines (37 loc) · 1003 Bytes
/
Cargo.toml
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
[package]
name = "wallet-daemon"
version = "2.0.4"
edition = "2021"
[profile.release]
debug = true
debug-assertions = true
overflow-checks = true
[dependencies]
tracing = "0.1.41"
rpassword = "7.3.1"
subxt = { version = "0.38.0", features = ["native", "reconnecting-rpc-client"] }
subxt-signer = "0.38.0"
backoff = { version = "0.4", default-features = false, features = ["tokio"] }
backon = "1.3.0"
tokio = { version = "1.43.0", features = [
"rt",
"macros",
"rt-multi-thread",
"signal",
] }
graphql_client = "0.14.0"
reqwest = { version = "0.12.12", features = ["json"] }
async-trait = { version = "0.1.85" }
log = "0.4.22"
serde = { version = "1.0.217", default-features = false, features = ["derive"]}
serde_json = "1.0.135"
hex = "0.4.3"
tracing-subscriber = "0.3.19"
config = "0.15.5"
sp-core = { version = "35.0.0", default-features = false, features = [
"std",
] }
bip39 = { version = "2.0.0", features = ["rand"] }
autoincrement = "1.0.1"
lru = "0.12.5"
anyhow = "1.0.95"