Skip to content

Commit dea9e19

Browse files
committed
fix(doc): un-break docs.rs build
the `doc_auto_cfg` feature has been merged into `doc_cfg` [1], and this is breaking building vm-memory documentation on docs.rs [2]. [1]: rust-lang/rust#138907 [2]: https://docs.rs/crate/vm-memory/0.17.0/builds/2564760 Signed-off-by: Patrick Roy <[email protected]>
1 parent 17b714c commit dea9e19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#![warn(clippy::doc_markdown)]
1919
#![warn(missing_docs)]
2020
#![warn(missing_debug_implementations)]
21-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
21+
#![cfg_attr(docsrs, feature(doc_cfg))]
2222

2323
// We only support 64bit. Fail build when attempting to build other targets
2424
#[cfg(not(target_pointer_width = "64"))]

0 commit comments

Comments
 (0)