34 lines
1.4 KiB
TOML
34 lines
1.4 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]
|
|
anyhow = "1.0.71"
|
|
bstr = { version = "1.9.0", features = ["serde"] }
|
|
bytes = { version = "1.4.0", features = ["serde"] }
|
|
chrono = { version = "0.4.26", features = ["serde"] }
|
|
clap = { version = "4.3.8", features = ["derive", "env"] }
|
|
derive_more = "0.99.17"
|
|
dotenvy = "0.15.7"
|
|
fred = { version = "9.0.3", features = ["nom"] }
|
|
heapless = { version = "0.7.16", features = ["ufmt-impl"] }
|
|
hex = { version = "0.4.3", default-features = false, features = ["std", "alloc"] }
|
|
hifitime = "3.8.2"
|
|
lazy_static = "1.4.0"
|
|
nom = { version = "7.1.3", default-features = false, features = ["std", "alloc"] }
|
|
ntex = { version = "1.1.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.12.0"
|
|
serde_with = { version = "3.6.1", features = ["hex"] }
|
|
smallstr = { version = "0.3.0", features = ["std", "union"] }
|
|
thiserror = "1.0.40"
|
|
tokio = { version = "1.28.2", features = ["full"] }
|
|
ufmt = { version = "0.2.0", features = ["std"] }
|
|
futures-util = { version = "0.3.30", features = ["tokio-io"] }
|