nRPC/nrpc-build/Cargo.toml

25 lines
538 B
TOML
Raw Normal View History

2023-04-10 19:34:03 +01:00
[package]
name = "nrpc-build"
version = "0.1.0"
edition = "2021"
2023-04-10 19:37:55 +01:00
license = "Apache-2.0"
repository = "https://github.com/NGnius/nRPC"
readme = "../README.md"
description = "Yet another remote procedure call library - codegen"
2023-04-10 19:34:03 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# gRPC/protobuf
protox = "0.3"
prost-build = "0.11"
2023-04-15 04:50:43 +01:00
prost-types = "0.11"
2023-04-10 19:34:03 +01:00
# code gen
prettyplease = "0.2"
quote = "1.0"
syn = "2.0"
proc-macro2 = "1.0"
nrpc = { version = "0.1", path = "../nrpc" }