chirpstack/backend/Cargo.toml

30 lines
720 B
TOML
Raw Normal View History

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