64 lines
2.2 KiB
TOML
64 lines
2.2 KiB
TOML
[package]
|
|
name = "conduit-proxy"
|
|
version = "0.3.0"
|
|
authors = ["Oliver Gould <ver@buoyant.io>"]
|
|
publish = false
|
|
|
|
[features]
|
|
default = ["flaky_tests"]
|
|
# Disable to skip certain tests that should not be run on CI.
|
|
flaky_tests = []
|
|
|
|
[dependencies]
|
|
convert = { path = "./convert" }
|
|
conduit-proxy-controller-grpc = { path = "./controller-grpc" }
|
|
futures-mpsc-lossy = { path = "./futures-mpsc-lossy" }
|
|
conduit-proxy-router = { path = "./router" }
|
|
|
|
bytes = "0.4"
|
|
deflate = {version = "0.7.18", features = ["gzip"] }
|
|
env_logger = { version = "0.5", default-features = false }
|
|
futures = "0.1"
|
|
futures-watch = { git = "https://github.com/carllerche/better-future.git" }
|
|
h2 = "0.1.6"
|
|
http = "0.1"
|
|
httparse = "1.2"
|
|
hyper = { version = "0.11.22", default-features = false, features = ["compat"] }
|
|
ipnet = "1.0"
|
|
log = "0.4.1"
|
|
indexmap = "1.0.0"
|
|
rand = "0.4"
|
|
|
|
# for config parsing
|
|
regex = "1.0.0"
|
|
|
|
tokio-core = "0.1"
|
|
tokio-io = "0.1"
|
|
tokio-signal = "0.1"
|
|
|
|
prost = "0.3.0"
|
|
prost-types = "0.3.0"
|
|
|
|
trust-dns-resolver = { version = "0.8.2", default-features = false, git = "https://github.com/bluejekyll/trust-dns", branch = "0.8_release" }
|
|
|
|
#futures-watch = { git = "https://github.com/carllerche/better-future" }
|
|
|
|
tokio-connect = { git = "https://github.com/carllerche/tokio-connect" }
|
|
tower-service = { git = "https://github.com/tower-rs/tower" }
|
|
tower-balance = { git = "https://github.com/tower-rs/tower" }
|
|
tower-buffer = { git = "https://github.com/tower-rs/tower" }
|
|
tower-discover = { git = "https://github.com/tower-rs/tower" }
|
|
tower-grpc = { git = "https://github.com/tower-rs/tower-grpc" }
|
|
tower-h2 = { git = "https://github.com/tower-rs/tower-h2" }
|
|
tower-reconnect = { git = "https://github.com/tower-rs/tower" }
|
|
tower-in-flight-limit = { git = "https://github.com/tower-rs/tower" }
|
|
tower-util = { git = "https://github.com/tower-rs/tower" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
quickcheck = { version = "0.6", default-features = false }
|
|
conduit-proxy-controller-grpc = { path = "./controller-grpc" , features = ["arbitrary"] }
|
|
flate2 = { version = "1.0.1", default-features = false, features = ["rust_backend"] }
|