"Doesn't that box need some..." <- Thank you! I've seen this as well but as far as i underststand things here, it should be sufficient to add ```rust #![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] ``` in `lib.rs` and generate docs with ``` ```toml [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] ``` in `Cargo.toml`, and to generate docs like: ``` ```