//! CSS Feature Data
//!
//! This crate provides comprehensive data about CSS features and their browser support, based on the
//! [web-features](https://github.com/web-platform-dx/web-features) project.
//!
//! ## Example
//!
//! ```rust
//! use css_feature_data::CSSFeature;
//!
//! if let Some(data) = CSSFeature::by_property_name("flex-wrap") {
//! println!("flex-wrap status: {:?}", data.baseline_status);
//! println!("Chrome support: {:?}", data.browser_support.chrome);
//! }
//! ```
pub use *;
pub use *;
pub use *;
pub use *;