2023-04-10 14:34:03 -04:00
|
|
|
[package]
|
|
|
|
name = "nrpc"
|
2024-04-02 19:46:40 -04:00
|
|
|
version = "1.0.0"
|
2023-04-10 14:34:03 -04:00
|
|
|
edition = "2021"
|
2023-04-10 14:37:55 -04:00
|
|
|
license = "Apache-2.0"
|
|
|
|
repository = "https://github.com/NGnius/nRPC"
|
|
|
|
readme = "../README.md"
|
|
|
|
description = "Yet another remote procedure call library"
|
2023-04-10 14:34:03 -04:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
prost = "0.11"
|
|
|
|
bytes = "1"
|
2023-07-01 17:09:30 -04:00
|
|
|
futures = "0.3"
|
2024-04-02 19:46:40 -04:00
|
|
|
async-trait = { version = "0.1", optional = true }
|
2023-08-01 11:40:25 -04:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["client-send", "server-send"]
|
|
|
|
client-send = []
|
|
|
|
server-send = []
|