#dfinity #canister #cdk #type #api-bindings

wf-cdk-bindgen

Internet Computer Binding Generator

3 releases

new 0.1.6 Apr 3, 2025
0.1.5 Apr 1, 2025
0.1.4 Mar 31, 2025

#118 in FFI

Download history 139/week @ 2025-03-26

139 downloads per month
Used in ic-test

Apache-2.0

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

  1. Canister project add ic-cdk-bindgen as a build dependency.
[build-dependencies]
ic-cdk-bindgen = "0.1"
  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
}
  1. In Canister code,
mod declarations;
use declarations::counter::counter;

counter.inc().await?

Dependencies

~5–14MB
~138K SLoC