55 lines
2.1 KiB
TOML
55 lines
2.1 KiB
TOML
[package]
|
|
name = "nym-validator-rewarder"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0"
|
|
|
|
# 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"] }
|
|
futures.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_with = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
humantime = { workspace = true }
|
|
humantime-serde.workspace = true
|
|
|
|
# internal
|
|
nym-bin-common = { path = "../common/bin-common", features = ["output_format", "basic_tracing"] }
|
|
nym-config = { path = "../common/config" }
|
|
nym-ecash-time = { path = "../common/ecash-time" }
|
|
nym-compact-ecash = { path = "../common/nym_offline_compact_ecash" }
|
|
nym-crypto = { path = "../common/crypto", features = ["asymmetric"] }
|
|
nym-credentials = { path = "../common/credentials" }
|
|
nym-network-defaults = { path = "../common/network-defaults" }
|
|
nym-task = { path = "../common/task" }
|
|
nym-validator-client = { path = "../common/client-libs/validator-client" }
|
|
nym-coconut-dkg-common = { path = "../common/cosmwasm-smart-contracts/coconut-dkg" }
|
|
nym-coconut-bandwidth-contract-common = { path = "../common/cosmwasm-smart-contracts/coconut-bandwidth-contract" }
|
|
nyxd-scraper = { path = "../common/nyxd-scraper" }
|
|
|
|
[build-dependencies]
|
|
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 = { path = "../common/credentials-interface" }
|
|
nym-crypto = { path = "../common/crypto", features = ["rand"] }
|