mirror of
https://github.com/OMGeeky/tarpc.git
synced 2026-01-23 03:18:49 +01:00
38 lines
1.2 KiB
TOML
38 lines
1.2 KiB
TOML
[package]
|
|
name = "tarpc"
|
|
version = "0.18.0"
|
|
authors = ["Adam Wright <adam.austin.wright@gmail.com>", "Tim Kuehn <timothy.j.kuehn@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
documentation = "https://docs.rs/tarpc"
|
|
homepage = "https://github.com/google/tarpc"
|
|
repository = "https://github.com/google/tarpc"
|
|
keywords = ["rpc", "network", "server", "api", "microservices"]
|
|
categories = ["asynchronous", "network-programming"]
|
|
readme = "../README.md"
|
|
description = "An RPC framework for Rust with a focus on ease of use."
|
|
|
|
[features]
|
|
serde1 = ["rpc/serde1", "serde", "serde/derive"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "google/tarpc" }
|
|
|
|
[dependencies]
|
|
futures-preview = { version = "0.3.0-alpha.16", features = ["compat"] }
|
|
log = "0.4"
|
|
serde = { optional = true, version = "1.0" }
|
|
rpc = { package = "tarpc-lib", path = "../rpc", version = "0.6" }
|
|
tarpc-plugins = { path = "../plugins", version = "0.5.0" }
|
|
|
|
[dev-dependencies]
|
|
bincode = "1"
|
|
bytes = { version = "0.4", features = ["serde"] }
|
|
humantime = "1.0"
|
|
bincode-transport = { package = "tarpc-bincode-transport", version = "0.7", path = "../bincode-transport" }
|
|
env_logger = "0.6"
|
|
tokio = "0.1"
|
|
tokio-executor = "0.1"
|
|
tokio-tcp = "0.1"
|
|
pin-utils = "0.1.0-alpha.4"
|