docs: Add package.metadata.docs.rs

This is to enable `doc_auto_cfg` feature with Docs.rs.
This commit is contained in:
Shun Sakai 2024-05-18 09:42:23 +09:00
parent aa56c0a8be
commit 62788e213b
No known key found for this signature in database
GPG key ID: 36ED1E6026DC1056
2 changed files with 18 additions and 0 deletions

View file

@ -18,6 +18,23 @@ edition = "2021"
exclude = ["tests/**", "examples/**", ".github/**", "fuzz/**"]
build = "src/build.rs"
[package.metadata.docs.rs]
features = [
"aes-crypto",
"bzip2",
"chrono",
"deflate",
"deflate64",
"deflate-zlib-ng",
"lzma",
"time",
"zstd",
]
# Can be enabled when <https://github.com/zopfli-rs/zopfli/issues/42> is fixed
# all-features = true
no-default-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace.dependencies]
time = { version = "0.3.36", default-features = false }

View file

@ -25,6 +25,7 @@
//! | ZipCrypto deprecated encryption | ✅ | ✅ |
//!
//!
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![warn(missing_docs)]
#![allow(unexpected_cfgs)] // Needed for cfg(fuzzing) on nightly as of 2024-05-06
pub use crate::compression::{CompressionMethod, SUPPORTED_COMPRESSION_METHODS};