-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (43 loc) · 1.75 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
44
45
[workspace]
resolver = "2"
members = ["block-index", "chain", "shared", "orm", "webserver"]
[workspace.package]
authors = ["Heliax AG <[email protected]>"]
edition = "2021"
license = "GPL-3.0-or-later"
readme = "README.md"
version = "0.1.0"
[workspace.dependencies]
anyhow = "1.0.75"
axum = { version = "0.6.20", features = [ "tower-log", "http2" ] }
axum-macros = "0.3.8"
axum-trace-id = "0.1.0"
bincode = "1.3.3"
clap = { version = "4.4.2", features = [ "derive", "env" ] }
clap-verbosity-flag = "2.1.1"
deadpool-diesel = { version = "0.5.0", features = ["postgres"] }
diesel = { version = "2.2.1", features = [ "postgres", "uuid", "serde_json", "chrono" ] }
diesel_migrations = { version = "2.2.0", default-features = false, features = [ "postgres" ] }
futures = "0.3.30"
itertools = "0.13.0"
lazy_static = "1.4.0"
namada_core = { git = "https://github.com/anoma/namada", tag = "v0.46.0" }
namada_sdk = { git = "https://github.com/anoma/namada", tag = "v0.46.0" }
namada_tx = { git = "https://github.com/anoma/namada", tag = "v0.46.0" }
orm = { path = "orm" }
serde = { version = "1.0.138", features = [ "derive" ] }
serde_json = "1.0"
shared = { path = "shared" }
tendermint = "0.38.0"
tendermint-rpc = { version = "0.38.0", features = ["http-client"] }
thiserror = "1.0.56"
tokio = { version = "1.0", features = [ "full" ] }
tokio-retry = "0.3"
tower = { version = "0.4", features = [ "util", "timeout", "load-shed", "limit", "buffer" ] }
tower-http = { version = "0.4.4", features = [ "compression-full", "limit", "trace", "cors" ] }
tracing = "0.1"
tracing-appender = "0.2.0"
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] }
validator = { version = "0.16.0", features = ["derive"] }
xorf = { version = "0.11.0", features = ["serde"]}
tryhard = { version = "0.5.1" }