128 releases

0.19.0 Jan 14, 2024
0.18.0 Sep 4, 2023
0.17.2 Jun 26, 2023
0.16.3 Feb 27, 2023
0.0.5 Nov 23, 2014

#201 in Encoding

Download history 14774/week @ 2024-01-22 17373/week @ 2024-01-29 16634/week @ 2024-02-05 16508/week @ 2024-02-12 18930/week @ 2024-02-19 19837/week @ 2024-02-26 21940/week @ 2024-03-04 23036/week @ 2024-03-11 22694/week @ 2024-03-18 17822/week @ 2024-03-25 19329/week @ 2024-04-01 21448/week @ 2024-04-08 25185/week @ 2024-04-15 22285/week @ 2024-04-22 25668/week @ 2024-04-29 31030/week @ 2024-05-06

104,489 downloads per month
Used in 71 crates (33 directly)

MIT license

1.5MB
30K SLoC

Cap'n Proto code generation for Rust

crates.io

documentation

The generated code depends on the capnproto-rust runtime library.

Code generation can be customized through the annotations defined in rust.capnp.


lib.rs:

Cap'n Proto Schema Compiler Plugin Library

This library allows you to do Cap'n Proto code generation within a Cargo build. You still need the capnp binary (implemented in C++). (If you use a package manager, try looking for a package called capnproto.)

In your Cargo.toml:

[dependencies]
capnp = "0.19" # Note this is a different library than capnp*c*

[build-dependencies]
capnpc = "0.19"

In your build.rs:

fn main() {
    capnpc::CompilerCommand::new()
        .src_prefix("schema")
        .file("schema/foo.capnp")
        .file("schema/bar.capnp")
        .run().expect("schema compiler command");
}

In your lib.rs:

mod foo_capnp {
    include!(concat!(env!("OUT_DIR"), "/foo_capnp.rs"));
}

mod bar_capnp {
    include!(concat!(env!("OUT_DIR"), "/bar_capnp.rs"));
}

This will be equivalent to executing the shell command

  capnp compile -orust:$OUT_DIR --src-prefix=schema schema/foo.capnp schema/bar.capnp

Dependencies