We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da7de81 commit 48af0eeCopy full SHA for 48af0ee
primitives/src/lib.rs
@@ -46,6 +46,11 @@ pub mod sentry;
46
pub mod spender;
47
pub mod supermarket;
48
pub mod targeting;
49
+// It's not possible to enable this feature for doctest,
50
+// so we always must pass `--feature=test-util` or `--all-features` when running doctests:
51
+// `cargo test --doc --all-features`
52
+//
53
+// See issue: <https://github.com/rust-lang/rust/issues/67295>
54
#[cfg(any(test, feature = "test-util"))]
55
#[cfg_attr(docsrs, doc(cfg(feature = "test-util")))]
56
pub mod test_util;
0 commit comments