blob: 30cb38ce4e81b4b986bdb1ade33fb2bd60d082bf [file] [log] [blame]
#![doc = include_str!("../README.md")]
/// Types related to parse errors
pub mod error;
/// Types related to cfg expressions
pub mod expr;
/// Types related to rustc targets
pub mod targets;
pub use error::ParseError;
pub use expr::{Expression, Predicate, TargetPredicate};
#[cfg(feature = "targets")]
pub use target_lexicon;