#![crate_name = "arachnid"]
#![crate_type = "lib"]
#![allow(
clippy::missing_errors_doc,
clippy::missing_safety_doc,
clippy::module_inception,
clippy::needless_doctest_main,
clippy::should_implement_trait,
clippy::upper_case_acronyms
)]
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(all(feature = "alloc", feature = "nightly"), feature(allocator_api))]
#[cfg(not(any(feature = "std", feature = "alloc")))]
compile_error! { "either the \"std\" or \"alloc\" feature must be enabled" }
#[cfg(feature = "alloc")]
extern crate alloc;
#[doc(inline)]
#[cfg(feature = "net")]
pub use arachnid_net as net;
#[doc(inline)]
pub use arachnid_core::*;
#[doc(hidden)]
#[allow(unused_imports)]
pub mod prelude {
pub use arachnid_core::prelude::*;
#[cfg(feature = "net")]
pub use arachnid_net::prelude::*;
}