-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
34 lines (33 loc) · 930 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
[package]
name = "wallet-daemon"
version = "2.0.0"
edition = "2021"
[dependencies]
tracing = "0.1.40"
rpassword = "7.3.1"
subxt = { version = "0.37.0", features = ["native", "unstable-reconnecting-rpc-client"] }
subxt-signer = "0.37.0"
backoff = { version = "0.4", default-features = false, features = ["tokio"] }
backon = "1.2.0"
tokio = { version = "1.40.0", features = [
"rt",
"macros",
"rt-multi-thread",
"signal"
] }
graphql_client = "0.14.0"
reqwest = { version = "0.12.7", features = ["json"] }
async-trait = { version = "0.1.82" }
log = "0.4.22"
serde = { version = "1.0.209", default-features = false, features = ["derive"]}
serde_json = "1.0.128"
hex = "0.4.3"
tracing-subscriber = "0.3.18"
config = "0.14.0"
secrecy = "0.8.0"
sp-core = { version = "34.0.0", default-features = false, features = [
"std",
] }
bip39 = { version = "2.0.0", features = ["rand"] }
autoincrement = "1.0.1"
lru = "0.12.4"