64 lines
2.1 KiB
TOML
64 lines
2.1 KiB
TOML
[package]
|
|
name = "nym-validator-rewarder"
|
|
version = "0.3.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0"
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bip39 = { workspace = true, features = ["zeroize"] }
|
|
cosmwasm-std.workspace = true
|
|
clap = { workspace = true, features = ["cargo", "env"] }
|
|
futures.workspace = true
|
|
rand.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate", "time"] }
|
|
thiserror.workspace = true
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "time", "macros"] }
|
|
tracing.workspace = true
|
|
time.workspace = true
|
|
url.workspace = true
|
|
zeroize.workspace = true
|
|
serde_json.workspace = true
|
|
serde_with = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
humantime = { workspace = true }
|
|
humantime-serde.workspace = true
|
|
|
|
# internal
|
|
nym-bin-common = { workspace = true, features = ["output_format", "basic_tracing"] }
|
|
nym-config = { workspace = true }
|
|
nym-ecash-time = { workspace = true }
|
|
nym-contracts-common = { workspace = true }
|
|
nym-compact-ecash = { workspace = true }
|
|
nym-crypto = { workspace = true, features = ["asymmetric", "rand"] }
|
|
nym-credentials = { workspace = true }
|
|
nym-network-defaults = { workspace = true }
|
|
nym-task = { workspace = true }
|
|
nym-validator-client = { workspace = true }
|
|
nym-http-api-client = { workspace = true }
|
|
nym-coconut-dkg-common = { workspace = true }
|
|
nyxd-scraper-sqlite = { path = "../common/nyxd-scraper-sqlite" }
|
|
nym-ticketbooks-merkle = { workspace = true }
|
|
nym-serde-helpers = { workspace = true, features = ["base64"] }
|
|
nym-pemstore = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
anyhow = { workspace = true }
|
|
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
|
|
|
[dev-dependencies]
|
|
rand_chacha = { workspace = true }
|
|
nym-credentials-interface = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|