3 releases
new 0.1.6 | Apr 3, 2025 |
---|---|
0.1.5 | Apr 1, 2025 |
0.1.4 | Mar 31, 2025 |
#118 in FFI
139 downloads per month
Used in ic-test
41KB
968 lines
wf-cdk-bindgen
DISCLAIMER
This is a temporary fork of the ic-cdk-bindgen. Once the necessary changes are propagated into the original project, this crate will no longer be required.
About project
Generate Rust bindings from Candid to make inter-canister calls.
How to use
- Canister project add
ic-cdk-bindgen
as a build dependency.
[build-dependencies]
ic-cdk-bindgen = "0.1"
- Add
build.rs
to generate Rust bindings in the source directory with config options.
use ic_cdk_bindgen::{Builder, Config};
fn main() {
let counter = Config::new("counter");
let mut builder = Builder::new();
builder.add(counter);
builder.build(None); // default write to src/declarations
}
- In Canister code,
mod declarations;
use declarations::counter::counter;
counter.inc().await?
Dependencies
~5–14MB
~138K SLoC