File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -55,13 +55,14 @@ jobs:
5555 if: matrix.build == 'stable'
5656
5757 rustfmt :
58- name : Rustfmt
58+ name : Rustfmt & Docs
5959 runs-on : ubuntu-latest
6060 steps :
6161 - uses : actions/checkout@v4
6262 - name : Install Rust
6363 run : rustup update stable && rustup default stable && rustup component add rustfmt
6464 - run : cargo fmt -- --check
65+ - run : cargo doc --all-features
6566
6667 wasm :
6768 name : WebAssembly
Original file line number Diff line number Diff line change 11[package ]
22name = " flate2"
33authors = [
" Alex Crichton <[email protected] >" ,
" Josh Triplett <[email protected] >" ]
4- version = " 1.0.29 "
4+ version = " 1.0.30 "
55edition = " 2018"
66license = " MIT OR Apache-2.0"
77readme = " README.md"
Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ mod c_backend {
403403 #[ cfg( feature = "zlib-ng" ) ]
404404 use libz_ng_sys as libz;
405405
406- #[ cfg( feature = "zlib-rs" ) ]
406+ #[ cfg( all ( not ( feature = "zlib-ng" ) , feature = "zlib- rs") ) ]
407407 use libz_rs_sys as libz;
408408
409409 #[ cfg( all( not( feature = "zlib-ng" ) , feature = "cloudflare_zlib" ) ) ]
@@ -443,7 +443,7 @@ mod c_backend {
443443
444444 #[ cfg( feature = "zlib-ng" ) ]
445445 const ZLIB_VERSION : & ' static str = "2.1.0.devel\0 " ;
446- #[ cfg( feature = "zlib-rs" ) ]
446+ #[ cfg( all ( not ( feature = "zlib-ng" ) , feature = "zlib- rs") ) ]
447447 const ZLIB_VERSION : & ' static str = "0.1.0\0 " ;
448448 #[ cfg( not( any( feature = "zlib-ng" , feature = "zlib-rs" ) ) ) ]
449449 const ZLIB_VERSION : & ' static str = "1.2.8\0 " ;
You can’t perform that action at this time.
0 commit comments