style: fix Cargo warning re cfg(any())
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
parent
1e23caa003
commit
8eae69349e
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ fn main() {
|
|||
|
||||
const METHOD_STORED: Option<zip::CompressionMethod> = Some(zip::CompressionMethod::Stored);
|
||||
|
||||
#[cfg(any(feature = "_deflate-any"))]
|
||||
#[cfg(feature = "_deflate-any")]
|
||||
const METHOD_DEFLATED: Option<zip::CompressionMethod> = Some(zip::CompressionMethod::Deflated);
|
||||
#[cfg(not(feature = "_deflate-any"))]
|
||||
const METHOD_DEFLATED: Option<zip::CompressionMethod> = None;
|
||||
|
|
Loading…
Add table
Reference in a new issue