bkapi/bkapi-client/Cargo.toml
2023-02-26 19:31:44 -05:00

24 lines
549 B
TOML

[package]
name = "bkapi-client"
version = "0.2.2"
authors = ["Syfaro <syfaro@huefox.com>"]
edition = "2018"
publish = false
[features]
nats = ["async-nats"]
[dependencies]
async-nats = { version = "0.27", optional = true }
futures = "0.3"
opentelemetry = "0.18"
opentelemetry-http = "0.7"
reqwest = { version = "0.11", default-features = false, features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-opentelemetry = "0.18"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }