forked from hyperium/tonic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 686 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
authors = ["Lucio Franco <luciofranco14@gmail.com>"]
edition = "2018"
license = "MIT"
name = "compression"
publish = false
version = "0.1.0"
[dependencies]
bytes = "1"
futures = "0.3"
http = "0.2"
http-body = "0.4"
hyper = "0.14.3"
pin-project = "1.0"
prost = "0.10"
tokio = {version = "1.0", features = ["macros", "rt-multi-thread", "net"]}
tokio-stream = {version = "0.1.5", features = ["net"]}
tonic = {path = "../../tonic", features = ["compression"]}
tower = {version = "0.4", features = []}
tower-http = {version = "0.2", features = ["map-response-body", "map-request-body"]}
[build-dependencies]
tonic-build = {path = "../../tonic-build", features = ["compression"]}