1 Star 0 Fork 0

Spgnulie/proto

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.rs 671 Bytes
一键复制 编辑 原始数据 按行查看 历史
Marc Nijdam 提交于 2021-02-11 16:00 . Fix rust build
use std::io::Result;
#[cfg(feature = "services")]
fn main() -> Result<()> {
tonic_build::configure()
.build_server(false)
.type_attribute(".", "#[derive(serde_derive::Serialize)]")
.compile(
&[
"src/blockchain_txn.proto",
"src/service/router.proto",
"src/service/gateway.proto",
],
&["src/"],
)?;
Ok(())
}
#[cfg(not(feature = "services"))]
fn main() -> Result<()> {
prost_build::Config::new()
.type_attribute(".", "#[derive(serde_derive::Serialize)]")
.compile_protos(&["src/blockchain_txn.proto"], &["src/"])?;
Ok(())
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/spgnulie/proto.git
git@gitee.com:spgnulie/proto.git
spgnulie
proto
proto
master

搜索帮助