#![no_std]
#![deny(missing_docs)]
mod error;
#[cfg(feature = "std")]
extern crate std as libstd;
#[cfg(not(feature = "alloc"))]
extern crate core as std;
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(feature = "alloc")]
extern crate core;
#[cfg(feature = "alloc")]
mod std {
pub use crate::{
alloc::{borrow, boxed, collections, string, vec},
core::{convert, fmt, hash, marker, mem, ops, result, str},
};
#[cfg(feature = "std")]
pub use libstd::error;
}
mod fragments;
mod value;
#[cfg(feature = "alloc")]
fn assert_static<T: 'static>(_: &mut T) {}
pub use self::{error::*, fragments::*, value::*};