Disallow regressing crate docs

This commit is contained in:
Aleksey Kladov 2019-11-12 15:41:02 +03:00
parent d09e5a3d9e
commit 30bf7e43db
3 changed files with 49 additions and 10 deletions

View file

@ -1,11 +1,12 @@
//! ra_cfg defines conditional compiling options, `cfg` attibute parser and evaluator
mod cfg_expr;
use std::iter::IntoIterator;
use ra_syntax::SmolStr;
use rustc_hash::FxHashSet;
mod cfg_expr;
pub use cfg_expr::{parse_cfg, CfgExpr};
/// Configuration options used for conditional compilition on items with `cfg` attributes.