[package] name = "tarpc-example-service" version = "0.3.0" authors = ["Tim Kuehn "] edition = "2018" license = "MIT" documentation = "https://docs.rs/tarpc-example-service" homepage = "https://github.com/google/tarpc" repository = "https://github.com/google/tarpc" keywords = ["rpc", "network", "server", "microservices", "example"] categories = ["asynchronous", "network-programming"] readme = "../README.md" description = "An example server built on tarpc." [dependencies] bincode-transport = { package = "tarpc-bincode-transport", version = "0.4", path = "../bincode-transport" } clap = "2.0" futures-preview = { git = "https://github.com/rust-lang-nursery/futures-rs", features = ["compat"] } serde = { version = "1.0" } tarpc = { version = "0.15", path = "../tarpc", features = ["serde1"] } tokio = "0.1" tokio-executor = "0.1" [lib] name = "service" path = "src/lib.rs" [[bin]] name = "server" path = "src/server.rs" [[bin]] name = "client" path = "src/client.rs"