-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
24 lines (23 loc) · 906 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
[package]
name = "namada-exporter"
version = "0.2.0"
edition = "2021"
authors = ["Ruslan Glaznyov <[email protected]>"]
description = "Namada Exporter"
[dependencies]
tendermint-rpc = { version = "0.38.1", features = ["http-client"]}
tokio = { version = "1", features = ["full"] }
namada_sdk = { git = "https://github.com/anoma/namada",version = "0.46.0", default-features = false }
axum = { version = "0.7.9", features = ["macros"] }
prometheus-client = "0.22.3"
itertools = "0.13.0"
clap = { version = "4.5.21", features = ["derive"] }
toml = "0.8.19"
serde = { version = "1.0", features = ["derive"] }
env_logger = "0.11.5"
log = "0.4"
[profile.release]
opt-level = "z" # Optimize for size
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce the number of codegen units for better optimizations
panic = "abort" # Use 'abort' for smaller panic handling