Skip to content
/ achan Public

A simple & convenient representation for any value

License

Notifications You must be signed in to change notification settings

konall/achan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

achan crates.io docs.rs

This crate provides a simple & convenient representation for any value:

enum Value {
    Null,
    Boolean(bool),
    Number(f64),
    String(String),
    List(Vec<Value>),
    Map(BTreeMap<String, Value>)
}

no_std

This crate is compatible with no_std environments, requiring only the alloc crate.

serde

Support for serialising/deserialising using the serde framework can be enabled via the serde feature.

WASM Component

This crate defines and implements a WIT API when the wasm-component feature is enabled, allowing it to be embedded in WASM applications.


About

A simple & convenient representation for any value

Resources

License

Stars

Watchers

Forks

Languages