Skip to content

Commit e718f8b

Browse files
authored
docs: enable nightly-only docsrs (#76)
See rust-lang/rust#43781. This enables infoboxes like "Available on crate feature XXX only." in the documentation generated using `cargo doc` on nightly, or by building on docs.rs. This can be tested with: ```shell RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --no-deps --all-features ```
1 parent 19aac2d commit e718f8b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

flareon/Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ fake.workspace = true
5252
futures.workspace = true
5353
mockall.workspace = true
5454

55+
[package.metadata.docs.rs]
56+
all-features = true
57+
rustdoc-args = ["--cfg", "docsrs"]
58+
5559
[package.metadata.cargo-machete]
5660
ignored = [
5761
# askama doesn't seem to be working with minimal versions of its dependencies at the moment,

flareon/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
unused_import_braces,
4242
unused_qualifications
4343
)]
44+
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
4445

4546
extern crate self as flareon;
4647

0 commit comments

Comments
 (0)