diff --git a/CHANGELOG.md b/CHANGELOG.md index d490372..cbfa3b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog + +## [0.3.5](https://github.com/Blobfolio/cdtoc/releases/tag/v0.3.5) - 2024-02-08 + +### Changed + +* Bump `dactyl` to `0.7` + + + ## [0.3.4](https://github.com/Blobfolio/cdtoc/releases/tag/v0.3.4) - 2023-11-24 ### Changed diff --git a/CREDITS.md b/CREDITS.md index e98de3c..b4bdee4 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -1,18 +1,18 @@ # Project Dependencies Package: cdtoc - Version: 0.3.4 - Generated: 2023-11-25 02:24:16 UTC + Version: 0.3.5 + Generated: 2024-02-08 18:21:51 UTC | Package | Version | Author(s) | License | | ---- | ---- | ---- | ---- | | [block-buffer](https://github.com/RustCrypto/utils) | 0.10.4 | RustCrypto Developers | Apache-2.0 or MIT | | [cfg-if](https://github.com/alexcrichton/cfg-if) | 1.0.0 | [Alex Crichton](mailto:alex@alexcrichton.com) | Apache-2.0 or MIT | | [crypto-common](https://github.com/RustCrypto/traits) | 0.1.6 | RustCrypto Developers | Apache-2.0 or MIT | -| [dactyl](https://github.com/Blobfolio/dactyl) | 0.6.0 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL | +| [dactyl](https://github.com/Blobfolio/dactyl) | 0.7.0 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL | | [digest](https://github.com/RustCrypto/traits) | 0.10.7 | RustCrypto Developers | Apache-2.0 or MIT | | [faster-hex](https://github.com/NervosFoundation/faster-hex) | 0.9.0 | [zhangsoledad](mailto:787953403@qq.com) | MIT | | [generic-array](https://github.com/fizyk20/generic-array.git) | 0.14.7 | [Bartłomiej Kamiński](mailto:fizyk20@gmail.com) and [Aaron Trent](mailto:novacrazy@gmail.com) | MIT | -| [itoa](https://github.com/dtolnay/itoa) | 1.0.9 | [David Tolnay](mailto:dtolnay@gmail.com) | Apache-2.0 or MIT | +| [itoa](https://github.com/dtolnay/itoa) | 1.0.10 | [David Tolnay](mailto:dtolnay@gmail.com) | Apache-2.0 or MIT | | [sha1](https://github.com/RustCrypto/hashes) | 0.10.6 | RustCrypto Developers | Apache-2.0 or MIT | | [trimothy](https://github.com/Blobfolio/trimothy) | 0.2.2 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL | | [typenum](https://github.com/paholg/typenum) | 1.17.0 | [Paho Lurie-Gregg](mailto:paho@paholg.com) and [Andre Bogus](mailto:bogusandre@gmail.com) | Apache-2.0 or MIT | diff --git a/Cargo.toml b/Cargo.toml index a3916ff..131dfec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cdtoc" -version = "0.3.4" +version = "0.3.5" authors = ["Blobfolio, LLC. "] edition = "2021" rust-version = "1.70" @@ -34,7 +34,7 @@ brunch = "0.5.*" serde_json = "1.0.*" [dependencies] -dactyl = "0.6.0" +dactyl = "0.7.*" trimothy = "0.2.*" [dependencies.faster-hex] diff --git a/README.md b/README.md index ea330a3..dcc9409 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ default-features = false ## License -Copyright © 2023 [Blobfolio, LLC](https://blobfolio.com) <hello@blobfolio.com> +Copyright © 2024 [Blobfolio, LLC](https://blobfolio.com) <hello@blobfolio.com> This work is free. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2. diff --git a/justfile b/justfile index 170213c..f2f94be 100644 --- a/justfile +++ b/justfile @@ -31,12 +31,10 @@ bench BENCH="": if [ -z "{{ BENCH }}" ]; then cargo bench \ --benches \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" else cargo bench \ --bench "{{ BENCH }}" \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" fi exit 0 @@ -60,7 +58,6 @@ bench BENCH="": cargo clippy \ --release \ --all-features \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" @@ -79,14 +76,13 @@ bench BENCH="": cargo +nightly rustdoc \ --release \ --all-features \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" \ -- \ --cfg docsrs # Move the docs and clean up ownership. [ ! -d "{{ doc_dir }}" ] || rm -rf "{{ doc_dir }}" - mv "{{ cargo_dir }}/x86_64-unknown-linux-gnu/doc" "{{ justfile_directory() }}" + mv "{{ cargo_dir }}/doc" "{{ justfile_directory() }}" just _fix-chown "{{ doc_dir }}" @@ -95,25 +91,21 @@ bench BENCH="": clear fyi task "Testing w/ Default Features" cargo test \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" cargo test \ --release \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" echo "" fyi task "Testing w/ No Features" cargo test \ --no-default-features \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" cargo test \ --release \ --no-default-features \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" echo "" @@ -121,14 +113,12 @@ bench BENCH="": cargo test \ --all-features \ --no-default-features \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" cargo test \ --release \ --all-features \ --no-default-features \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" just _test accuraterip @@ -144,14 +134,12 @@ bench BENCH="": cargo test \ --no-default-features \ --features {{ FEATURES }} \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}" cargo test \ --release \ --no-default-features \ --features {{ FEATURES }} \ - --target x86_64-unknown-linux-gnu \ --target-dir "{{ cargo_dir }}"