* chore: update prost, and related crates, to 0.8 Updates prost, prost-derive, prost-build, and prost-types to 0.8. * Update the last few places
25 lines
697 B
TOML
25 lines
697 B
TOML
[package]
|
|
name = "compression"
|
|
version = "0.1.0"
|
|
authors = ["Lucio Franco <[email protected]>"]
|
|
edition = "2018"
|
|
publish = false
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
tonic = { path = "../../tonic", features = ["compression"] }
|
|
prost = "0.8"
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "net"] }
|
|
tower = { version = "0.4", features = [] }
|
|
http-body = "0.4"
|
|
http = "0.2"
|
|
tokio-stream = { version = "0.1.5", features = ["net"] }
|
|
tower-http = { version = "0.1", features = ["map-response-body", "map-request-body"] }
|
|
bytes = "1"
|
|
futures = "0.3"
|
|
pin-project = "1.0"
|
|
hyper = "0.14.3"
|
|
|
|
[build-dependencies]
|
|
tonic-build = { path = "../../tonic-build", features = ["compression"] }
|