25 lines
561 B
TOML
25 lines
561 B
TOML
[package]
|
|
name = "trace_http"
|
|
description = "Distributed tracing support for HTTP services"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
trace = { path = "../trace" }
|
|
futures = "0.3"
|
|
hashbrown = { workspace = true }
|
|
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"
|
|
snafu = "0.7"
|
|
tower = "0.4"
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
[dev-dependencies]
|