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

#166 in Encoding

Download history 16324/week @ 2024-01-25 16813/week @ 2024-02-01 15767/week @ 2024-02-08 19534/week @ 2024-02-15 17643/week @ 2024-02-22 23271/week @ 2024-02-29 21018/week @ 2024-03-07 23562/week @ 2024-03-14 20297/week @ 2024-03-21 16247/week @ 2024-03-28 22615/week @ 2024-04-04 23639/week @ 2024-04-11 23682/week @ 2024-04-18 22839/week @ 2024-04-25 31459/week @ 2024-05-02 21925/week @ 2024-05-09

105,504 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