influxdb/trace_http/Cargo.toml

25 lines
551 B
TOML
Raw Normal View History

[package]
name = "trace_http"
version = "0.1.0"
authors = ["Raphael Taylor-Davies <r.taylordavies@googlemail.com>"]
2021-10-25 08:45:44 +00:00
edition = "2021"
description = "Distributed tracing support for HTTP services"
[dependencies]
trace = { path = "../trace" }
futures = "0.3"
hashbrown = "0.12"
http = "0.2"
http-body = "0.4"
itertools = "0.10"
metric = { path = "../metric" }
observability_deps = { path = "../observability_deps" }
parking_lot = "0.12"
pin-project = "1.0"
2022-01-11 19:22:36 +00:00
snafu = "0.7"
tower = "0.4"
workspace-hack = { path = "../workspace-hack"}
[dev-dependencies]