1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! Zero-dependency minimal JSON codec for no_std environments. //! //! Provides [JsonValue] for representing JSON data, [parse] for decoding, //! and [encode] for encoding. #![no_std] extern crate alloc; mod encode; mod error; mod parse; mod value; pub use error::{AccessError, EncodeError, ParseError, ParseErrorKind}; pub use encode::encode; pub use parse::parse; pub use value::JsonValue;