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