Include "rand" in feature list for docs.rs

Random support was gated by the "rand" feature in version 0.25.1, but not added to the docs.rs list, causing the gated functions to disappear from docs.
This commit is contained in:
Jeff Petkau 2021-07-26 10:13:58 -07:00 committed by GitHub
parent 305f39faf8
commit 7dd12e8e7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -119,4 +119,4 @@ lto = true
[package.metadata.docs.rs]
# Enable certain features when building docs for docs.rs
features = [ "proptest-support", "compare", "macros" ]
features = [ "proptest-support", "compare", "macros", "rand" ]