#json-rpc #protobuf #json

pbjsonrpc-build

为 prost 消息类型生成 jsonrpsee trait

10个不稳定版本 (4个重大变更)

0.18.1 2024年1月5日
0.18.0 2023年10月20日
0.17.0 2023年4月20日
0.2.1 2022年11月26日
0.0.3 2022年6月4日

#1781编码

Download history 7/week @ 2024-03-11 34/week @ 2024-03-18 26/week @ 2024-04-01 2/week @ 2024-04-08 4/week @ 2024-05-06 14/week @ 2024-05-20 2/week @ 2024-05-27 53/week @ 2024-06-03 15/week @ 2024-06-10 7/week @ 2024-06-17 58/week @ 2024-06-24

每月下载量:133
2 个crate中使用(通过 lebai-proto

MIT 许可证

43KB
1K SLoC

Pbjsonrpc-build

自动为自动生成的 prost 类型生成 jsonrpsee Trait。

使用方法

[dependencies]
pbjson = "0.3"
pbjson-types = "0.3"
prost = "0.10"
prost-types = "0.10"

[build-dependencies]
pbjson-build = "0.3"
pbjsonrpc-build = "0"
prost-build = "0.10"

接下来创建一个包含以下内容的 build.rs

let root = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("protos");
let proto_files = vec![root.join("myproto.proto")];

// Tell cargo to recompile if any of these proto files are changed
for proto_file in &proto_files {
    println!("cargo:rerun-if-changed={}", proto_file.display());
}

let descriptor_path = PathBuf::from(env::var("OUT_DIR").unwrap())
    .join("proto_descriptor.bin");

prost_build::Config::new()
    // Save descriptors to file
    .file_descriptor_set_path(&descriptor_path)
    // Override prost-types with pbjson-types
    .compile_well_known_types()
    .extern_path(".google.protobuf", "::pbjson_types")
    // Generate prost structs
    .compile_protos(&proto_files, &[root])?;

let descriptor_set = std::fs::read(descriptor_path)?;
pbjson_build::Builder::new()
    .register_descriptors(&descriptor_set)?
    .build(&[".mypackage"])?;
pbjsonrpc_build::Builder::new()
    .register_descriptors(&descriptor_set)?
    .build(&[".mypackage"])?;

最后在 lib.rs

/// Generated by [`prost-build`]
include!(concat!(env!("OUT_DIR"), "/mypackage.rs"));
/// Generated by [`pbjson-build`]
include!(concat!(env!("OUT_DIR"), "/mypackage.serde.rs"));
/// Generated by [`pbjsonrpc-build`]
include!(concat!(env!("OUT_DIR"), "/mypackage.jsonrpc.rs"));

依赖关系

~1MB
~17K SLoC