2022-03-29 13:07:19 +00:00
|
|
|
[package]
|
|
|
|
name = "ioxd_common"
|
2022-09-26 14:43:00 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-03-29 13:07:19 +00:00
|
|
|
|
2022-04-08 17:46:01 +00:00
|
|
|
# Optional feature 'pprof' enables http://localhost:8080/debug/pprof/profile support support
|
|
|
|
|
2022-03-29 13:07:19 +00:00
|
|
|
[dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
2023-04-18 10:18:48 +00:00
|
|
|
authz = { path = "../authz", features = ["http"] }
|
2022-03-29 13:07:19 +00:00
|
|
|
clap_blocks = { path = "../clap_blocks" }
|
2022-05-06 15:41:16 +00:00
|
|
|
generated_types = { path = "../generated_types" }
|
2023-07-04 14:14:46 +00:00
|
|
|
heappy = { git = "https://github.com/mkmik/heappy", rev = "1de977a241cdd768acc5b6c82c0728b30c7db7b4", features = ["enable_heap_profiler", "jemalloc_shim", "measure_free"], optional = true }
|
2022-03-29 13:07:19 +00:00
|
|
|
metric = { path = "../metric" }
|
|
|
|
metric_exporters = { path = "../metric_exporters" }
|
2022-05-06 15:41:16 +00:00
|
|
|
observability_deps = { path = "../observability_deps" }
|
2022-05-12 23:33:28 +00:00
|
|
|
# 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)
|
2023-07-04 12:00:59 +00:00
|
|
|
pprof = { version = "0.12", default-features = false, features = ["flamegraph", "prost-codec"], optional = true }
|
2022-05-06 15:41:16 +00:00
|
|
|
service_grpc_testing = { path = "../service_grpc_testing" }
|
2022-03-29 13:07:19 +00:00
|
|
|
trace = { path = "../trace" }
|
|
|
|
trace_exporters = { path = "../trace_exporters" }
|
|
|
|
trace_http = { path = "../trace_http" }
|
|
|
|
|
|
|
|
# Crates.io dependencies, in alphabetical order
|
|
|
|
async-trait = "0.1"
|
2023-02-01 00:30:56 +00:00
|
|
|
bytes = "1.4"
|
2022-09-29 11:14:38 +00:00
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
2022-03-29 13:07:19 +00:00
|
|
|
flate2 = "1.0"
|
|
|
|
futures = "0.3"
|
2022-11-11 17:12:30 +00:00
|
|
|
hashbrown = { workspace = true }
|
2023-02-20 02:54:56 +00:00
|
|
|
http = "0.2.9"
|
2022-03-29 13:07:19 +00:00
|
|
|
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"] }
|
2023-07-27 09:12:35 +00:00
|
|
|
serde_json = "1.0.104"
|
2022-03-29 13:07:19 +00:00
|
|
|
serde_urlencoded = "0.7.0"
|
|
|
|
snafu = "0.7"
|
2023-06-28 13:18:08 +00:00
|
|
|
tokio = { version = "1.29", features = ["macros", "net", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
|
2022-03-29 13:07:19 +00:00
|
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
2023-04-26 09:24:39 +00:00
|
|
|
tokio-util = { version = "0.7.8" }
|
2023-04-12 16:07:19 +00:00
|
|
|
tonic = { workspace = true }
|
|
|
|
tonic-health = { workspace = true }
|
|
|
|
tonic-reflection = { workspace = true }
|
2022-03-29 13:07:19 +00:00
|
|
|
tower = "0.4"
|
2023-02-27 09:55:23 +00:00
|
|
|
tower-http = { version = "0.4", features = ["catch-panic"] }
|
2023-02-24 18:02:23 +00:00
|
|
|
workspace-hack = { version = "0.1", path = "../workspace-hack" }
|
2022-03-29 13:07:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Workspace dependencies, in alphabetical order
|
|
|
|
# Crates.io dependencies, in alphabetical order
|