Compare commits

...

4 commits

Author SHA1 Message Date
David Tolnay
eb505d1f24
Release 1.0.104 2025-03-24 15:13:21 -07:00
David Tolnay
8bc261eb41
Revert "Disregard outdated deranged crate"
This reverts commit 12a0d5320e.
2025-03-24 15:12:57 -07:00
David Tolnay
af09ebdaec
Merge pull request #243 from dtolnay/deranged
Unpin deranged
2025-03-24 15:12:16 -07:00
David Tolnay
c45e3a6b80
Unpin deranged 2025-03-24 15:08:03 -07:00
3 changed files with 7 additions and 11 deletions

View file

@ -85,4 +85,4 @@ jobs:
- uses: dtolnay/install@cargo-outdated - uses: dtolnay/install@cargo-outdated
- run: cargo tree --package bat --depth 0 | grep "^bat v$(cat src/bat.version)$" - run: cargo tree --package bat --depth 0 | grep "^bat v$(cat src/bat.version)$"
- run: cargo update - run: cargo update
- run: cargo outdated --workspace --ignore deranged --exit-code 1 - run: cargo outdated --workspace --exit-code 1

11
Cargo.lock generated
View file

@ -194,14 +194,13 @@ checksum = "2d2c12f985c78475a6b8d629afd0c360260ef34cfef52efccdcfd31972f81c2e"
[[package]] [[package]]
name = "cargo-expand" name = "cargo-expand"
version = "1.0.103" version = "1.0.104"
dependencies = [ dependencies = [
"bat", "bat",
"cargo-subcommand-metadata", "cargo-subcommand-metadata",
"clap", "clap",
"clap-cargo", "clap-cargo",
"console", "console",
"deranged",
"fs-err", "fs-err",
"home", "home",
"prettyplease", "prettyplease",
@ -369,9 +368,9 @@ dependencies = [
[[package]] [[package]]
name = "deranged" name = "deranged"
version = "0.4.0" version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e" checksum = "28cfac68e08048ae1883171632c2aef3ebc555621ae56fbccce1cbf22dd7f058"
dependencies = [ dependencies = [
"powerfmt", "powerfmt",
] ]
@ -628,9 +627,9 @@ dependencies = [
[[package]] [[package]]
name = "plist" name = "plist"
version = "1.7.0" version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016" checksum = "eac26e981c03a6e53e0aee43c113e3202f5581d5360dae7bd2c70e800dd0451d"
dependencies = [ dependencies = [
"base64", "base64",
"indexmap", "indexmap",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "cargo-expand" name = "cargo-expand"
version = "1.0.103" version = "1.0.104"
authors = ["David Tolnay <dtolnay@gmail.com>"] authors = ["David Tolnay <dtolnay@gmail.com>"]
autotests = false autotests = false
categories = ["development-tools::cargo-plugins", "development-tools::debugging"] categories = ["development-tools::cargo-plugins", "development-tools::debugging"]
@ -40,9 +40,6 @@ toolchain_find = "0.4"
[target.'cfg(all(windows, not(target_vendor = "uwp")))'.dependencies] [target.'cfg(all(windows, not(target_vendor = "uwp")))'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_System_Com", "Win32_UI_Shell"] } windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_System_Com", "Win32_UI_Shell"] }
[target.'cfg(target_os = "macos")'.dependencies]
deranged = "=0.4.0" # https://github.com/jhpratt/deranged/issues/18
[package.metadata.docs.rs] [package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"] targets = ["x86_64-unknown-linux-gnu"]