You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
931 B
30 lines
931 B
[package]
|
|
name = "grpcio-compiler"
|
|
version = "0.8.0"
|
|
edition = "2018"
|
|
authors = ["The TiKV Project Developers"]
|
|
license = "Apache-2.0"
|
|
keywords = ["compiler", "grpc", "protobuf"]
|
|
repository = "https://github.com/tikv/grpc-rs"
|
|
homepage = "https://github.com/tikv/grpc-rs"
|
|
documentation = "https://docs.rs/grpcio-compiler"
|
|
description = "gRPC compiler for grpcio"
|
|
categories = ["network-programming"]
|
|
|
|
[features]
|
|
default = ["protobuf-codec"]
|
|
protobuf-codec = ["protobuf"]
|
|
prost-codec = ["prost-build", "prost-types", "prost", "derive-new", "tempfile"]
|
|
|
|
[dependencies]
|
|
protobuf = { version = "2", optional = true }
|
|
prost = { version = "0.7", optional = true }
|
|
prost-build = { version = "0.7", optional = true }
|
|
prost-types = { version = "0.7", optional = true }
|
|
derive-new = { version = "0.5", optional = true }
|
|
tempfile = { version = "3.0", optional = true }
|
|
|
|
[[bin]]
|
|
name = "grpc_rust_plugin"
|
|
required-features = ["protobuf-codec"]
|