chirpstack/backend/Cargo.toml

25 lines
662 B
TOML
Raw Normal View History

2022-04-06 20:18:32 +00:00
[package]
name = "backend"
2024-04-10 09:12:06 +00:00
version = "4.8.0-test.2"
2022-04-06 20:18:32 +00:00
authors = ["Orne Brocaar <info@brocaar.com>"]
edition = "2018"
publish = false
[dependencies]
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
thiserror = "1.0"
anyhow = "1.0"
tracing = "0.1"
hex = "0.4"
rand = "0.8"
aes-kw = "0.2"
2024-04-02 10:39:57 +00:00
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
2022-04-06 20:18:32 +00:00
chrono = { version = "0.4", features = ["serde"] }
2024-03-19 12:41:18 +00:00
tokio = { version = "1.36", features = ["macros" ] }
chirpstack_api = { path = "../api/rust", default-features = false, features = ["json"] }
2022-06-30 10:11:21 +00:00
# Development and testing
[dev-dependencies]
httpmock = "0.7.0"