hvm-core 0.2.26

HVM-Core is a massively parallel Interaction Combinator evaluator.
pub use alloc::{
  borrow::ToOwned,
  boxed::Box,
  format,
  string::{String, ToString},
  vec,
  vec::Vec,
};
pub use core::{fmt, hint, iter, mem, ptr};

#[cfg(feature = "std")]
pub use std::collections::{hash_map::Entry, HashMap as Map, HashSet as Set};

#[cfg(not(feature = "std"))]
pub use alloc::collections::{btree_map::Entry, BTreeMap as Map, BTreeSet as Set};

#[cfg(feature = "std")]
pub use std::error::Error;
#[cfg(feature = "std")]
pub use thiserror::Error;