ron_wasm/
lib.rs

1// SPDX-FileCopyrightText: 2024 Shun Sakai
2//
3// SPDX-License-Identifier: Apache-2.0 OR MIT
4
5//! The `ron-wasm` crate is the Wasm bindings for [RON] (Rusty Object Notation).
6//!
7//! [RON]: https://github.com/ron-rs/ron
8
9#![doc(html_root_url = "https://docs.rs/ron-wasm/0.2.0/")]
10// Lint levels of rustc.
11#![deny(missing_docs)]
12
13mod parse;
14mod stringify;
15
16pub use crate::{parse::parse, stringify::stringify};