mirror of
https://github.com/OMGeeky/tarpc.git
synced 2025-12-27 22:59:51 +01:00
34 lines
844 B
TOML
34 lines
844 B
TOML
[package]
|
|
name = "tarpc-plugins"
|
|
version = "0.9.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-plugins"
|
|
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 = "Proc macros for tarpc."
|
|
|
|
[features]
|
|
serde1 = []
|
|
|
|
[badges]
|
|
travis-ci = { repository = "google/tarpc" }
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = ["full"] }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dev-dependencies]
|
|
assert-type-eq = "0.1.0"
|
|
futures = "0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tarpc = { path = "../tarpc" }
|