xref: /tonic/tests/compression/Cargo.toml (revision 6cdb3d46)
1[package]
2authors = ["Lucio Franco <[email protected]>"]
3edition = "2018"
4license = "MIT"
5name = "compression"
6publish = false
7version = "0.1.0"
8
9[dependencies]
10bytes = "1"
11futures = "0.3"
12http = "0.2"
13http-body = "0.4"
14hyper = "0.14.3"
15pin-project = "1.0"
16prost = "0.11"
17tokio = {version = "1.0", features = ["macros", "rt-multi-thread", "net"]}
18tokio-stream = {version = "0.1.5", features = ["net"]}
19tonic = {path = "../../tonic", features = ["gzip"]}
20tower = {version = "0.4", features = []}
21tower-http = {version = "0.3", features = ["map-response-body", "map-request-body"]}
22
23[build-dependencies]
24tonic-build = {path = "../../tonic-build" }
25