Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ddb3b76
Updated Docker image to Ubuntu-24.04 and Cargo dependencies
Oct 26, 2024
003128f
WIP
petehayes102 Nov 30, 2024
ea44017
WIP
petehayes102 Nov 30, 2024
b6a8a90
Readd submodule
petehayes102 Dec 1, 2024
f092ad2
Bugfixes for Ubuntu 24
petehayes102 Dec 1, 2024
807079b
Comment out ncurses
petehayes102 Dec 1, 2024
138a904
Bump all Rust dependencies
petehayes102 Dec 1, 2024
8718c34
Appease clippy
petehayes102 Dec 1, 2024
d48bed0
Bump kernel major version
petehayes102 Dec 1, 2024
adce300
Remove deleted 'python' (v2) package
petehayes102 Dec 1, 2024
9b1a474
Updated crates and compiler to 1.89.0
Aug 15, 2025
d35013f
Compilable version with using linux-image 6.12.41+deb13 and Debian Tr…
Aug 15, 2025
942a406
Cargo format
Aug 16, 2025
76a4ddc
Set the minimum Rust version to one supporting Rust 2024 and if-let-c…
Aug 16, 2025
a28aa4c
Setting rustc consistently everywhere to 1.89.0
Aug 16, 2025
2ac43b4
Fixed clippy 1.89.0 findings
Aug 16, 2025
4e20463
Fixed Cargo fmt
Aug 16, 2025
a6a70cd
Using Rust 1.89.0 in `ci.yml` and `weekly.yml`
Aug 17, 2025
afc483e
Allowing new licenses which came with crate updates
Aug 17, 2025
48d5902
Fixed Owo-Color having `Stdin` removed in latest version
Aug 17, 2025
48bb935
Fixed local.rs formatting
Aug 17, 2025
f401f7a
"FROM ubuntu:24.04 as" to "FROM ubuntu:24.04 AS"
Aug 19, 2025
e19db47
Added "ubuntu.sources" with the correct configured arm64, i386 and am…
Aug 19, 2025
459f1ea
"ubuntu.sources" missed an ending newline
Aug 19, 2025
27da6b4
Update README.md annotation about Xargo
JanDiederich Sep 7, 2025
cf04300
Update docker/ubuntu.sources
JanDiederich Sep 7, 2025
937998a
OWO stdin removed
Sep 7, 2025
cab53ec
Rebase on the latest original main
Sep 7, 2025
d93c881
Cargo fmt shared.rs and errors.rs
Sep 7, 2025
d38569e
lint `clippy::string_to_string` has been removed: `clippy:implicit_c…
Sep 7, 2025
29c55d6
replace the closure with the function itself: `termination_handler`
Sep 7, 2025
f0e196f
errors.rs formatted install_termination_hook() indention
Sep 7, 2025
c7a057d
Upgraded Adler to Adler2, other version updates
Sep 7, 2025
c0bbde6
allow multiple `windows-sys`
Emilgardis Sep 9, 2025
cbb02c6
update wine sources and bump to wine 10
Emilgardis Sep 9, 2025
31f5252
bump qemu to 10.1.0 for ubuntu
Emilgardis Sep 9, 2025
e81c842
explicitly use wineconsole
Emilgardis Sep 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ fn termination_handler() {
pub fn install_termination_hook() -> Result<()> {
// SAFETY: safe since single-threaded execution.
unsafe {
signal_hook::low_level::register(signal_hook::consts::SIGINT, || termination_handler())
signal_hook::low_level::register(signal_hook::consts::SIGINT, termination_handler)
}
.map_err(Into::into)
.map(|_| ())
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
clippy::ref_binding_to_reference,
clippy::semicolon_if_nothing_returned,
clippy::str_to_string,
clippy::string_to_string,
clippy::unwrap_used
)]

Expand Down
Loading