nRPC/nrpc/Cargo.toml

19 lines
407 B
TOML

[package]
name = "nrpc"
version = "1.0.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/NGnius/nRPC"
readme = "../README.md"
description = "Yet another remote procedure call library"
[dependencies]
prost = "0.11"
bytes = "1"
futures = "0.3"
async-trait = { version = "0.1", optional = true }
[features]
default = ["client-send", "server-send"]
client-send = []
server-send = []