From d4294713d8fc5c44ed7c9b1957aa6db7ee16a4d4 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 17 Apr 2025 08:12:02 -0600 Subject: [PATCH] Add patched polling for redox, update dependencies --- Cargo.lock | 15 +++++++-------- Cargo.toml | 2 ++ 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cbe3a3a..038e780 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1458,7 +1458,7 @@ dependencies = [ [[package]] name = "cosmic-files" version = "0.1.0" -source = "git+https://github.com/pop-os/cosmic-files.git#133dab261dbcb07f582a02cecf73ef0b7605ad8a" +source = "git+https://github.com/pop-os/cosmic-files.git#887211c850c0b34ca00a44ba637fb8e39bea067c" dependencies = [ "chrono", "compio", @@ -2888,9 +2888,9 @@ checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" [[package]] name = "hermit-abi" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" +checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e" [[package]] name = "hex" @@ -5373,12 +5373,11 @@ dependencies = [ [[package]] name = "polling" version = "3.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f" +source = "git+https://github.com/jackpot51/polling.git?branch=master#320a5ef6d369f4a6493f9779b0cff33dfc6e85ef" dependencies = [ "cfg-if", "concurrent-queue", - "hermit-abi 0.4.0", + "hermit-abi 0.5.0", "pin-project-lite", "rustix 0.38.44", "tracing", @@ -6472,9 +6471,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "svg_fmt" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce5d813d71d82c4cbc1742135004e4a79fd870214c155443451c139c9470a0aa" +checksum = "0193cc4331cfd2f3d2011ef287590868599a2f33c3e69bc22c1a3d3acf9e02fb" [[package]] name = "svgtypes" diff --git a/Cargo.toml b/Cargo.toml index 467d3f7..fe731e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,6 +62,8 @@ debug = true [patch.crates-io] onig = { git = "https://github.com/rust-onig/rust-onig.git", branch = "main" } onig_sys = { git = "https://github.com/rust-onig/rust-onig.git", branch = "main" } +# https://github.com/smol-rs/polling/pull/235 +polling = { git = "https://github.com/jackpot51/polling.git", branch = "master" } # [patch.'https://github.com/pop-os/libcosmic'] # libcosmic = { path = "../libcosmic" }