#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]
#![deny(unsafe_code)]
#![warn(missing_docs)]
#![warn(clippy::missing_docs_in_private_items)]
#![forbid(unsafe_code)]
#[cfg(all(test, not(feature = "std")))]
#[macro_use]
extern crate std;
#[cfg(all(not(feature = "std"), feature = "alloc"))]
extern crate alloc;
#[cfg_attr(feature = "serde", macro_use)]
#[cfg(feature = "serde")]
extern crate serde;
pub mod axis;
#[cfg(feature = "std")]
#[doc(hidden)]
pub mod debug;
pub mod error;
pub mod geometry;
pub mod layout;
pub mod math;
pub mod node;
pub mod prelude;
pub mod style;
pub mod style_helpers;
pub mod tree;
#[cfg(feature = "random")]
pub mod randomizable;
mod compute;
mod data;
mod resolve;
mod sys;
pub use crate::compute::compute_layout;
pub use crate::node::Taffy;