14 lines
443 B
TOML
14 lines
443 B
TOML
[package]
|
|
name = "limits_srv"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
limits_core = { version = "1.0.0", path = "../limits_core" }
|
|
chrono = { version = "0.4" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
warp = { version = "0.3" }
|
|
tokio = { version = "1.22", features = ["macros", "rt", "rt-multi-thread"] }
|