1[package] 2authors = ["Lucio Franco <[email protected]>"] 3edition = "2021" 4license = "MIT" 5name = "integration-tests" 6 7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 9[dependencies] 10bytes = "1.0" 11prost = "0.13" 12tokio = {version = "1.0", features = ["macros", "rt-multi-thread", "net", "sync"]} 13tonic = {path = "../../tonic"} 14tracing-subscriber = {version = "0.3"} 15 16[dev-dependencies] 17async-stream = "0.3" 18http = "1" 19http-body = "1" 20hyper-util = "0.1" 21rustls = {version = "0.23", features = ["ring"]} 22tokio-stream = {version = "0.1.5", features = ["net"]} 23tower = "0.5" 24tower-http = { version = "0.6", features = ["set-header", "trace"] } 25tower-service = "0.3" 26tracing = "0.1" 27 28[build-dependencies] 29tonic-build = {path = "../../tonic-build"} 30