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:
55
55
if: matrix.build == 'stable'
56
56
57
57
rustfmt :
58
- name : Rustfmt
58
+ name : Rustfmt & Docs
59
59
runs-on : ubuntu-latest
60
60
steps :
61
61
- uses : actions/checkout@v4
62
62
- name : Install Rust
63
63
run : rustup update stable && rustup default stable && rustup component add rustfmt
64
64
- run : cargo fmt -- --check
65
+ - run : cargo doc --all-features
65
66
66
67
wasm :
67
68
name : WebAssembly
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " flate2"
3
3
authors = [
" Alex Crichton <[email protected] >" ,
" Josh Triplett <[email protected] >" ]
4
- version = " 1.0.29 "
4
+ version = " 1.0.30 "
5
5
edition = " 2018"
6
6
license = " MIT OR Apache-2.0"
7
7
readme = " README.md"
Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ mod c_backend {
403
403
#[ cfg( feature = "zlib-ng" ) ]
404
404
use libz_ng_sys as libz;
405
405
406
- #[ cfg( feature = "zlib-rs" ) ]
406
+ #[ cfg( all ( not ( feature = "zlib-ng" ) , feature = "zlib- rs") ) ]
407
407
use libz_rs_sys as libz;
408
408
409
409
#[ cfg( all( not( feature = "zlib-ng" ) , feature = "cloudflare_zlib" ) ) ]
@@ -443,7 +443,7 @@ mod c_backend {
443
443
444
444
#[ cfg( feature = "zlib-ng" ) ]
445
445
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") ) ]
447
447
const ZLIB_VERSION : & ' static str = "0.1.0\0 " ;
448
448
#[ cfg( not( any( feature = "zlib-ng" , feature = "zlib-rs" ) ) ) ]
449
449
const ZLIB_VERSION : & ' static str = "1.2.8\0 " ;
You can’t perform that action at this time.
0 commit comments