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