bkapi/bkapi-client/Cargo.toml
2023-08-14 23:19:57 -04:00

24 lines
551 B
TOML

[package]
name = "bkapi-client"
version = "0.3.0"
authors = ["Syfaro <syfaro@huefox.com>"]
edition = "2018"
publish = false
[features]
nats = ["async-nats"]
[dependencies]
async-nats = { version = "0.31.0", 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"] }