chirpstack/chirpstack-integration/Cargo.toml

30 lines
867 B
TOML
Raw Normal View History

[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"
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 = [
"cluster-async",
"tokio-rustls-comp",
] }
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"fmt",
"ansi",
"json",
], default-features = true }
async-trait = "0.1.73"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.32", features = ["macros", "rt-multi-thread"] }
lazy_static = "1.4"
serde_json = "1.0"
toml = "0.7"