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