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"
|
2023-12-07 09:22:19 +00:00
|
|
|
version = "4.6.0"
|
2023-10-13 10:37:47 +00:00
|
|
|
authors = ["Orne Brocaar <info@brocaar.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
repository = "https://github.com/chirpstack/chirpstack"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-12 09:19:50 +00:00
|
|
|
chirpstack_api = { path = "../api/rust", version = "4.7.0-test.3" }
|
2024-03-13 16:23:49 +00:00
|
|
|
redis = { version = "0.25", 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-03-27 14:13:18 +00:00
|
|
|
async-trait = "0.1.79"
|
2023-10-13 10:37:47 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-03-19 12:41:18 +00:00
|
|
|
tokio = { version = "1.36", features = ["macros", "rt-multi-thread"] }
|
2023-10-13 10:37:47 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
serde_json = "1.0"
|
2024-03-19 12:41:18 +00:00
|
|
|
toml = "0.8"
|