bkapi/bkapi-client/Cargo.toml

24 lines
551 B
TOML
Raw Normal View History

2021-07-28 19:43:13 +00:00
[package]
name = "bkapi-client"
2023-08-15 03:19:57 +00:00
version = "0.3.0"
2021-07-28 19:43:13 +00:00
authors = ["Syfaro <syfaro@huefox.com>"]
edition = "2018"
2023-02-11 03:00:42 +00:00
publish = false
2021-07-28 19:43:13 +00:00
2023-02-11 05:01:45 +00:00
[features]
nats = ["async-nats"]
2021-07-28 19:43:13 +00:00
2023-02-11 05:01:45 +00:00
[dependencies]
async-nats = { version = "0.31.0", optional = true }
2023-02-11 05:01:45 +00:00
futures = "0.3"
2022-10-13 02:20:35 +00:00
opentelemetry = "0.18"
opentelemetry-http = "0.7"
2023-02-27 00:31:44 +00:00
reqwest = { version = "0.11", default-features = false, features = ["json"] }
2021-07-28 19:43:13 +00:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2023-02-11 05:01:45 +00:00
tracing = "0.1"
tracing-opentelemetry = "0.18"
2021-07-28 19:43:13 +00:00
[dev-dependencies]
tokio = { version = "1", features = ["full"] }