// Copyright (C) 2020 - 2022, J2 Innovations
//! Haystack library
//!
//! Rust Implementation of the [Haystack 4](https://project-haystack.org/) specification for [types](crate::val),
//! [filter](crate::filter), [units](crate::units), and [encoding/decoding](crate::encoding).
//!
//! The library exposes the [Value](crate::val::value::Value) fundamental type that is used throughout the library
//! APIs. The more granular types are also provided for Haystack's type model.
pub use *;
extern crate web_sys;
extern crate console_error_panic_hook;
use *;