diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b4478d..49d3482 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.6.16](https://github.com/martinohmann/dts/compare/0.6.15..0.6.16) - 2026-07-01 + +### Miscellaneous Tasks + +- Update Cargo.lock dependencies - ([0000000](https://github.com/martinohmann/dts/commit/0000000)) + + + ## [0.6.15](https://github.com/martinohmann/dts/compare/0.6.14..0.6.15) - 2026-07-01 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 7f56b92..1590c6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -145,9 +145,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "bat" -version = "0.26.1" +version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf66d0164db6827afe1694b8d4939f36a5507b7186f8d3cc529c66baf03b0d09" +checksum = "bdfbb82665a34fdccf743a663f071e4f77e628866ded46a6de6cf874cbe89590" dependencies = [ "ansi_colours", "anyhow", @@ -160,6 +160,7 @@ dependencies = [ "flate2", "globset", "grep-cli", + "home", "indexmap", "itertools 0.14.0", "minus", @@ -669,7 +670,7 @@ dependencies = [ [[package]] name = "dts" -version = "0.6.15" +version = "0.6.16" dependencies = [ "anyhow", "assert_cmd", @@ -750,7 +751,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -962,6 +963,15 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0a7763b98ba8a24f59e698bf9ab197e7676c640d6455d1580b4ce7dc560f0f0d" +[[package]] +name = "home" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" +dependencies = [ + "windows-sys 0.59.0", +] + [[package]] name = "http" version = "1.4.2" @@ -1730,7 +1740,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -2383,9 +2393,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "vecmap-rs" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9758649b51083aa8008666f41c23f05abca1766aad4cc447b195dd83ef1297b" +checksum = "58c1dc449b873236909c7f325adf395071c209047737d831183e95c692413adf" dependencies = [ "serde", ] @@ -2516,7 +2526,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -2593,6 +2603,15 @@ dependencies = [ "windows-targets", ] +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets", +] + [[package]] name = "windows-sys" version = "0.61.2" diff --git a/Cargo.toml b/Cargo.toml index 94e100d..5f5c2d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dts" -version = "0.6.15" +version = "0.6.16" authors = ["Martin Ohmann "] license = "MIT" description = "A tool to deserialize, transform and serialize data between different encodings"