Crates.io | wf-cdk-bindgen |
lib.rs | wf-cdk-bindgen |
version | 0.1.8 |
created_at | 2025-03-31 21:29:09.236086+00 |
updated_at | 2025-08-25 22:51:10.17382+00 |
description | Internet Computer Binding Generator. |
homepage | |
repository | https://github.com/wasm-forge/wf-cdk-bindgen |
max_upload_size | |
id | 1614022 |
size | 84,970 |
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.
Generate Rust bindings from Candid to make inter-canister calls.
ic-cdk-bindgen
as a build dependency.[build-dependencies]
ic-cdk-bindgen = "0.1"
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
}
mod declarations;
use declarations::counter::counter;
counter.inc().await?