We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec1a6ea + 8e991bc commit 911ebadCopy full SHA for 911ebad
Cargo.toml
@@ -21,6 +21,7 @@ features = ["docs"]
21
rustdoc-args = ["--cfg", "feature=\"docs\""]
22
23
[features]
24
+default = []
25
docs = ["unstable"]
26
unstable = ["broadcaster"]
27
src/lib.rs
@@ -41,6 +41,7 @@
41
//! features = ["unstable"]
42
//! ```
43
44
+#![cfg(feature = "default")]
45
#![cfg_attr(feature = "docs", feature(doc_cfg))]
46
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]
47
#![allow(clippy::mutex_atomic, clippy::module_inception)]
0 commit comments