-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (41 loc) · 1.11 KB
/
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
40
41
42
43
[package]
name = "namadajuno"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = {version = "0.8", default-features = false}
rand_core = {version = "0.6", default-features = false}
serde_json = "1.0.113"
sha2 = "0.10.8"
tendermint = "0.34.0"
tendermint-rpc = { version = "0.34.0", features = ["http-client"] }
thiserror = "1.0.57"
tokio = { version = "1.5", features = ["rt-multi-thread"] }
namada_sdk = { git = "https://github.com/anoma/namada", rev = "v0.31.5" }
ureq = "2.9.1"
futures = "0.3.30"
futures-util = { version = "0.3.30", features = ["sink"] }
serde_yaml = "0.9.31"
serde = "1.0.196"
sqlx = { version = "0.6.3", features = [
"runtime-tokio-rustls",
"postgres",
"macros",
"json",
"offline",
"migrate",
"chrono",
"decimal",
] }
chrono = "0.4.34"
async-channel = "2.2.0"
subtle-encoding = "0.5.1"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-subscriber = { version = "0.3.17", features = [
"fmt",
"std",
"env-filter",
] }
hex = "0.4.3"
clokwerk = "0.4.0"