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