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]
|
2024-06-20 02:16:24 +00:00
|
|
|
async-nats = { version = "0.35.1", optional = true }
|
2023-02-11 05:01:45 +00:00
|
|
|
futures = "0.3"
|
2024-06-20 02:16:24 +00:00
|
|
|
opentelemetry = "0.23.0"
|
|
|
|
opentelemetry-http = "0.12.0"
|
2024-03-23 01:45:51 +00:00
|
|
|
reqwest = { version = "0.11.0", 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"
|
2024-06-20 02:16:24 +00:00
|
|
|
tracing-opentelemetry = "0.24.0"
|
2021-07-28 19:43:13 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1", features = ["full"] }
|