-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.03 KB
/
Cargo.toml
File metadata and controls
42 lines (39 loc) · 1.03 KB
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
[package]
name = "chain"
description = "Namada chain crawler."
resolver = "2"
authors.workspace = true
edition.workspace = true
license.workspace = true
readme.workspace = true
version.workspace = true
[[bin]]
name = "chain"
path = "src/main.rs"
[dependencies]
test_helpers.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
serde_json.workspace = true
chrono.workspace = true
clap.workspace = true
anyhow.workspace = true
namada_sdk.workspace = true
namada_core.workspace = true
namada_governance.workspace = true
namada_token.workspace = true
tendermint-rpc.workspace = true
subtle-encoding.workspace = true
shared.workspace = true
deadpool-diesel.workspace = true
diesel.workspace = true
orm.workspace = true
clap-verbosity-flag.workspace = true
futures.workspace = true
futures-util.workspace = true
serde.workspace = true
deadpool-redis = "0.15.1"
redis = {version = "0.25.0", features = ["streams"]}
[build-dependencies]
vergen = { version = "8.0.0", features = ["build", "git", "gitcl"] }