achan/
lib.rs

1#![no_std]
2
3extern crate alloc;
4
5mod value;
6
7#[cfg(feature = "wasm-component")]
8mod bindings;
9#[cfg(feature = "wasm-component")]
10mod component;
11
12pub use value::Value;