20 lines
356 B
TOML
20 lines
356 B
TOML
|
[package]
|
||
|
name = "nrpc-build"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# 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"
|
||
|
|
||
|
# code gen
|
||
|
prettyplease = "0.2"
|
||
|
quote = "1.0"
|
||
|
syn = "2.0"
|
||
|
proc-macro2 = "1.0"
|
||
|
|
||
|
nrpc = { version = "0.1", path = "../nrpc" }
|