24 lines
934 B
TOML
24 lines
934 B
TOML
[package]
|
|
name = "nym-network-statistics"
|
|
version = "1.1.32"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dirs = "4.0"
|
|
log = { workspace = true }
|
|
pretty_env_logger = "0.4"
|
|
rocket = { version = "0.5.0-rc.2", features = ["json"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate", "chrono"]}
|
|
thiserror = { workspace = true }
|
|
tokio = { version = "1.4", features = [ "net", "rt-multi-thread", "macros", "time" ] }
|
|
nym-bin-common = { path = "../../common/bin-common"}
|
|
nym-statistics-common = { path = "../../common/statistics" }
|
|
nym-task = { path = "../../common/task" }
|
|
|
|
[build-dependencies]
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate"] }
|
|
tokio = { version = "1.4", features = ["rt-multi-thread", "macros"] }
|