candid_parser 0.3.1

Candid is an interface description language (IDL) for interacting with canisters running on the Internet Computer. This crate contains the parser and the binding generator for Candid.
Documentation
1
2
3
4
5
6
7
8
//! Candid bindings for different languages.
// This module assumes the input are type checked, it is safe to use unwrap.

pub mod analysis;
pub mod javascript;
pub mod motoko;
pub mod rust;
pub mod typescript;