1#![doc = include_str!("../README.md")]
2
3/// Types related to parse errors
4pub mod error;
5/// Types related to cfg expressions
6pub mod expr;
7/// Types related to rustc targets
8pub mod targets;
9
10pub use error::ParseError;
11pub use expr::{Expression, Predicate, TargetPredicate};
12
13#[cfg(feature = "targets")]
14pub use target_lexicon;
15