mirror of
https://github.com/OMGeeky/tarpc.git
synced 2026-01-07 03:56:48 +01:00
27 lines
797 B
TOML
27 lines
797 B
TOML
[package]
|
|
name = "tarpc-json-transport"
|
|
version = "0.1.0"
|
|
authors = ["Artem Vorotnikov <artem@vorotnikov.me>"]
|
|
edition = '2018'
|
|
license = "MIT"
|
|
documentation = "https://docs.rs/tarpc-json-transport"
|
|
homepage = "https://github.com/google/tarpc"
|
|
repository = "https://github.com/google/tarpc"
|
|
keywords = ["rpc", "network", "json", "serde", "tarpc"]
|
|
categories = ["asynchronous", "network-programming"]
|
|
readme = "../README.md"
|
|
description = "A JSON-based transport for tarpc services."
|
|
|
|
[dependencies]
|
|
futures-preview = "0.3.0-alpha"
|
|
pin-project = "0.4"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
tokio = { version = "0.2.0-alpha", default-features = false, features = ["codec", "io", "net"] }
|
|
tokio-net = "0.2.0-alpha"
|
|
tokio-serde-json = "0.3"
|
|
|
|
[dev-dependencies]
|
|
pin-utils = "0.1.0-alpha"
|
|
assert_matches = "1.0"
|