1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
[package]
authors = ["Juan Alvarez <j@yabit.io>"]
edition = "2021"
name = "test_web"
publish = false
version = "0.1.0"
license = "MIT"
[dependencies]
base64 = "0.22"
bytes = "1.0"
http-body = "1"
http-body-util = "0.1"
hyper = "1"
hyper-util = "0.1"
prost = ">= 0.12.6, <= 0.13"
tokio = { version = "1", features = ["macros", "rt", "net"] }
tokio-stream = { version = "0.1", features = ["net"] }
tonic = { path = "../../tonic" }
[dev-dependencies]
tonic-web = { path = "../../tonic-web" }
[build-dependencies]
tonic-build = { path = "../../tonic-build" }
|