Files
tonic/tonic/Cargo.toml
T
2019-09-02 16:39:16 -04:00

57 lines
1.8 KiB
TOML

[package]
name = "tonic"
version = "0.1.0"
authors = ["Lucio Franco <[email protected]>"]
edition = "2018"
[dependencies]
futures-core-preview = "=0.3.0-alpha.18"
futures-util-preview = "=0.3.0-alpha.18"
tonic-macros = { path = "../tonic-macros" }
tracing = "0.1"
http = "0.1.14"
base64 = "0.10"
bytes = "0.4.7"
prost = "0.5"
percent-encoding = "1.0.1"
tower-service = "=0.3.0-alpha.1"
tokio-codec = "=0.2.0-alpha.4"
async-stream = { git = "https://github.com/tokio-rs/async-stream" }
http-body = "0.2.0-alpha.1"
pin-project = "0.4.0-alpha.7"
# optional
hyper = { git = "https://github.com/hyperium/hyper", optional = true}
tokio = { version = "=0.2.0-alpha.4", default-features = false, features = ["tcp"], optional = true }
tower-make = "=0.1.0-alpha.2"
tower-reconnect = { git = "https://github.com/tower-rs/tower", branch = "lucio/update-reconnect-buffer", optional = true }
tower-buffer = { git = "https://github.com/tower-rs/tower", branch = "lucio/update-reconnect-buffer", optional = true }
tower-balance = { git = "https://github.com/tower-rs/tower", branch = "lucio/update-balance", optional = true }
tower-load = { git = "https://github.com/tower-rs/tower", branch = "lucio/update-balance", optional = true }
tower-discover = { git = "https://github.com/tower-rs/tower", branch = "lucio/update-balance", optional = true }
# openssl
tokio-openssl = { version = "=0.4.0-alpha.4", optional = true }
openssl = { version = "0.10", optional = true }
# rustls
tokio-rustls = { version = "0.12.0-alpha.2", optional = true }
[features]
default = ["transport"]
transport = [
"hyper",
"tower",
"tokio",
"openssl-1",
]
tower = [
"tower-reconnect",
"tower-buffer",
"tower-balance",
"tower-load",
"tower-discover"
]
openssl-1 = ["openssl", "tokio-openssl"]
rustls = ["tokio-rustls"]