Andrew
2293b32cce
Update libdeflater
2023-09-27 09:16:24 +13:00
Vladyslav Vladinov
708a019ce2
Added support for glob patterns in quotes ( #536 )
...
Added support for glob patterns in windows paths with spaces that
surrounded with quotes
closes #373
2023-07-31 11:35:00 -04:00
Andrew
b4e98a4dd1
Switch from stderrlog to env_logger
2023-07-14 14:11:07 -04:00
Josh Holmer
31e796c4e8
Revert "Provide BufferedZopfliDeflater and allow user to pass in a custom Deflater ( #530 )"
...
This reverts commit 2a59419bdf .
2023-07-09 13:40:20 -04:00
Josh Holmer
2a59419bdf
Provide BufferedZopfliDeflater and allow user to pass in a custom Deflater ( #530 )
...
* Add .whitesource configuration file
* Experimental: allow Zopfli to use any size BufWriter
* Allow user to specify the output buffer size as well
* Allow user to specify maximum block splits
* Reformat and fix warnings
* Use deflater on iCCP chunk as well
* Bug fix: need to implement Zlib format
* Make functions const when possible
* Switch to using zopfli::Options in prep for https://github.com/zopfli-rs/zopfli/pull/21
* Switch to using zopfli::Options in prep for https://github.com/zopfli-rs/zopfli/pull/21
* Cargo fmt
* Fix compilation
* Fix tests
* Fix more lints
* Fix more lints
* Fix compilation more
---------
Co-authored-by: mend-bolt-for-github[bot] <42819689+mend-bolt-for-github[bot]@users.noreply.github.com>
Co-authored-by: Chris Hennick <hennickc@amazon.com>
Co-authored-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
2023-07-07 22:35:01 -04:00
andrews05
798fdfe24c
Update rust and dependencies ( #525 )
...
* Bump rust version
* Update Clap to v4
* Update other dependencies
2023-06-25 14:24:23 -04:00
Alejandro González
12761bbfb1
Update Zopfli and several other depenencies ( #512 )
...
* Update Zopfli and several other depenencies
I've just published a new Zopfli release, v0.7.3, which includes several
new features and internal refactors. Performance should be a tad bit
better, but I didn't test it throughly, so YMMV. Perhaps more
importantly for OxiPNG, its dependency tree is smaller, and
Gzip-exclusive compression code can be excluded at compile time thanks
to new feature switches. As I mentioned on
https://github.com/shssoichiro/oxipng/pull/495#issuecomment-1552669505 ,
I plan on delivering more significant Zopfli performance improvements at
some point, but for now I think it's good to give the new release more
real-world usage and testing 😄
While at it, I've upgraded other dependencies that are not
performance-critical to their latest semver-compatible versions. This
excludes `libdeflater` on purpose, as its performance characteristics
are said to be somewhat different.
* Update Zopfli to v0.7.4
v0.7.3 was superseeded shortly after v0.7.3 was released to address a
last minute change to the new API it introduced. OxiPNG is not affected
by this, but I think it's good practice to update Zopfli anyway.
2023-05-28 13:45:46 -04:00
Josh Holmer
a234c39e41
Fix new annoyingly pedantic clippy warnings
2023-04-22 22:25:59 -04:00
Josh Holmer
95d521c81b
Version 8.0.0
deploy / create-windows-binaries (x86_64) (push) Has been cancelled
deploy / create-unix-binaries (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
deploy / create-unix-binaries (ubuntu-latest, x86_64-unknown-linux-musl) (push) Has been cancelled
deploy / deploy (push) Has been cancelled
2022-12-24 09:19:15 -05:00
Josh Holmer
19be14021b
Version 7.0.0
deploy / create-windows-binaries (x86_64) (push) Has been cancelled
deploy / create-unix-binaries (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
deploy / create-unix-binaries (ubuntu-latest, x86_64-unknown-linux-musl) (push) Has been cancelled
deploy / deploy (push) Has been cancelled
2022-12-07 14:17:15 -05:00
andrews05
a41d7de348
New filter strategies ( #461 )
...
* Refactor filters as enum
* Include filter byte in filter output
* Add entropy filter
* Add bigrams filter
* Add bigram entropy filter
* Add brute filter
* Replace bit-vec
* Add tests and benches
* Show filters in help
* Use FxHasher in color to palette
* Use windows function for minor improvement
2022-11-19 08:49:25 -05:00
andrews05
446c788eb3
Full switch to Libdeflater ( #457 )
...
* Switch main compressor to libdeflate
* Use libdeflater in evaluate
* Use libdeflater to inflate
* Use libdeflater crc
* Tidy up
* Fix benches
* Allow libdeflater/freestanding feature
* Fix building without zopfli
2022-11-01 09:02:08 -04:00
andrews05
f688d20fe6
Allow setting libdeflate compression level ( #455 )
...
* Allow --zc with libdeflater
* Update libdeflater
* Allocate sufficient space for libdefate
2022-10-28 21:54:04 -04:00
Alejandro González
9aa27a75bd
Bump dependencies. Fix Zopfli mode generating corrupt images sometimes
2022-09-07 11:50:33 -04:00
Josh Holmer
5810ae4f49
Version 6.0.0 ( #448 )
deploy / create-windows-binaries (x86_64) (push) Has been cancelled
deploy / create-unix-binaries (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
deploy / create-unix-binaries (ubuntu-latest, x86_64-unknown-linux-musl) (push) Has been cancelled
deploy / deploy (push) Has been cancelled
2022-09-05 13:05:52 -04:00
Alejandro González
94ba8b70b3
Update and optimize dependencies ( #445 )
...
* Update and optimize dependencies
These changes update the dependencies to their latest versions, fixing
some known issues that prevented doing so in the first place.
In addition, the direct dependency on byteorder was dropped in favor
of stdlib functions that have been stabilized for some time in Rust, and
the transitive dependency on chrono, pulled by stderrlog, was also
dropped, which had been affected by security issues and improperly
maintained in the past:
- https://github.com/cardoe/stderrlog-rs/issues/31
- https://www.reddit.com/r/rust/comments/ts84n4/chrono_or_time_03/
* Run rustfmt
* Bump MSRV to 1.56.1
Updating to this patch version should not be cumbersome for end-users,
and it is required by a transitive dependency.
* Bump MSRV to 1.57.0
os_str_bytes requires it.
2022-09-05 12:37:47 -04:00
dependabot[bot]
e5d1c7dbaa
Bump thread_local from 1.0.1 to 1.1.4
...
Bumps [thread_local](https://github.com/Amanieu/thread_local-rs ) from 1.0.1 to 1.1.4.
- [Release notes](https://github.com/Amanieu/thread_local-rs/releases )
- [Commits](https://github.com/Amanieu/thread_local-rs/compare/v1.0.1...1.1.4 )
---
updated-dependencies:
- dependency-name: thread_local
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2022-07-06 08:56:21 +00:00
Matt Riggott
703a25efad
Update stderrlog dependency to v0.5.1
...
Oxipng has an optional dependency on stderrlog, which itself has a
dependency on thread_local. Versions of thread_local < 1.1.4 have a
vulnerability caused by a data race in Iter and IterMut. Updating to
stderrlog v0.5.1 ensures that Oxipng uses a patched version of
thread_local.
https://rustsec.org/advisories/RUSTSEC-2022-0006.html
2022-07-05 10:28:12 -04:00
Rémi Lauzier
7ffbe1fb78
Update dependency and replace deprecated function
2022-03-14 09:21:22 -04:00
Josh Holmer
ece9787822
Bump all dependencies
2022-01-12 02:47:59 -05:00
Josh Holmer
c888142bcb
Version 5.0.1
deploy / create-windows-binaries (x86_64) (push) Has been cancelled
deploy / create-unix-binaries (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
deploy / create-unix-binaries (ubuntu-latest, x86_64-unknown-linux-musl) (push) Has been cancelled
deploy / deploy (push) Has been cancelled
2021-11-15 11:42:06 -05:00
Josh Holmer
8053211bf4
Version 5.0.0
deploy / create-windows-binaries (x86_64) (push) Has been cancelled
deploy / create-unix-binaries (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
deploy / create-unix-binaries (ubuntu-latest, x86_64-unknown-linux-musl) (push) Has been cancelled
deploy / deploy (push) Has been cancelled
2021-07-12 00:06:19 -04:00
Josh Holmer
bd432c470d
Bump minimum rustc to 1.46, required by crc 2.0
2021-07-11 23:54:29 -04:00
Josh Holmer
d089176030
Bump dependencies
2021-07-11 23:42:12 -04:00
Moe
40a88f57f7
initial implementation of timestamp preservation #166 ( #360 )
...
Closes #166
2021-07-11 23:34:10 -04:00
dependabot-preview[bot]
ef3bb7444b
Bump image from 0.23.13 to 0.23.14
...
Bumps [image](https://github.com/image-rs/image ) from 0.23.13 to 0.23.14.
- [Release notes](https://github.com/image-rs/image/releases )
- [Changelog](https://github.com/image-rs/image/blob/master/CHANGES.md )
- [Commits](https://github.com/image-rs/image/compare/v0.23.13...v0.23.14 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-03-03 10:45:52 +00:00
dependabot-preview[bot]
6c7c067662
Bump libc from 0.2.86 to 0.2.87
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.86 to 0.2.87.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.86...0.2.87 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-03-02 10:49:32 +00:00
dependabot-preview[bot]
19eff4755b
Bump adler from 1.0.1 to 1.0.2
...
Bumps [adler](https://github.com/jonas-schievink/adler ) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/jonas-schievink/adler/releases )
- [Changelog](https://github.com/jonas-schievink/adler/blob/master/CHANGELOG.md )
- [Commits](https://github.com/jonas-schievink/adler/compare/v1.0.1...v1.0.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-03-01 15:48:51 +00:00
dependabot-preview[bot]
eb7c5be7cc
Bump crossbeam-epoch from 0.9.2 to 0.9.3
...
Bumps [crossbeam-epoch](https://github.com/crossbeam-rs/crossbeam ) from 0.9.2 to 0.9.3.
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases )
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-epoch-0.9.2...crossbeam-epoch-0.9.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-03-01 15:31:13 +00:00
dependabot-preview[bot]
6fe1fb39fb
Bump crossbeam-utils from 0.8.2 to 0.8.3
...
Bumps [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam ) from 0.8.2 to 0.8.3.
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases )
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-utils-0.8.2...crossbeam-utils-0.8.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-02-26 11:05:09 +00:00
dependabot-preview[bot]
0be3631788
Bump miniz_oxide from 0.4.3 to 0.4.4
...
Bumps [miniz_oxide](https://github.com/Frommi/miniz_oxide ) from 0.4.3 to 0.4.4.
- [Release notes](https://github.com/Frommi/miniz_oxide/releases )
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Frommi/miniz_oxide/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-02-26 10:53:40 +00:00
dependabot-preview[bot]
f44b5aa2d0
Bump bytemuck from 1.5.0 to 1.5.1
...
Bumps [bytemuck](https://github.com/Lokathor/bytemuck ) from 1.5.0 to 1.5.1.
- [Release notes](https://github.com/Lokathor/bytemuck/releases )
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md )
- [Commits](https://github.com/Lokathor/bytemuck/compare/v1.5.0...v1.5.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-02-24 20:00:55 +00:00
dependabot-preview[bot]
c6337398df
Bump cc from 1.0.66 to 1.0.67
...
Bumps [cc](https://github.com/alexcrichton/cc-rs ) from 1.0.66 to 1.0.67.
- [Release notes](https://github.com/alexcrichton/cc-rs/releases )
- [Commits](https://github.com/alexcrichton/cc-rs/compare/1.0.66...1.0.67 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-02-24 19:47:22 +00:00
dependabot-preview[bot]
b0c6c4195e
Bump crossbeam-utils from 0.8.1 to 0.8.2
...
Bumps [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam ) from 0.8.1 to 0.8.2.
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases )
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-utils-0.8.1...crossbeam-utils-0.8.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-02-24 19:30:15 +00:00
dependabot-preview[bot]
5c1e2636c2
Bump crossbeam-epoch from 0.9.1 to 0.9.2
...
Bumps [crossbeam-epoch](https://github.com/crossbeam-rs/crossbeam ) from 0.9.1 to 0.9.2.
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases )
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-epoch-0.9.1...crossbeam-epoch-0.9.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-02-24 19:08:21 +00:00
dependabot-preview[bot]
f8e4a8b170
Bump libc from 0.2.85 to 0.2.86
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.85 to 0.2.86.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.85...0.2.86 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-02-09 10:55:52 +00:00
dependabot-preview[bot]
aaee0a6a2e
Bump image from 0.23.12 to 0.23.13
...
Bumps [image](https://github.com/image-rs/image ) from 0.23.12 to 0.23.13.
- [Release notes](https://github.com/image-rs/image/releases )
- [Changelog](https://github.com/image-rs/image/blob/master/CHANGES.md )
- [Commits](https://github.com/image-rs/image/compare/v0.23.12...v0.23.13 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-02-05 10:49:02 +00:00
dependabot-preview[bot]
9abb757c31
Bump libc from 0.2.84 to 0.2.85
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.84 to 0.2.85.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.84...0.2.85 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-02-02 10:46:31 +00:00
dependabot-preview[bot]
da78af20ac
Bump libc from 0.2.83 to 0.2.84
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.83 to 0.2.84.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-29 10:30:31 +00:00
dependabot-preview[bot]
dddcffb633
Bump libc from 0.2.82 to 0.2.83
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.82 to 0.2.83.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.82...0.2.83 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-28 10:45:08 +00:00
dependabot-preview[bot]
c73a6b4a83
Bump log from 0.4.13 to 0.4.14
...
Bumps [log](https://github.com/rust-lang/log ) from 0.4.13 to 0.4.14.
- [Release notes](https://github.com/rust-lang/log/releases )
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/log/compare/0.4.13...0.4.14 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-27 10:31:40 +00:00
dependabot-preview[bot]
db289689b8
Bump hermit-abi from 0.1.17 to 0.1.18
...
Bumps [hermit-abi](https://github.com/hermitcore/libhermit-rs ) from 0.1.17 to 0.1.18.
- [Release notes](https://github.com/hermitcore/libhermit-rs/releases )
- [Commits](https://github.com/hermitcore/libhermit-rs/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-18 11:29:28 +00:00
dependabot-preview[bot]
b2bb4e1888
Bump rustc_version from 0.3.2 to 0.3.3
...
Bumps [rustc_version](https://github.com/Kimundi/rustc-version-rs ) from 0.3.2 to 0.3.3.
- [Release notes](https://github.com/Kimundi/rustc-version-rs/releases )
- [Commits](https://github.com/Kimundi/rustc-version-rs/compare/v0.3.2...v0.3.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-18 11:16:13 +00:00
dependabot-preview[bot]
618da006a5
Bump bytemuck from 1.4.1 to 1.5.0
...
Bumps [bytemuck](https://github.com/Lokathor/bytemuck ) from 1.4.1 to 1.5.0.
- [Release notes](https://github.com/Lokathor/bytemuck/releases )
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md )
- [Commits](https://github.com/Lokathor/bytemuck/compare/v1.4.1...v1.5.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-14 11:03:21 +00:00
dependabot-preview[bot]
228c43890f
Bump rustc_version from 0.3.0 to 0.3.2
...
Bumps [rustc_version](https://github.com/Kimundi/rustc-version-rs ) from 0.3.0 to 0.3.2.
- [Release notes](https://github.com/Kimundi/rustc-version-rs/releases )
- [Commits](https://github.com/Kimundi/rustc-version-rs/compare/v0.3.0...v0.3.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-12 11:04:13 +00:00
dependabot-preview[bot]
f71ed29e96
Bump log from 0.4.11 to 0.4.13
...
Bumps [log](https://github.com/rust-lang/log ) from 0.4.11 to 0.4.13.
- [Release notes](https://github.com/rust-lang/log/releases )
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/log/compare/0.4.11...0.4.13 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-11 11:54:45 +00:00
dependabot-preview[bot]
9d55331980
Bump byteorder from 1.3.4 to 1.4.2
...
Bumps [byteorder](https://github.com/BurntSushi/byteorder ) from 1.3.4 to 1.4.2.
- [Release notes](https://github.com/BurntSushi/byteorder/releases )
- [Changelog](https://github.com/BurntSushi/byteorder/blob/master/CHANGELOG.md )
- [Commits](https://github.com/BurntSushi/byteorder/compare/1.3.4...1.4.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-11 11:41:50 +00:00
dependabot-preview[bot]
0b4221d7f3
Bump stderrlog from 0.5.0 to 0.5.1
...
Bumps [stderrlog](https://github.com/cardoe/stderrlog-rs ) from 0.5.0 to 0.5.1.
- [Release notes](https://github.com/cardoe/stderrlog-rs/releases )
- [Changelog](https://github.com/cardoe/stderrlog-rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/cardoe/stderrlog-rs/compare/v0.5.0...v0.5.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-11 11:26:03 +00:00
dependabot-preview[bot]
12f412d915
Bump libc from 0.2.81 to 0.2.82
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.81 to 0.2.82.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.81...0.2.82 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-08 11:08:15 +00:00
dependabot-preview[bot]
7ea5c4d38c
Bump const_fn from 0.4.4 to 0.4.5
...
Bumps [const_fn](https://github.com/taiki-e/const_fn ) from 0.4.4 to 0.4.5.
- [Release notes](https://github.com/taiki-e/const_fn/releases )
- [Changelog](https://github.com/taiki-e/const_fn/blob/master/CHANGELOG.md )
- [Commits](https://github.com/taiki-e/const_fn/compare/v0.4.4...v0.4.5 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-06 12:52:24 +00:00
dependabot-preview[bot]
b45ab40b21
Bump semver-parser from 0.10.1 to 0.10.2
...
Bumps [semver-parser](https://github.com/steveklabnik/semver-parser ) from 0.10.1 to 0.10.2.
- [Release notes](https://github.com/steveklabnik/semver-parser/releases )
- [Commits](https://github.com/steveklabnik/semver-parser/commits/v0.10.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-01-06 12:40:52 +00:00
Josh Holmer
dea23211ae
Version 4.0.3
deploy / create-windows-binaries (x86_64) (push) Has been cancelled
deploy / create-unix-binaries (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
deploy / create-unix-binaries (ubuntu-latest, x86_64-unknown-linux-musl) (push) Has been cancelled
deploy / deploy (push) Has been cancelled
2021-01-04 16:12:57 -05:00
dependabot-preview[bot]
17a8c79e21
Bump itertools from 0.9.0 to 0.10.0
...
Bumps [itertools](https://github.com/bluss/rust-itertools ) from 0.9.0 to 0.10.0.
- [Release notes](https://github.com/bluss/rust-itertools/releases )
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md )
- [Commits](https://github.com/bluss/rust-itertools/compare/v0.9.0...v0.10.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-29 08:10:23 -05:00
dependabot-preview[bot]
9c55fcfcbf
Bump indexmap from 1.6.0 to 1.6.1
...
Bumps [indexmap](https://github.com/bluss/indexmap ) from 1.6.0 to 1.6.1.
- [Release notes](https://github.com/bluss/indexmap/releases )
- [Commits](https://github.com/bluss/indexmap/compare/1.6.0...1.6.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-15 10:46:41 +00:00
dependabot-preview[bot]
7744335020
Bump const_fn from 0.4.3 to 0.4.4
...
Bumps [const_fn](https://github.com/taiki-e/const_fn ) from 0.4.3 to 0.4.4.
- [Release notes](https://github.com/taiki-e/const_fn/releases )
- [Changelog](https://github.com/taiki-e/const_fn/blob/master/CHANGELOG.md )
- [Commits](https://github.com/taiki-e/const_fn/compare/v0.4.3...v0.4.4 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-10 10:44:16 +00:00
dependabot-preview[bot]
a9651788b2
Bump png from 0.16.7 to 0.16.8
...
Bumps [png](https://github.com/image-rs/image-png ) from 0.16.7 to 0.16.8.
- [Release notes](https://github.com/image-rs/image-png/releases )
- [Changelog](https://github.com/image-rs/image-png/blob/master/CHANGES.md )
- [Commits](https://github.com/image-rs/image-png/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-09 10:59:31 +00:00
dependabot-preview[bot]
9c2b9dc40f
Bump libc from 0.2.80 to 0.2.81
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.80 to 0.2.81.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.80...0.2.81 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-07 10:36:25 +00:00
dependabot-preview[bot]
257390e78c
Bump bit-vec from 0.6.2 to 0.6.3
...
Bumps [bit-vec](https://github.com/contain-rs/bit-vec ) from 0.6.2 to 0.6.3.
- [Release notes](https://github.com/contain-rs/bit-vec/releases )
- [Commits](https://github.com/contain-rs/bit-vec/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-04 15:57:50 +00:00
dependabot-preview[bot]
f1675828d9
Bump cc from 1.0.65 to 1.0.66
...
Bumps [cc](https://github.com/alexcrichton/cc-rs ) from 1.0.65 to 1.0.66.
- [Release notes](https://github.com/alexcrichton/cc-rs/releases )
- [Commits](https://github.com/alexcrichton/cc-rs/compare/1.0.65...1.0.66 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-12-04 10:50:47 +00:00
Josh Holmer
ff3787781e
Version 4.0.2
deploy / create-windows-binaries (i686) (push) Has been cancelled
deploy / create-windows-binaries (x86_64) (push) Has been cancelled
deploy / create-unix-binaries (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
deploy / create-unix-binaries (ubuntu-latest, x86_64-unknown-linux-musl) (push) Has been cancelled
deploy / deploy (push) Has been cancelled
2020-11-27 13:18:48 -05:00
dependabot-preview[bot]
3460116d3b
Bump libdeflater from 0.6.0 to 0.7.1
...
Bumps [libdeflater](https://github.com/adamkewley/libdeflater ) from 0.6.0 to 0.7.1.
- [Release notes](https://github.com/adamkewley/libdeflater/releases )
- [Commits](https://github.com/adamkewley/libdeflater/compare/0.6.0...0.7.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-26 08:50:21 -05:00
dependabot-preview[bot]
194e82433a
Bump crossbeam-epoch from 0.9.0 to 0.9.1
...
Bumps [crossbeam-epoch](https://github.com/crossbeam-rs/crossbeam ) from 0.9.0 to 0.9.1.
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases )
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-epoch-0.9.0...crossbeam-epoch-0.9.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-26 11:12:57 +00:00
dependabot-preview[bot]
4de40cfa9b
Bump crossbeam-utils from 0.8.0 to 0.8.1
...
Bumps [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam ) from 0.8.0 to 0.8.1.
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases )
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md )
- [Commits](https://github.com/crossbeam-rs/crossbeam/compare/crossbeam-utils-0.8.0...crossbeam-utils-0.8.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-26 10:56:54 +00:00
dependabot-preview[bot]
6f6740ecee
Bump cc from 1.0.63 to 1.0.65
...
Bumps [cc](https://github.com/alexcrichton/cc-rs ) from 1.0.63 to 1.0.65.
- [Release notes](https://github.com/alexcrichton/cc-rs/releases )
- [Commits](https://github.com/alexcrichton/cc-rs/compare/1.0.63...1.0.65 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-23 10:45:43 +00:00
dependabot-preview[bot]
c1e6e16e49
Bump termcolor from 1.1.1 to 1.1.2
...
Bumps [termcolor](https://github.com/BurntSushi/termcolor ) from 1.1.1 to 1.1.2.
- [Release notes](https://github.com/BurntSushi/termcolor/releases )
- [Commits](https://github.com/BurntSushi/termcolor/compare/1.1.1...1.1.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-20 12:52:32 +00:00
dependabot-preview[bot]
3ca13fe6a5
Bump cc from 1.0.62 to 1.0.63
...
Bumps [cc](https://github.com/alexcrichton/cc-rs ) from 1.0.62 to 1.0.63.
- [Release notes](https://github.com/alexcrichton/cc-rs/releases )
- [Commits](https://github.com/alexcrichton/cc-rs/compare/1.0.62...1.0.63 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-19 10:56:59 +00:00
Josh Holmer
4fb262c477
Version 4.0.1
deploy / create-windows-binaries (i686) (push) Has been cancelled
deploy / create-windows-binaries (x86_64) (push) Has been cancelled
deploy / create-unix-binaries (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
deploy / create-unix-binaries (ubuntu-latest, x86_64-unknown-linux-musl) (push) Has been cancelled
deploy / deploy (push) Has been cancelled
2020-11-18 16:47:28 -05:00
dependabot-preview[bot]
77fbebf893
Bump libdeflater from 0.5.0 to 0.6.0
...
Bumps [libdeflater](https://github.com/adamkewley/libdeflater ) from 0.5.0 to 0.6.0.
- [Release notes](https://github.com/adamkewley/libdeflater/releases )
- [Commits](https://github.com/adamkewley/libdeflater/compare/0.5.0...0.6.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-17 08:48:56 -05:00
Josh Holmer
9ccf39b49a
Version 4.0.0
deploy / create-windows-binaries (i686) (push) Has been cancelled
deploy / create-windows-binaries (x86_64) (push) Has been cancelled
deploy / create-unix-binaries (macos-latest, x86_64-apple-darwin) (push) Has been cancelled
deploy / create-unix-binaries (ubuntu-latest, x86_64-unknown-linux-musl) (push) Has been cancelled
deploy / deploy (push) Has been cancelled
2020-11-11 14:43:42 -05:00
Ingvar Stepanyan
e38c759563
Switch to crossbeam-channel + rayon::spawn ( #327 )
...
* Switch to crossbeam-channel + rayon::spawn
* Remove thread_spawn for evaluation altogether
This allows to avoid a deadlock when there is only one Rayon thread, and doesn't sacrifice performance, since the caller of .get_result() had to always block on the iterator to be finished anyway, and all the messages are already sent from separate threads.
* Fix `verbose_mode` test
This one is easier to "fix", since we're in control of the rayon pool - just adding one extra thread to the default number to make sure we always can one root "spawn" call without stealing from the actual pool.
2020-11-11 12:01:13 -05:00
dependabot-preview[bot]
c612166c73
Bump num-rational from 0.3.1 to 0.3.2
...
Bumps [num-rational](https://github.com/rust-num/num-rational ) from 0.3.1 to 0.3.2.
- [Release notes](https://github.com/rust-num/num-rational/releases )
- [Changelog](https://github.com/rust-num/num-rational/blob/master/RELEASES.md )
- [Commits](https://github.com/rust-num/num-rational/compare/num-rational-0.3.1...num-rational-0.3.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-09 15:59:04 +00:00
dependabot-preview[bot]
08fb044086
Bump cc from 1.0.61 to 1.0.62
...
Bumps [cc](https://github.com/alexcrichton/cc-rs ) from 1.0.61 to 1.0.62.
- [Release notes](https://github.com/alexcrichton/cc-rs/releases )
- [Commits](https://github.com/alexcrichton/cc-rs/compare/1.0.61...1.0.62 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-09 15:46:49 +00:00
dependabot-preview[bot]
1c386b2bd2
Bump const_fn from 0.4.2 to 0.4.3
...
Bumps [const_fn](https://github.com/taiki-e/const_fn ) from 0.4.2 to 0.4.3.
- [Release notes](https://github.com/taiki-e/const_fn/releases )
- [Changelog](https://github.com/taiki-e/const_fn/blob/master/CHANGELOG.md )
- [Commits](https://github.com/taiki-e/const_fn/compare/v0.4.2...v0.4.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-11-03 10:35:36 +00:00
dependabot-preview[bot]
c21739c9e4
Bump num-integer from 0.1.43 to 0.1.44
...
Bumps [num-integer](https://github.com/rust-num/num-integer ) from 0.1.43 to 0.1.44.
- [Release notes](https://github.com/rust-num/num-integer/releases )
- [Changelog](https://github.com/rust-num/num-integer/blob/master/RELEASES.md )
- [Commits](https://github.com/rust-num/num-integer/compare/num-integer-0.1.43...num-integer-0.1.44 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-30 11:17:14 +00:00
dependabot-preview[bot]
07ef6c84d1
Bump num-iter from 0.1.41 to 0.1.42
...
Bumps [num-iter](https://github.com/rust-num/num-iter ) from 0.1.41 to 0.1.42.
- [Release notes](https://github.com/rust-num/num-iter/releases )
- [Changelog](https://github.com/rust-num/num-iter/blob/master/RELEASES.md )
- [Commits](https://github.com/rust-num/num-iter/compare/num-iter-0.1.41...num-iter-0.1.42 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-30 11:05:18 +00:00
dependabot-preview[bot]
922483bb45
Bump num-rational from 0.3.0 to 0.3.1
...
Bumps [num-rational](https://github.com/rust-num/num-rational ) from 0.3.0 to 0.3.1.
- [Release notes](https://github.com/rust-num/num-rational/releases )
- [Changelog](https://github.com/rust-num/num-rational/blob/master/RELEASES.md )
- [Commits](https://github.com/rust-num/num-rational/compare/num-rational-0.3.0...num-rational-0.3.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-30 10:48:35 +00:00
dependabot-preview[bot]
c99f92f782
Bump num-traits from 0.2.12 to 0.2.14
...
Bumps [num-traits](https://github.com/rust-num/num-traits ) from 0.2.12 to 0.2.14.
- [Release notes](https://github.com/rust-num/num-traits/releases )
- [Changelog](https://github.com/rust-num/num-traits/blob/master/RELEASES.md )
- [Commits](https://github.com/rust-num/num-traits/compare/num-traits-0.2.12...num-traits-0.2.14 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-30 10:32:53 +00:00
dependabot-preview[bot]
b848423346
Bump rustc_version from 0.2.3 to 0.3.0
...
Bumps [rustc_version](https://github.com/Kimundi/rustc-version-rs ) from 0.2.3 to 0.3.0.
- [Release notes](https://github.com/Kimundi/rustc-version-rs/releases )
- [Commits](https://github.com/Kimundi/rustc-version-rs/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-29 06:57:44 -04:00
dependabot-preview[bot]
4a865430b0
Bump libc from 0.2.79 to 0.2.80
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.79 to 0.2.80.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.79...0.2.80 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-26 10:45:53 +00:00
dependabot-preview[bot]
bb94e3b228
Bump image from 0.23.10 to 0.23.11
...
Bumps [image](https://github.com/image-rs/image ) from 0.23.10 to 0.23.11.
- [Release notes](https://github.com/image-rs/image/releases )
- [Changelog](https://github.com/image-rs/image/blob/master/CHANGES.md )
- [Commits](https://github.com/image-rs/image/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-26 10:34:01 +00:00
dependabot-preview[bot]
bd0c4061bd
Bump crc32fast from 1.2.0 to 1.2.1
...
Bumps [crc32fast](https://github.com/srijs/rust-crc32fast ) from 1.2.0 to 1.2.1.
- [Release notes](https://github.com/srijs/rust-crc32fast/releases )
- [Commits](https://github.com/srijs/rust-crc32fast/compare/v1.2.0...v1.2.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-22 10:59:44 +00:00
dependabot-preview[bot]
147e0fbf5b
Bump rayon from 1.4.1 to 1.5.0
...
Bumps [rayon](https://github.com/rayon-rs/rayon ) from 1.4.1 to 1.5.0.
- [Release notes](https://github.com/rayon-rs/rayon/releases )
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md )
- [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.4.1...rayon-core-v1.5.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-22 10:47:39 +00:00
dependabot-preview[bot]
39978b475d
Bump rayon-core from 1.8.1 to 1.9.0
...
Bumps [rayon-core](https://github.com/rayon-rs/rayon ) from 1.8.1 to 1.9.0.
- [Release notes](https://github.com/rayon-rs/rayon/releases )
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md )
- [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.8.1...rayon-core-v1.9.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-22 10:33:25 +00:00
dependabot-preview[bot]
460aeb32e2
Bump cc from 1.0.60 to 1.0.61
...
Bumps [cc](https://github.com/alexcrichton/cc-rs ) from 1.0.60 to 1.0.61.
- [Release notes](https://github.com/alexcrichton/cc-rs/releases )
- [Commits](https://github.com/alexcrichton/cc-rs/compare/1.0.60...1.0.61 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-11 16:55:54 +00:00
dependabot-preview[bot]
0ff9edd605
Bump miniz_oxide from 0.4.2 to 0.4.3
...
Bumps [miniz_oxide](https://github.com/Frommi/miniz_oxide ) from 0.4.2 to 0.4.3.
- [Release notes](https://github.com/Frommi/miniz_oxide/releases )
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Frommi/miniz_oxide/compare/0.4.2...0.4.3 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-08 10:35:34 +00:00
dependabot-preview[bot]
f5e2de6795
Bump hermit-abi from 0.1.16 to 0.1.17
...
Bumps [hermit-abi](https://github.com/hermitcore/libhermit-rs ) from 0.1.16 to 0.1.17.
- [Release notes](https://github.com/hermitcore/libhermit-rs/releases )
- [Commits](https://github.com/hermitcore/libhermit-rs/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-06 10:47:15 +00:00
dependabot-preview[bot]
c84009e9f9
Bump libc from 0.2.78 to 0.2.79
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.78 to 0.2.79.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.78...0.2.79 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-05 10:35:06 +00:00
dependabot-preview[bot]
cfcda58ba7
Bump libc from 0.2.77 to 0.2.78
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.77 to 0.2.78.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.77...0.2.78 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-01 10:47:04 +00:00
dependabot-preview[bot]
c4d1f3d354
Bump chrono from 0.4.18 to 0.4.19
...
Bumps [chrono](https://github.com/chronotope/chrono ) from 0.4.18 to 0.4.19.
- [Release notes](https://github.com/chronotope/chrono/releases )
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md )
- [Commits](https://github.com/chronotope/chrono/compare/v0.4.18...v0.4.19 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-01 10:35:17 +00:00
dependabot-preview[bot]
38e62f7ce5
Bump rayon from 1.4.0 to 1.4.1
...
Bumps [rayon](https://github.com/rayon-rs/rayon ) from 1.4.0 to 1.4.1.
- [Release notes](https://github.com/rayon-rs/rayon/releases )
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md )
- [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.4.0...rayon-core-v1.4.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-30 10:59:33 +00:00
dependabot-preview[bot]
fba3ee23ea
Bump hashbrown from 0.9.0 to 0.9.1
...
Bumps [hashbrown](https://github.com/rust-lang/hashbrown ) from 0.9.0 to 0.9.1.
- [Release notes](https://github.com/rust-lang/hashbrown/releases )
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/hashbrown/compare/v0.9.0...v0.9.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-29 10:51:10 +00:00
dependabot-preview[bot]
a6fa079e64
Bump image from 0.23.9 to 0.23.10
...
Bumps [image](https://github.com/image-rs/image ) from 0.23.9 to 0.23.10.
- [Release notes](https://github.com/image-rs/image/releases )
- [Changelog](https://github.com/image-rs/image/blob/master/CHANGES.md )
- [Commits](https://github.com/image-rs/image/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-28 10:46:08 +00:00
dependabot-preview[bot]
cb88641d5a
Bump chrono from 0.4.15 to 0.4.18
...
Bumps [chrono](https://github.com/chronotope/chrono ) from 0.4.15 to 0.4.18.
- [Release notes](https://github.com/chronotope/chrono/releases )
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md )
- [Commits](https://github.com/chronotope/chrono/compare/v0.4.15...v0.4.18 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-28 10:34:06 +00:00
dependabot-preview[bot]
badc90bae1
Bump hermit-abi from 0.1.15 to 0.1.16
...
Bumps [hermit-abi](https://github.com/hermitcore/libhermit-rs ) from 0.1.15 to 0.1.16.
- [Release notes](https://github.com/hermitcore/libhermit-rs/releases )
- [Commits](https://github.com/hermitcore/libhermit-rs/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-22 10:45:12 +00:00
dependabot-preview[bot]
2458b981f8
Bump memoffset from 0.5.5 to 0.5.6
...
Bumps [memoffset](https://github.com/Gilnaa/memoffset ) from 0.5.5 to 0.5.6.
- [Release notes](https://github.com/Gilnaa/memoffset/releases )
- [Commits](https://github.com/Gilnaa/memoffset/compare/v0.5.5...v0.5.6 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-21 10:36:26 +00:00
dependabot-preview[bot]
fba35861b3
Bump rayon-core from 1.8.0 to 1.8.1
...
Bumps [rayon-core](https://github.com/rayon-rs/rayon ) from 1.8.0 to 1.8.1.
- [Release notes](https://github.com/rayon-rs/rayon/releases )
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md )
- [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.8.0...rayon-core-v1.8.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-18 10:35:40 +00:00
dependabot-preview[bot]
186ab3945f
Bump cc from 1.0.59 to 1.0.60
...
Bumps [cc](https://github.com/alexcrichton/cc-rs ) from 1.0.59 to 1.0.60.
- [Release notes](https://github.com/alexcrichton/cc-rs/releases )
- [Commits](https://github.com/alexcrichton/cc-rs/compare/1.0.59...1.0.60 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-17 11:08:06 +00:00
dependabot-preview[bot]
ec1c398243
Bump either from 1.6.0 to 1.6.1
...
Bumps [either](https://github.com/bluss/either ) from 1.6.0 to 1.6.1.
- [Release notes](https://github.com/bluss/either/releases )
- [Commits](https://github.com/bluss/either/compare/1.6.0...1.6.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-17 10:53:56 +00:00
dependabot-preview[bot]
17cb82c393
Bump atty from 0.2.11 to 0.2.14
...
Bumps [atty](https://github.com/softprops/atty ) from 0.2.11 to 0.2.14.
- [Release notes](https://github.com/softprops/atty/releases )
- [Changelog](https://github.com/softprops/atty/blob/master/CHANGELOG.md )
- [Commits](https://github.com/softprops/atty/compare/0.2.11...0.2.14 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-16 10:59:58 +00:00
dependabot-preview[bot]
d1e6264059
Bump stderrlog from 0.4.3 to 0.5.0
...
Bumps [stderrlog](https://github.com/cardoe/stderrlog-rs ) from 0.4.3 to 0.5.0.
- [Release notes](https://github.com/cardoe/stderrlog-rs/releases )
- [Changelog](https://github.com/cardoe/stderrlog-rs/blob/master/CHANGELOG.md )
- [Commits](https://github.com/cardoe/stderrlog-rs/compare/v0.4.3...v0.5.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-15 10:51:41 -04:00