achan 0.2.0

A simple & convenient representation for any value
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]

extern crate alloc;

mod value;

#[cfg(feature = "wasm-component")]
mod bindings;
#[cfg(feature = "wasm-component")]
mod component;

pub use value::Value;