David Tolnay
89d75db8e2
Merge pull request #241 from dtolnay/etcetera
...
Vendor cache_dir logic from etcetera
2025-03-03 02:19:12 -05:00
David Tolnay
5f32c30ad1
Acknowledge provenance of cache_dir code
2025-03-02 23:12:56 -08:00
David Tolnay
4317adcaf1
Touch up etcetera cache dir code
2025-03-02 23:12:56 -08:00
David Tolnay
36dbffb78c
Conditionally compile OS-specific cache dir logic
2025-03-02 22:41:39 -08:00
David Tolnay
d46967c745
Inline cache_dir into assets module
2025-03-02 22:38:14 -08:00
David Tolnay
a58bd1a6ca
Simplify interface to obtaining cache_dir
2025-03-02 22:34:57 -08:00
David Tolnay
69f8fad695
Inline etcetera modules into a single file
2025-03-02 22:26:23 -08:00
David Tolnay
b1a731c5f7
Combine error types
2025-03-02 22:20:41 -08:00
David Tolnay
d876f6e238
Strip unused code from etcetera
2025-03-02 22:16:12 -08:00
David Tolnay
6a2b06f3be
Make etcetera buildable as module
2025-03-02 22:01:22 -08:00
David Tolnay
0d6c07747b
Vendor etcetera 0.9.0
2025-03-02 21:57:19 -08:00
David Tolnay
38a2228409
Fix -Zrandomize-layout setting in Windows jobs
...
This didn't take effect when run by the default pwsh shell.
2025-01-25 19:13:18 -08:00
David Tolnay
8ad3fc774a
Ignore Windows linker warning
...
error: linker stderr: Warning: corrupt .drectve at end of def file␍
Warning: corrupt .drectve at end of def file␍
|
= note: `-D linker-messages` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(linker_messages)]`
2025-01-25 19:05:09 -08:00
David Tolnay
030e3ea9cd
More precise gitignore patterns
2025-01-22 20:19:46 -08:00
David Tolnay
dfdf458dbd
Release 1.0.100
2025-01-12 08:05:20 -08:00
David Tolnay
987474b814
Pull in prettyplease statement-position macro semicolon fix
2025-01-12 08:04:57 -08:00
David Tolnay
a7409f2506
Release 1.0.99
2025-01-11 20:32:36 -08:00
David Tolnay
88a5f85d72
Lockfile update
2025-01-11 20:32:13 -08:00
David Tolnay
7184ec551a
Pull in prettyplease precedence improvements
2025-01-11 20:31:49 -08:00
David Tolnay
e32ff18a18
Release 1.0.98
2025-01-07 11:24:37 -08:00
David Tolnay
2c1629df42
Lockfile update
2025-01-07 11:24:18 -08:00
David Tolnay
259b88dd45
Merge pull request #240 from dtolnay/bat
...
Update bat to 0.25
2025-01-07 11:23:59 -08:00
David Tolnay
e6d3b96355
Update bat to 0.25
2025-01-07 11:17:39 -08:00
David Tolnay
311791e2a7
Release 1.0.97
2025-01-05 14:01:53 -08:00
David Tolnay
fdf357c292
Lockfile update
2025-01-05 14:01:34 -08:00
David Tolnay
e0d03c58ae
Pull in prettyplease precedence improvements
2025-01-05 14:01:24 -08:00
David Tolnay
6f85020e4b
Release 1.0.96
2025-01-02 18:55:33 -08:00
David Tolnay
a55dbd98ac
Lockfile update
2025-01-02 18:49:34 -08:00
David Tolnay
a175e9b16f
Update clap-cargo to 0.15
2025-01-02 18:47:47 -08:00
David Tolnay
786dd97fc5
Raise required compiler to 1.81
...
Required by `home` since 0.5.11.
error: package `home v0.5.11` cannot be built because it requires rustc 1.81 or newer, while the currently active rustc version is 1.74.1
Either upgrade to rustc 1.81 or newer, or use
cargo update home@0.5.11 --precise ver
where `ver` is the latest version of `home` supporting rustc 1.74.1
2024-12-16 20:23:48 -08:00
David Tolnay
a42d9253e8
Resolve unnecessary_map_or clippy lint
...
warning: this `map_or` is redundant
--> src/main.rs:676:22
|
676 | let compatible = metadata
| ______________________^
677 | | .as_ref()
678 | | .map_or(false, |m| m.is_compatible_with(assets::BAT_VERSION));
| |_____________________________________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
= note: `-W clippy::unnecessary-map-or` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::unnecessary_map_or)]`
help: use is_some_and instead
|
676 ~ let compatible = metadata
677 ~ .as_ref().is_some_and(|m| m.is_compatible_with(assets::BAT_VERSION));
|
2024-11-15 19:20:31 -08:00
David Tolnay
850c0550a0
Prevent upload-artifact step from causing CI failure
...
This step has been failing way more than reasonable across my various repos.
With the provided path, there will be 1 file uploaded
Artifact name is valid!
Root directory input is valid!
Attempt 1 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 3000 ms...
Attempt 2 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 6029 ms...
Attempt 3 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 8270 ms...
Attempt 4 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 12577 ms...
Error: Failed to CreateArtifact: Failed to make request after 5 attempts: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact
2024-11-08 21:45:37 -05:00
David Tolnay
4979d19d0f
Release 1.0.95
2024-11-04 18:18:41 -08:00
David Tolnay
40127ed6ec
Lockfile update
2024-11-04 18:18:18 -08:00
David Tolnay
0e99e7b2e9
Fix dependency on yanked version of hashbrown
2024-11-04 18:18:10 -08:00
David Tolnay
3c304e0339
Release 1.0.94
2024-10-31 12:02:54 -07:00
David Tolnay
02e82db425
Lockfile update
2024-10-31 12:02:28 -07:00
David Tolnay
5f8061f177
Merge pull request #239 from dtolnay/styles
...
Use cargo styles for help text
2024-10-31 12:02:09 -07:00
David Tolnay
6b181122de
Use cargo styles for help text
2024-10-31 11:56:58 -07:00
David Tolnay
a6e1d746cd
Release 1.0.93
2024-10-24 00:25:40 -07:00
David Tolnay
db1962200b
Mention bat --list-themes
2024-10-24 00:25:17 -07:00
David Tolnay
c396c12b61
Merge pull request #238 from dtolnay/assets
...
Load custom bat theme assets
2024-10-24 00:23:03 -07:00
David Tolnay
09f73c8182
Load custom bat theme assets
2024-10-24 00:19:52 -07:00
David Tolnay
497a5a94f6
Merge pull request #237 from dtolnay/bat
...
Inline bat's PrettyPrinter logic
2024-10-23 17:46:38 -07:00
David Tolnay
09d0e944d6
Inline bat's PrettyPrinter logic
2024-10-23 17:42:52 -07:00
David Tolnay
3944f5a713
Release 1.0.92
2024-10-23 16:52:31 -07:00
David Tolnay
0dc51326c9
Lockfile update
2024-10-23 16:52:19 -07:00
David Tolnay
f7c828629a
Pull in support for new Rust 1.82 syntax
2024-10-23 16:52:03 -07:00
David Tolnay
ab3eedda1c
Update fs-err dependency to v3
2024-10-23 16:48:35 -07:00
David Tolnay
b33935ef7d
Release 1.0.91
2024-10-19 19:42:05 -07:00