1[package] 2authors = ["Lucio Franco <[email protected]>"] 3edition = "2021" 4license = "MIT" 5name = "compression" 6 7[dependencies] 8bytes = "1" 9http = "1" 10http-body = "1" 11http-body-util = "0.1" 12hyper = "1" 13hyper-util = "0.1" 14paste = "1.0.12" 15pin-project = "1.0" 16prost = "0.13" 17tokio = {version = "1.0", features = ["macros", "rt-multi-thread", "net"]} 18tokio-stream = "0.1" 19tonic = {path = "../../tonic", features = ["gzip", "deflate", "zstd"]} 20tower = "0.5" 21tower-http = {version = "0.6", features = ["map-response-body", "map-request-body"]} 22 23[build-dependencies] 24tonic-build = {path = "../../tonic-build" } 25