We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d323dd4 commit 10ee2eeCopy full SHA for 10ee2ee
Cargo.toml
@@ -16,6 +16,7 @@ version = "1.33.1"
16
17
[package.metadata.docs.rs]
18
all-features = true
19
+rustdoc-args = ["--cfg", "docsrs"]
20
21
[dependencies]
22
arbitrary = { default-features = false, optional = true, version = "1.0" }
src/lib.rs
@@ -2,6 +2,7 @@
2
#![forbid(unsafe_code)]
3
#![deny(clippy::print_stdout, clippy::print_stderr)]
4
#![cfg_attr(not(feature = "std"), no_std)]
5
+#![cfg_attr(docsrs, feature(doc_auto_cfg))]
6
extern crate alloc;
7
8
mod constants;
0 commit comments