lewp-css 0.2.0

Domain model for CSS Stylesheets. Allowing effective minification and transformations such as autoprefixing and removal by other crates. Updated and maintained version for lewp.
Documentation
// This file is part of css. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/css/master/COPYRIGHT. No part of predicator, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
// Copyright © 2017 The developers of css. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/css/master/COPYRIGHT.

//use {
//    self::{
//        atRules::{
//            counterStyle::*,
//            document::*,
//            fontFace::*,
//            fontFeatureValues::*,
//            import::*,
//            keyframes::*,
//            media::*,
//            namespace::*,
//            page::*,
//            supports::*,
//            viewport::*,
//            VendorPrefixedAtRule,
//        },
//        expressions::*,
//        numbers::*,
//        properties::*,
//        units::*,
//    },
//    super::{
//        parsers::{separators::*, NestedRuleParser},
//        *,
//    },
//    precomputed_hash::PrecomputedHash,
//    std::{
//        borrow::{Borrow, Cow},
//        cmp::{Eq, Ord, Ordering, PartialEq, PartialOrd},
//        collections::hash_map::DefaultHasher,
//        convert::From,
//        fmt::{self, Display, Formatter},
//        hash::{Hash, Hasher},
//        ops::Deref,
//        str::FromStr,
//    },
//};

mod atom;
mod counter_style_ident;
mod css_rule;
mod css_rule_type;
mod css_rules;
mod custom_ident;
#[macro_use]
mod define_css_keyword_enum;
mod has_css_rules;
mod has_property_declarations;
mod has_vendor_prefix;
mod rules_mutate_error;
mod specified_url;
mod style_rule;
mod vendor_prefix;

pub use {
    atom::Atom,
    counter_style_ident::CounterStyleIdent,
    css_rule::CssRule,
    css_rule_type::CssRuleType,
    css_rules::CssRules,
    custom_ident::CustomIdent,
    define_css_keyword_enum::*,
    has_css_rules::HasCssRules,
    has_property_declarations::HasPropertyDeclarations,
    has_vendor_prefix::HasVendorPrefix,
    rules_mutate_error::RulesMutateError,
    specified_url::SpecifiedUrl,
    style_rule::StyleRule,
    vendor_prefix::VendorPrefix,
};

pub mod at_rules;
pub mod expressions;
pub mod numbers;
pub mod properties;
pub mod selectors;
pub mod units;