58 lines
2.2 KiB
TOML
58 lines
2.2 KiB
TOML
[package]
|
|
name = "ioxd_common"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# Optional feature 'pprof' enables http://localhost:8080/debug/pprof/profile support support
|
|
|
|
[dependencies]
|
|
# Workspace dependencies, in alphabetical order
|
|
clap_blocks = { path = "../clap_blocks" }
|
|
data_types = { path = "../data_types" }
|
|
dml = { path = "../dml" }
|
|
generated_types = { path = "../generated_types" }
|
|
metric = { path = "../metric" }
|
|
metric_exporters = { path = "../metric_exporters" }
|
|
mutable_batch_lp = { path = "../mutable_batch_lp" }
|
|
observability_deps = { path = "../observability_deps" }
|
|
# NOTE: we may not notice that we need the "backtrace-rs" feature if we also build with the heappy feature, which depends on backtrace-rs.
|
|
# (honestly I thought that cargo dependencies were isolated on a per crate basis so I'm a bit surprised that pprof accidentally builds
|
|
# successfully just because another crate happens to depend on backtrace-rs)
|
|
pprof = { version = "0.9", default-features = false, features = ["flamegraph", "prost-codec", "backtrace-rs"], optional = true }
|
|
predicate = { path = "../predicate" }
|
|
service_grpc_testing = { path = "../service_grpc_testing" }
|
|
trace = { path = "../trace" }
|
|
trace_exporters = { path = "../trace_exporters" }
|
|
trace_http = { path = "../trace_http" }
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
|
async-trait = "0.1"
|
|
bytes = "1.0"
|
|
clap = { version = "3", features = ["derive", "env"] }
|
|
chrono = { version = "0.4", default-features = false }
|
|
flate2 = "1.0"
|
|
futures = "0.3"
|
|
hashbrown = "0.12"
|
|
http = "0.2.7"
|
|
hyper = "0.14"
|
|
log = "0.4"
|
|
parking_lot = "0.12"
|
|
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.81"
|
|
serde_urlencoded = "0.7.0"
|
|
snafu = "0.7"
|
|
tokio = { version = "1.18", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
|
tokio-util = { version = "0.7.2" }
|
|
tonic = "0.7"
|
|
tonic-health = "0.6.0"
|
|
tonic-reflection = "0.4.0"
|
|
tower = "0.4"
|
|
workspace-hack = { path = "../workspace-hack"}
|
|
|
|
|
|
[dev-dependencies]
|
|
# Workspace dependencies, in alphabetical order
|
|
# Crates.io dependencies, in alphabetical order
|