-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 829 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 829 Bytes
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
[workspace]
members = [".", "e2e"]
[package]
name = "forwarding-relayer"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0"
axum = "0.7"
bech32 = "0.11"
bip32 = "0.5"
bip39 = "2.1"
chrono = "0.4"
clap = { version = "4.5", features = ["derive", "env"] }
celestia-grpc = "0.12"
celestia-proto = { version = "0.12.1", features = ["tonic"] }
cosmrs = { version = "0.19", features = ["cosmwasm", "rpc", "grpc"] }
hex = "0.4"
prost = "0.13"
prost-types = "0.13"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
tokio = { version = "1.42", features = ["full"] }
tonic = "0.13"
tower = "0.5"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rusqlite = { version = "0.38.0", features = ["bundled"] }