2023-10-13 10:37:47 +00:00
|
|
|
[package]
|
|
|
|
name = "chirpstack_integration"
|
|
|
|
description = "Library for building external ChirpStack integrations"
|
|
|
|
homepage = "https://www.chirpstack.io/"
|
|
|
|
license = "MIT"
|
2024-09-19 11:19:22 +00:00
|
|
|
version = "4.10.0-test.1"
|
2023-10-13 10:37:47 +00:00
|
|
|
authors = ["Orne Brocaar <info@brocaar.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
repository = "https://github.com/chirpstack/chirpstack"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-19 11:19:22 +00:00
|
|
|
chirpstack_api = { path = "../api/rust", version = "4.10.0-test.1" }
|
2024-10-14 13:35:11 +00:00
|
|
|
redis = { version = "0.27", features = [
|
2023-10-13 10:37:47 +00:00
|
|
|
"cluster-async",
|
|
|
|
"tokio-rustls-comp",
|
|
|
|
] }
|
|
|
|
anyhow = "1.0"
|
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = { version = "0.3", features = [
|
|
|
|
"fmt",
|
|
|
|
"ansi",
|
|
|
|
"json",
|
|
|
|
], default-features = true }
|
2024-09-19 09:44:26 +00:00
|
|
|
async-trait = "0.1"
|
2023-10-13 10:37:47 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-09-19 09:44:26 +00:00
|
|
|
tokio = { version = "1.40", features = ["macros", "rt-multi-thread"] }
|
|
|
|
lazy_static = "1.5"
|
2023-10-13 10:37:47 +00:00
|
|
|
serde_json = "1.0"
|
2024-03-19 12:41:18 +00:00
|
|
|
toml = "0.8"
|