31 lines
1.2 KiB
TOML
31 lines
1.2 KiB
TOML
[package]
|
|
name = "iotishnik-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bytes = { version = "1.4.0", features = ["serde"] }
|
|
chrono = { version = "0.4.26", features = ["serde"] }
|
|
clap = { version = "4.3.8", features = ["derive", "env"] }
|
|
dotenvy = "0.15.7"
|
|
fred = { version = "10.0.3", features = ["nom"] }
|
|
heapless = { version = "0.8.0", features = ["ufmt"] }
|
|
hex = { version = "0.4.3", default-features = false, features = ["std", "alloc"] }
|
|
hifitime = "4.0.2"
|
|
lazy_static = "1.4.0"
|
|
ntex = { version = "2.10.0", features = ["tokio", "cookie", "url"] }
|
|
phf = { version = "0.11.2", features = ["serde", "macros"] }
|
|
regex = "1.8.4"
|
|
rust_decimal = { version = "1.30.0", features = ["rkyv", "rkyv-safe"] }
|
|
serde = { version = "1.0.164", features = ["derive", "alloc"] }
|
|
serde_json = "1.0.99"
|
|
serde_qs = "0.13.0"
|
|
serde_with = { version = "3.6.1", features = ["hex"] }
|
|
smallstr = { version = "0.3.0", features = ["std", "union"] }
|
|
tokio = { version = "1.28.2", features = ["full"] }
|
|
ufmt = { version = "0.2.0", features = ["std"] }
|
|
futures-util = { version = "0.3.30", features = ["tokio-io"] }
|
|
snafu = "0.8.5"
|
|
clap-verbosity-flag = "3.0.2"
|