2023-04-10 19:34:03 +01:00
|
|
|
[package]
|
|
|
|
name = "nrpc-build"
|
2023-04-16 19:41:04 +01:00
|
|
|
version = "0.4.0"
|
2023-04-10 19:34:03 +01:00
|
|
|
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"
|
|
|
|
|
2023-04-15 04:54:38 +01:00
|
|
|
nrpc = { version = "0.2", path = "../nrpc" }
|