bkapi/Cargo.toml

39 lines
831 B
TOML
Raw Normal View History

2021-07-28 02:25:53 +00:00
[package]
name = "bkapi"
version = "0.1.0"
authors = ["Syfaro <syfaro@huefox.com>"]
edition = "2018"
[dependencies]
envconfig = "0.10"
thiserror = "1"
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-unwrap = "0.9"
tracing-opentelemetry = "0.14"
2021-07-28 19:08:19 +00:00
opentelemetry = { version = "0.15", features = ["rt-tokio"] }
2021-07-28 02:25:53 +00:00
opentelemetry-jaeger = "0.14"
lazy_static = "1"
prometheus = { version = "0.12", features = ["process"] }
bk-tree = "0.4.0"
hamming = "0.1"
futures = "0.3"
2021-07-28 19:08:19 +00:00
tokio = { version = "1", features = ["sync"] }
2021-07-28 02:25:53 +00:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2021-07-28 19:08:19 +00:00
actix-web = "4.0.0-beta.8"
actix-http = "3.0.0-beta.8"
actix-service = "2"
tracing-actix-web = { version = "0.4.0-beta.9", features = ["opentelemetry_0_15"] }
2021-07-28 02:25:53 +00:00
[dependencies.sqlx]
version = "0.5"
2021-07-28 19:08:19 +00:00
features = ["runtime-actix-rustls", "postgres"]