diff --git a/tonic-examples/Cargo.toml b/tonic-examples/Cargo.toml index c360a6d..2acdda9 100644 --- a/tonic-examples/Cargo.toml +++ b/tonic-examples/Cargo.toml @@ -46,16 +46,19 @@ path = "src/tls/server.rs" [dependencies] tonic = { path = "../tonic", features = ["rustls"] } -futures-preview = { version = "=0.3.0-alpha.18", default-features = false, features = ["alloc"]} -tokio = "=0.2.0-alpha.4" +bytes = "0.4" prost = "0.5" prost-derive = "0.5" -bytes = "0.4" -serde_json = "1.0" -serde = { version = "1.0", features = ["derive"] } + +tokio = "=0.2.0-alpha.4" +futures-preview = { version = "=0.3.0-alpha.18", default-features = false, features = ["alloc"]} async-stream = "0.1.1" http = "0.1" tower = "0.3.0-alpha.1a" +# Required for routeguide +serde = { version = "0.1", features = ["derive"] } +serde_json = "0.1" + [build-dependencies] tonic-build = { path = "../tonic-build" }