cosmic-files/Cargo.lock

9539 lines
228 KiB
Text
Raw Normal View History

2024-01-03 15:27:32 -07:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
version = 4
2024-01-03 15:27:32 -07:00
[[package]]
name = "ab_glyph"
2025-07-22 09:15:33 -06:00
version = "0.2.31"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "e074464580a518d16a7126262fffaaa47af89d4099d4cb403f8ed938ba12ee7d"
2024-01-03 15:27:32 -07:00
dependencies = [
"ab_glyph_rasterizer",
"owned_ttf_parser",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "ab_glyph_rasterizer"
2025-07-01 09:31:12 -06:00
version = "0.1.9"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-01 09:31:12 -06:00
checksum = "b2187590a23ab1e3df8681afdf0987c48504d80291f002fcdb651f0ef5e25169"
2024-01-03 15:27:32 -07:00
[[package]]
name = "accesskit"
2024-10-21 13:51:10 -06:00
version = "0.16.0"
2024-10-21 15:57:56 -06:00
source = "git+https://github.com/wash2/accesskit?tag=iced-xdg-surface-0.13#956955342dadab7e588e21be726817fca39510f3"
2024-10-21 13:51:10 -06:00
[[package]]
name = "accesskit_atspi_common"
version = "0.9.0"
2024-10-21 15:57:56 -06:00
source = "git+https://github.com/wash2/accesskit?tag=iced-xdg-surface-0.13#956955342dadab7e588e21be726817fca39510f3"
2024-10-21 13:51:10 -06:00
dependencies = [
"accesskit",
"accesskit_consumer",
"atspi-common",
"serde",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-10-21 13:51:10 -06:00
"zvariant 3.15.2",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "accesskit_consumer"
2024-10-21 13:51:10 -06:00
version = "0.24.0"
2024-10-21 15:57:56 -06:00
source = "git+https://github.com/wash2/accesskit?tag=iced-xdg-surface-0.13#956955342dadab7e588e21be726817fca39510f3"
2024-01-03 15:27:32 -07:00
dependencies = [
"accesskit",
2024-10-21 13:51:10 -06:00
"immutable-chunkmap",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "accesskit_macos"
2024-10-21 13:51:10 -06:00
version = "0.17.0"
2024-10-21 15:57:56 -06:00
source = "git+https://github.com/wash2/accesskit?tag=iced-xdg-surface-0.13#956955342dadab7e588e21be726817fca39510f3"
2024-01-03 15:27:32 -07:00
dependencies = [
"accesskit",
"accesskit_consumer",
2025-04-15 20:04:07 -04:00
"objc2 0.5.2",
2025-06-18 11:22:48 -04:00
"objc2-app-kit 0.2.2",
2025-04-15 20:04:07 -04:00
"objc2-foundation 0.2.2",
2024-01-03 15:27:32 -07:00
"once_cell",
]
[[package]]
name = "accesskit_unix"
2024-10-21 13:51:10 -06:00
version = "0.12.0"
2024-10-21 15:57:56 -06:00
source = "git+https://github.com/wash2/accesskit?tag=iced-xdg-surface-0.13#956955342dadab7e588e21be726817fca39510f3"
2024-01-03 15:27:32 -07:00
dependencies = [
"accesskit",
2024-10-21 13:51:10 -06:00
"accesskit_atspi_common",
2024-01-03 15:27:32 -07:00
"atspi",
"futures-lite 1.13.0",
"serde",
"tokio",
"tokio-stream",
2024-05-20 14:09:45 -06:00
"zbus 3.15.2",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "accesskit_windows"
2024-10-21 13:51:10 -06:00
version = "0.22.0"
2024-10-21 15:57:56 -06:00
source = "git+https://github.com/wash2/accesskit?tag=iced-xdg-surface-0.13#956955342dadab7e588e21be726817fca39510f3"
2024-01-03 15:27:32 -07:00
dependencies = [
"accesskit",
"accesskit_consumer",
"paste",
2024-02-09 07:09:51 -07:00
"static_assertions",
2024-10-21 13:51:10 -06:00
"windows 0.54.0",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "accesskit_winit"
2024-10-21 13:51:10 -06:00
version = "0.22.0"
2024-10-21 15:57:56 -06:00
source = "git+https://github.com/wash2/accesskit?tag=iced-xdg-surface-0.13#956955342dadab7e588e21be726817fca39510f3"
2024-01-03 15:27:32 -07:00
dependencies = [
"accesskit",
"accesskit_macos",
"accesskit_unix",
"accesskit_windows",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
"winit",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "addr2line"
2024-10-05 07:39:03 -06:00
version = "0.24.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
2024-01-03 15:27:32 -07:00
dependencies = [
"gimli",
]
[[package]]
name = "adler2"
2025-06-18 11:22:48 -04:00
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
[[package]]
name = "aes"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "ahash"
2025-06-18 11:22:48 -04:00
version = "0.8.12"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2025-06-18 11:22:48 -04:00
"getrandom 0.3.3",
2024-01-03 15:27:32 -07:00
"once_cell",
"version_check",
2025-06-18 11:22:48 -04:00
"zerocopy",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "aho-corasick"
version = "1.1.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
2024-01-03 15:27:32 -07:00
dependencies = [
"memchr",
]
[[package]]
name = "aliasable"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "aligned-array"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e05c92d086290f52938013f6242ac62bf7d401fab8ad36798a609faa65c3fd2c"
dependencies = [
"generic-array",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "aligned-vec"
2025-06-18 11:22:48 -04:00
version = "0.6.4"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
dependencies = [
"equator",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "alloc-no-stdlib"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
[[package]]
name = "alloc-stdlib"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
dependencies = [
"alloc-no-stdlib",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "almost"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3aa2999eb46af81abb65c2d30d446778d7e613b60bbf4e174a027e80f90a3c14"
[[package]]
name = "android-activity"
2024-10-21 13:51:10 -06:00
version = "0.6.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046"
2024-01-03 15:27:32 -07:00
dependencies = [
"android-properties",
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"cc",
2024-02-09 07:09:51 -07:00
"cesu8",
"jni",
2024-01-03 15:27:32 -07:00
"jni-sys",
"libc",
"log",
"ndk",
2024-01-03 15:27:32 -07:00
"ndk-context",
2024-10-21 13:51:10 -06:00
"ndk-sys 0.6.0+11769913",
"num_enum",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "android-properties"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
2024-01-05 14:44:20 -07:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2024-01-03 15:27:32 -07:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2024-01-28 06:23:40 -05:00
[[package]]
name = "anstream"
2025-06-18 11:22:48 -04:00
version = "0.6.19"
2024-01-28 06:23:40 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
2024-01-28 06:23:40 -05:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
2024-05-03 12:16:14 -04:00
"is_terminal_polyfill",
2024-01-28 06:23:40 -05:00
"utf8parse",
]
[[package]]
name = "anstyle"
2025-06-18 11:22:48 -04:00
version = "1.0.11"
2024-01-28 06:23:40 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
2024-01-28 06:23:40 -05:00
[[package]]
name = "anstyle-parse"
2025-06-18 11:22:48 -04:00
version = "0.2.7"
2024-01-28 06:23:40 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
2024-01-28 06:23:40 -05:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
2025-06-18 11:22:48 -04:00
version = "1.1.3"
2024-01-28 06:23:40 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
2024-01-28 06:23:40 -05:00
dependencies = [
2024-10-29 14:29:20 -06:00
"windows-sys 0.59.0",
2024-01-28 06:23:40 -05:00
]
[[package]]
name = "anstyle-wincon"
2025-06-18 11:22:48 -04:00
version = "3.0.9"
2024-01-28 06:23:40 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
2024-01-28 06:23:40 -05:00
dependencies = [
"anstyle",
2025-06-18 11:22:48 -04:00
"once_cell_polyfill",
2024-10-29 14:29:20 -06:00
"windows-sys 0.59.0",
2024-01-28 06:23:40 -05:00
]
[[package]]
name = "anyhow"
2025-04-15 20:04:07 -04:00
version = "1.0.98"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
2024-01-03 15:27:32 -07:00
[[package]]
name = "apply"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f47b57fc4521e3cae26a4d45b5227f8fadee4c345be0fefd8d5d1711afb8aeb9"
[[package]]
name = "approx"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
dependencies = [
"num-traits",
]
[[package]]
name = "arbitrary"
2024-11-05 15:37:36 -07:00
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-05 15:37:36 -07:00
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
dependencies = [
"derive_arbitrary",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "arc-swap"
version = "1.7.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
2024-01-03 15:27:32 -07:00
2024-11-11 09:14:03 -07:00
[[package]]
name = "arg_enum_proc_macro"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-11-11 09:14:03 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "arrayref"
2024-09-20 09:24:03 -06:00
version = "0.3.9"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-20 09:24:03 -06:00
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
2024-01-03 15:27:32 -07:00
[[package]]
name = "arrayvec"
2024-08-19 13:25:36 -06:00
version = "0.7.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-19 13:25:36 -06:00
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
2024-01-03 15:27:32 -07:00
[[package]]
name = "as-raw-xcb-connection"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
[[package]]
name = "ash"
2024-10-21 13:51:10 -06:00
version = "0.38.0+1.3.281"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-10-21 13:51:10 -06:00
"libloading",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "ashpd"
2025-06-18 11:22:48 -04:00
version = "0.11.0"
2024-08-19 13:25:36 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "6cbdf310d77fd3aaee6ea2093db7011dc2d35d2eb3481e5607f1f8d942ed99df"
2024-08-19 13:25:36 -06:00
dependencies = [
2024-01-03 15:27:32 -07:00
"enumflags2",
"futures-channel",
"futures-util",
2025-07-22 09:15:33 -06:00
"rand 0.9.2",
2025-06-18 11:22:48 -04:00
"raw-window-handle",
2024-01-03 15:27:32 -07:00
"serde",
"serde_repr",
"tokio",
"url",
2024-06-27 09:03:44 -06:00
"wayland-backend",
"wayland-client",
2024-10-21 13:51:10 -06:00
"wayland-protocols",
2025-07-22 09:15:33 -06:00
"zbus 5.9.0",
2024-01-03 15:27:32 -07:00
]
2024-03-04 10:28:16 -07:00
[[package]]
2024-05-17 08:56:19 -06:00
name = "async-broadcast"
version = "0.5.1"
2024-03-04 10:28:16 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-17 08:56:19 -06:00
checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b"
2024-03-04 10:28:16 -07:00
dependencies = [
2024-05-17 08:56:19 -06:00
"event-listener 2.5.3",
"futures-core",
2024-03-04 10:28:16 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "async-broadcast"
2025-01-10 09:55:04 -07:00
version = "0.7.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-01-10 09:55:04 -07:00
"event-listener 5.4.0",
2024-06-05 07:15:56 -06:00
"event-listener-strategy",
2024-01-03 15:27:32 -07:00
"futures-core",
2024-05-17 08:56:19 -06:00
"pin-project-lite",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "async-channel"
2025-07-10 15:27:51 -06:00
version = "2.5.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
2024-01-03 15:27:32 -07:00
dependencies = [
"concurrent-queue",
2024-06-05 07:15:56 -06:00
"event-listener-strategy",
2024-01-03 15:27:32 -07:00
"futures-core",
"pin-project-lite",
]
[[package]]
name = "async-executor"
version = "1.13.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa"
2024-01-03 15:27:32 -07:00
dependencies = [
"async-task",
"concurrent-queue",
2025-01-10 09:55:04 -07:00
"fastrand 2.3.0",
2025-01-13 09:03:23 -07:00
"futures-lite 2.6.0",
"pin-project-lite",
2024-01-03 15:27:32 -07:00
"slab",
]
[[package]]
name = "async-io"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
dependencies = [
"async-lock 2.8.0",
"autocfg",
"cfg-if",
2024-01-03 15:27:32 -07:00
"concurrent-queue",
"futures-lite 1.13.0",
"log",
"parking",
"polling 2.8.0",
2025-01-10 09:55:04 -07:00
"rustix 0.37.28",
2024-01-03 15:27:32 -07:00
"slab",
"socket2 0.4.10",
"waker-fn",
]
[[package]]
name = "async-io"
2025-07-22 09:15:33 -06:00
version = "2.5.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "19634d6336019ef220f09fd31168ce5c184b295cbf80345437cc36094ef223ca"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-06-05 07:15:56 -06:00
"async-lock 3.4.0",
"cfg-if",
2024-01-03 15:27:32 -07:00
"concurrent-queue",
"futures-io",
2025-01-13 09:03:23 -07:00
"futures-lite 2.6.0",
2024-01-03 15:27:32 -07:00
"parking",
2025-07-22 09:15:33 -06:00
"polling 3.9.0",
"rustix 1.0.8",
2024-01-03 15:27:32 -07:00
"slab",
2025-07-22 09:15:33 -06:00
"windows-sys 0.60.2",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "async-lock"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
dependencies = [
"event-listener 2.5.3",
]
[[package]]
name = "async-lock"
2024-06-05 07:15:56 -06:00
version = "3.4.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-05 07:15:56 -06:00
checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-01-10 09:55:04 -07:00
"event-listener 5.4.0",
2024-06-05 07:15:56 -06:00
"event-listener-strategy",
2024-01-03 15:27:32 -07:00
"pin-project-lite",
]
[[package]]
name = "async-process"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
dependencies = [
"async-io 1.13.0",
"async-lock 2.8.0",
"async-signal",
"blocking",
"cfg-if",
2024-01-03 15:27:32 -07:00
"event-listener 3.1.0",
"futures-lite 1.13.0",
2025-02-19 17:55:33 +01:00
"rustix 0.38.44",
2024-01-03 15:27:32 -07:00
"windows-sys 0.48.0",
]
2024-05-17 08:56:19 -06:00
[[package]]
name = "async-process"
2025-07-22 09:15:33 -06:00
version = "2.4.0"
2024-05-17 08:56:19 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "65daa13722ad51e6ab1a1b9c01299142bc75135b337923cfa10e79bbbd669f00"
2024-05-17 08:56:19 -06:00
dependencies = [
"async-channel",
2025-07-22 09:15:33 -06:00
"async-io 2.5.0",
2024-06-05 07:15:56 -06:00
"async-lock 3.4.0",
2024-05-17 08:56:19 -06:00
"async-signal",
"async-task",
"blocking",
"cfg-if",
2025-01-10 09:55:04 -07:00
"event-listener 5.4.0",
2025-01-13 09:03:23 -07:00
"futures-lite 2.6.0",
2025-07-22 09:15:33 -06:00
"rustix 1.0.8",
2024-05-17 08:56:19 -06:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "async-recursion"
2024-04-25 20:19:36 -06:00
version = "1.1.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-25 20:19:36 -06:00
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "async-signal"
2025-07-22 09:15:33 -06:00
version = "0.2.12"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "f567af260ef69e1d52c2b560ce0ea230763e6fbb9214a85d768760a920e3e3c1"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-07-22 09:15:33 -06:00
"async-io 2.5.0",
2024-06-05 07:15:56 -06:00
"async-lock 3.4.0",
2024-01-03 15:27:32 -07:00
"atomic-waker",
"cfg-if",
2024-01-03 15:27:32 -07:00
"futures-core",
"futures-io",
2025-07-22 09:15:33 -06:00
"rustix 1.0.8",
2024-01-03 15:27:32 -07:00
"signal-hook-registry",
"slab",
2025-07-22 09:15:33 -06:00
"windows-sys 0.60.2",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "async-task"
2024-04-30 13:29:58 -06:00
version = "4.7.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-30 13:29:58 -06:00
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
2024-01-03 15:27:32 -07:00
[[package]]
name = "async-trait"
2025-03-15 11:59:03 -04:00
version = "0.1.88"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-24 09:30:06 -05:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "atomic-waker"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
[[package]]
name = "atomicwrites"
version = "0.4.2"
source = "git+https://github.com/jackpot51/rust-atomicwrites#043ab4859d53ffd3d55334685303d8df39c9f768"
dependencies = [
2025-02-19 17:55:33 +01:00
"rustix 0.38.44",
2024-01-03 15:27:32 -07:00
"tempfile",
"windows-sys 0.48.0",
]
[[package]]
name = "atspi"
2024-02-09 07:09:51 -07:00
version = "0.19.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "6059f350ab6f593ea00727b334265c4dfc7fd442ee32d264794bd9bdc68e87ca"
dependencies = [
"atspi-common",
"atspi-connection",
"atspi-proxies",
]
[[package]]
name = "atspi-common"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92af95f966d2431f962bc632c2e68eda7777330158bf640c4af4249349b2cdf5"
2024-01-03 15:27:32 -07:00
dependencies = [
"enumflags2",
"serde",
2024-02-09 07:09:51 -07:00
"static_assertions",
2024-05-20 14:09:45 -06:00
"zbus 3.15.2",
2024-05-17 08:56:19 -06:00
"zbus_names 2.6.1",
2024-05-20 14:09:45 -06:00
"zvariant 3.15.2",
2024-01-03 15:27:32 -07:00
]
[[package]]
2024-02-09 07:09:51 -07:00
name = "atspi-connection"
version = "0.3.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "a0c65e7d70f86d4c0e3b2d585d9bf3f979f0b19d635a336725a88d279f76b939"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-02-09 07:09:51 -07:00
"atspi-common",
"atspi-proxies",
"futures-lite 1.13.0",
2024-05-20 14:09:45 -06:00
"zbus 3.15.2",
2024-02-09 07:09:51 -07:00
]
[[package]]
name = "atspi-proxies"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6495661273703e7a229356dcbe8c8f38223d697aacfaf0e13590a9ac9977bb52"
dependencies = [
"atspi-common",
"serde",
2024-05-20 14:09:45 -06:00
"zbus 3.15.2",
2024-01-03 15:27:32 -07:00
]
2025-04-15 20:04:07 -04:00
[[package]]
name = "auto_enums"
version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c170965892137a3a9aeb000b4524aa3cc022a310e709d848b6e1cdce4ab4781"
dependencies = [
"derive_utils",
"proc-macro2",
"quote",
"syn 2.0.104",
2025-04-15 20:04:07 -04:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "autocfg"
2025-06-19 10:06:15 -04:00
version = "1.5.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-19 10:06:15 -04:00
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
2024-01-03 15:27:32 -07:00
2024-11-11 09:14:03 -07:00
[[package]]
name = "av1-grain"
2025-06-18 11:22:48 -04:00
version = "0.2.4"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "4f3efb2ca85bc610acfa917b5aaa36f3fcbebed5b3182d7f877b02531c4b80c8"
2024-11-11 09:14:03 -07:00
dependencies = [
"anyhow",
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-11-11 09:14:03 -07:00
"log",
2025-02-19 17:55:33 +01:00
"nom",
2024-11-11 09:14:03 -07:00
"num-rational",
"v_frame",
]
[[package]]
name = "avif-serialize"
2025-07-10 15:27:51 -06:00
version = "0.8.5"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "2ea8ef51aced2b9191c08197f55450d830876d9933f8f48a429b354f1d496b42"
2024-11-11 09:14:03 -07:00
dependencies = [
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-11-11 09:14:03 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "backtrace"
2025-06-18 11:22:48 -04:00
version = "0.3.75"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
2024-01-03 15:27:32 -07:00
dependencies = [
"addr2line",
"cfg-if",
2024-01-03 15:27:32 -07:00
"libc",
2024-10-25 13:24:17 +02:00
"miniz_oxide",
2024-01-03 15:27:32 -07:00
"object",
"rustc-demangle",
"windows-targets 0.52.6",
2024-01-03 15:27:32 -07:00
]
2024-10-21 13:51:10 -06:00
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2024-08-19 13:25:36 -06:00
[[package]]
name = "basic-toml"
2025-03-15 11:59:03 -04:00
version = "0.1.10"
2024-08-19 13:25:36 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
2024-08-19 13:25:36 -06:00
dependencies = [
"serde",
]
[[package]]
name = "bindgen"
version = "0.69.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"cexpr",
"clang-sys",
"itertools",
"lazy_static",
"lazycell",
"log",
"prettyplease",
"proc-macro2",
"quote",
"regex",
"rustc-hash 1.1.0",
"shlex",
"syn 2.0.104",
"which",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "bit-set"
2024-10-21 13:51:10 -06:00
version = "0.6.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "f0481a0e032742109b1133a095184ee93d88f3dc9e0d28a5d033dc77a073f44f"
2024-01-03 15:27:32 -07:00
dependencies = [
"bit-vec",
]
[[package]]
name = "bit-vec"
2024-10-21 13:51:10 -06:00
version = "0.7.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "d2c54ff287cfc0a34f38a6b832ea1bd8e448a330b3e40a50859e6488bee07f22"
2024-01-03 15:27:32 -07:00
[[package]]
name = "bit_field"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
2025-06-18 11:22:48 -04:00
version = "2.9.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
2024-01-03 15:27:32 -07:00
dependencies = [
"serde",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "bitstream-io"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2"
2024-01-03 15:27:32 -07:00
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
[[package]]
name = "block2"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
dependencies = [
2025-04-15 20:04:07 -04:00
"objc2 0.5.2",
]
[[package]]
name = "block2"
version = "0.6.1"
2025-04-15 20:04:07 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2"
2025-04-15 20:04:07 -04:00
dependencies = [
"objc2 0.6.1",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "blocking"
2025-07-10 15:27:51 -06:00
version = "1.6.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-02-09 07:09:51 -07:00
"async-channel",
2024-01-03 15:27:32 -07:00
"async-task",
"futures-io",
2025-01-13 09:03:23 -07:00
"futures-lite 2.6.0",
2024-01-03 15:27:32 -07:00
"piper",
]
[[package]]
name = "brotli-decompressor"
version = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
2024-05-31 14:54:19 -06:00
[[package]]
name = "bstr"
2025-04-15 20:04:07 -04:00
version = "1.12.0"
2024-05-31 14:54:19 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
2024-05-31 14:54:19 -06:00
dependencies = [
"memchr",
"serde",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "built"
2025-02-19 17:55:33 +01:00
version = "0.7.7"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b"
2024-11-11 09:14:03 -07:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "bumpalo"
2025-06-27 11:14:09 -06:00
version = "3.19.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-27 11:14:09 -06:00
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
2024-01-03 15:27:32 -07:00
2024-04-30 13:29:58 -06:00
[[package]]
name = "by_address"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
2024-01-03 15:27:32 -07:00
[[package]]
name = "bytemuck"
2025-06-18 11:22:48 -04:00
version = "1.23.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422"
2024-01-03 15:27:32 -07:00
dependencies = [
"bytemuck_derive",
]
[[package]]
name = "bytemuck_derive"
2025-07-22 09:15:33 -06:00
version = "1.10.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "441473f2b4b0459a68628c744bc61d23e730fb00128b841d30fa4bb3972257e4"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "byteorder"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2024-11-11 09:14:03 -07:00
[[package]]
name = "byteorder-lite"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
2024-01-03 15:27:32 -07:00
[[package]]
name = "bytes"
2025-03-15 11:59:03 -04:00
version = "1.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
2025-02-19 17:55:33 +01:00
[[package]]
name = "bzip2"
2025-03-15 11:59:03 -04:00
version = "0.5.2"
2025-02-19 17:55:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
2025-02-19 17:55:33 +01:00
dependencies = [
"bzip2-sys",
]
[[package]]
name = "bzip2-sys"
2025-03-15 11:59:03 -04:00
version = "0.1.13+1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
dependencies = [
"cc",
"pkg-config",
]
[[package]]
name = "calendrical_calculations"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e97f73e95d668625c9b28a3072e6326773785a0cf807de9f3d632778438f3d38"
dependencies = [
"core_maths",
"displaydoc",
]
[[package]]
name = "calloop"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"log",
2025-07-22 09:15:33 -06:00
"polling 3.9.0",
2025-02-19 17:55:33 +01:00
"rustix 0.38.44",
"slab",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
]
[[package]]
name = "calloop-wayland-source"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20"
dependencies = [
2024-10-21 13:51:10 -06:00
"calloop",
2025-02-19 17:55:33 +01:00
"rustix 0.38.44",
"wayland-backend",
"wayland-client",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "cc"
2025-07-22 09:15:33 -06:00
version = "1.2.30"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-03-04 10:28:16 -07:00
"jobserver",
2024-01-03 15:27:32 -07:00
"libc",
2024-08-19 13:25:36 -06:00
"shlex",
2024-01-03 15:27:32 -07:00
]
2024-02-09 07:09:51 -07:00
[[package]]
name = "cesu8"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
[[package]]
name = "cexpr"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
dependencies = [
"nom",
]
2024-08-28 08:54:44 +02:00
[[package]]
name = "cfb"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
dependencies = [
"byteorder",
"fnv",
"uuid",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "cfg-expr"
version = "0.15.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
dependencies = [
"smallvec",
2025-06-18 11:22:48 -04:00
"target-lexicon 0.12.16",
2024-11-11 09:14:03 -07:00
]
2024-01-24 09:30:06 -05:00
[[package]]
name = "cfg-expr"
2025-07-10 15:27:51 -06:00
version = "0.20.1"
2024-01-24 09:30:06 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "0d0390889d58f934f01cd49736275b4c2da15bcfc328c78ff2349907e6cabf22"
2024-01-24 09:30:06 -05:00
dependencies = [
"smallvec",
2025-06-18 11:22:48 -04:00
"target-lexicon 0.13.2",
2024-01-24 09:30:06 -05:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "cfg-if"
2025-06-18 11:22:48 -04:00
version = "1.0.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
2024-01-03 15:27:32 -07:00
[[package]]
name = "cfg_aliases"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
2024-02-09 07:09:51 -07:00
[[package]]
name = "cfg_aliases"
2024-05-14 11:15:54 -06:00
version = "0.2.1"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 11:15:54 -06:00
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
2024-02-09 07:09:51 -07:00
2024-01-05 14:44:20 -07:00
[[package]]
name = "chrono"
version = "0.4.41"
2024-01-05 14:44:20 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
2024-01-05 14:44:20 -07:00
dependencies = [
"android-tzdata",
"iana-time-zone",
"js-sys",
"num-traits",
"pure-rust-locales",
2025-06-18 11:22:48 -04:00
"serde",
2024-01-05 14:44:20 -07:00
"wasm-bindgen",
2025-03-15 11:59:03 -04:00
"windows-link",
2024-01-05 14:44:20 -07:00
]
[[package]]
name = "cipher"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
]
[[package]]
name = "clang-sys"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
dependencies = [
"glob",
"libc",
"libloading",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "clipboard-win"
2025-07-22 09:15:33 -06:00
version = "5.4.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
2024-01-03 15:27:32 -07:00
dependencies = [
"error-code",
]
[[package]]
name = "clipboard_macos"
version = "0.1.0"
2025-01-14 08:54:43 -07:00
source = "git+https://github.com/pop-os/window_clipboard.git?tag=pop-0.13-2#6b9faab87bea9cebec6ae036906fd67fed254f5f"
2024-01-03 15:27:32 -07:00
dependencies = [
"objc",
"objc-foundation",
"objc_id",
]
[[package]]
name = "clipboard_wayland"
2024-02-13 12:29:50 -07:00
version = "0.2.2"
2025-01-14 08:54:43 -07:00
source = "git+https://github.com/pop-os/window_clipboard.git?tag=pop-0.13-2#6b9faab87bea9cebec6ae036906fd67fed254f5f"
2024-01-03 15:27:32 -07:00
dependencies = [
"dnd",
2024-03-18 12:23:08 -06:00
"mime 0.1.0",
2024-01-03 15:27:32 -07:00
"smithay-clipboard",
]
[[package]]
name = "clipboard_x11"
2024-02-13 12:29:50 -07:00
version = "0.4.2"
2025-01-14 08:54:43 -07:00
source = "git+https://github.com/pop-os/window_clipboard.git?tag=pop-0.13-2#6b9faab87bea9cebec6ae036906fd67fed254f5f"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-02-09 07:09:51 -07:00
"x11rb",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "cocoa"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c"
dependencies = [
"bitflags 1.3.2",
"block",
"cocoa-foundation",
"core-foundation",
"core-graphics",
"foreign-types",
2024-01-03 15:27:32 -07:00
"libc",
"objc",
]
[[package]]
name = "cocoa-foundation"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7"
dependencies = [
"bitflags 1.3.2",
"block",
"core-foundation",
2024-01-03 15:27:32 -07:00
"core-graphics-types",
"libc",
"objc",
]
[[package]]
name = "codespan-reporting"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
dependencies = [
"termcolor",
"unicode-width",
]
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2024-01-28 06:23:40 -05:00
[[package]]
name = "colorchoice"
2025-06-18 11:22:48 -04:00
version = "1.0.4"
2024-01-28 06:23:40 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
2024-01-28 06:23:40 -05:00
2024-01-03 15:27:32 -07:00
[[package]]
2024-02-09 07:09:51 -07:00
name = "com"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e17887fd17353b65b1b2ef1c526c83e26cd72e74f598a8dc1bee13a48f3d9f6"
dependencies = [
"com_macros",
]
[[package]]
name = "com_macros"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d375883580a668c7481ea6631fc1a8863e33cc335bf56bfad8d7e6d4b04b13a5"
dependencies = [
"com_macros_support",
"proc-macro2",
"syn 1.0.109",
]
[[package]]
name = "com_macros_support"
version = "0.6.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "ad899a1087a9296d5644792d7cb72b8e34c1bec8e7d4fbc002230169a6e8710c"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "combine"
2024-04-13 08:46:38 -06:00
version = "4.6.7"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 08:46:38 -06:00
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
2024-02-09 07:09:51 -07:00
dependencies = [
"bytes",
"memchr",
]
2024-01-03 15:27:32 -07:00
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "compio"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c52183b7eefcaa6441fe810885a34fcdec7378e2883673fc3d74ca6e9ff738b"
dependencies = [
"compio-buf",
"compio-dispatcher",
"compio-driver",
"compio-fs",
"compio-io",
"compio-log",
"compio-macros",
"compio-net",
"compio-process",
"compio-quic",
"compio-runtime",
"compio-signal",
]
[[package]]
name = "compio-buf"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d14413106aad7dd931df3c4724110dabd731c81d52ba18edb4f2d57e7beb611b"
dependencies = [
"arrayvec",
"bytes",
"libc",
]
[[package]]
name = "compio-dispatcher"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ae8fab55190537c8634232f395302011ce39c18facbd4b85363df41114677ac"
dependencies = [
"compio-driver",
"compio-runtime",
"flume",
"futures-channel",
]
[[package]]
name = "compio-driver"
2025-06-18 11:22:48 -04:00
version = "0.7.1"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "469f8e58596d82e2a0e17cb8216094cc75e8285fc7048907767cdb0337286f19"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
dependencies = [
"aligned-array",
"cfg-if",
"cfg_aliases 0.2.1",
"compio-buf",
"compio-log",
"crossbeam-channel",
"crossbeam-queue",
"futures-util",
"io-uring",
"libc",
"once_cell",
"paste",
2025-07-22 09:15:33 -06:00
"polling 3.9.0",
2025-06-18 11:22:48 -04:00
"socket2 0.5.10",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"windows-sys 0.52.0",
]
[[package]]
name = "compio-fs"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dee2c5ba7c96f0caf3d62ed745278b26eebd4e9296817c4ef2ad6c359629f8ab"
dependencies = [
"cfg-if",
"cfg_aliases 0.2.1",
"compio-buf",
"compio-driver",
"compio-io",
"compio-runtime",
"libc",
"os_pipe",
"widestring",
"windows-sys 0.52.0",
]
[[package]]
name = "compio-io"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c18b1d7d4c058e3e92e9265d59f74981fda2693809b1e45f8ed7717d892c8ac"
dependencies = [
"compio-buf",
"futures-util",
"paste",
]
[[package]]
name = "compio-log"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc4e560213c1996b618da369b7c9109564b41af9033802ae534465c4ee4e132f"
dependencies = [
"tracing",
]
[[package]]
name = "compio-macros"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f05ed201484967dc70de77a8f7a02b29aaa8e6c81cbea2e75492ee0c8d97766b"
dependencies = [
"proc-macro-crate 3.3.0",
"proc-macro2",
"quote",
"syn 2.0.104",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
]
[[package]]
name = "compio-net"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0882a85c535c7b5d6ea3b9b37cc7421ec3f8ae8b83a09eb53f4295fb87b54995"
dependencies = [
"cfg-if",
"compio-buf",
"compio-driver",
"compio-io",
"compio-runtime",
"either",
"libc",
"once_cell",
2025-06-18 11:22:48 -04:00
"socket2 0.5.10",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"widestring",
"windows-sys 0.52.0",
]
[[package]]
name = "compio-process"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9dc299e4c0a2cdc4455bb4df86c554845d1abe611a1922e4b12a8af2a0fadc35"
dependencies = [
"cfg-if",
"compio-buf",
"compio-driver",
"compio-io",
"compio-runtime",
"futures-util",
"windows-sys 0.52.0",
]
[[package]]
name = "compio-quic"
2025-06-18 11:22:48 -04:00
version = "0.3.1"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "e8ab46b819ec5d08936218e9afc64f51ae660d128cd408458b08b457223a0541"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
dependencies = [
"cfg_aliases 0.2.1",
"compio-buf",
"compio-io",
"compio-log",
"compio-net",
"compio-runtime",
"flume",
"futures-util",
"libc",
"quinn-proto",
"rustc-hash 2.1.1",
"rustls",
"thiserror 2.0.12",
"windows-sys 0.52.0",
]
[[package]]
name = "compio-runtime"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a95ef126945a166879ef37d494015be13a1e4e452419bc4e5c4c5799f441756a"
dependencies = [
"async-task",
"cfg-if",
"compio-buf",
"compio-driver",
"compio-log",
"crossbeam-queue",
"futures-util",
"libc",
"once_cell",
"scoped-tls",
"slab",
2025-06-18 11:22:48 -04:00
"socket2 0.5.10",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"windows-sys 0.52.0",
]
[[package]]
name = "compio-signal"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd30ba3a28cd73fa49a6e4f1c31c1ad4742fb33802662aadf9ed188ae8a8f0e4"
dependencies = [
"compio-buf",
"compio-driver",
"compio-runtime",
"libc",
"once_cell",
"os_pipe",
"slab",
"windows-sys 0.52.0",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "concurrent-queue"
version = "2.5.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
2024-01-03 15:27:32 -07:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "constant_time_eq"
2024-08-27 07:26:47 -06:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-27 07:26:47 -06:00
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
2024-01-03 15:27:32 -07:00
[[package]]
name = "core-foundation"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
dependencies = [
"core-foundation-sys",
2024-01-03 15:27:32 -07:00
"libc",
]
[[package]]
name = "core-foundation-sys"
2024-08-19 13:25:36 -06:00
version = "0.8.7"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-19 13:25:36 -06:00
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
2024-01-03 15:27:32 -07:00
[[package]]
name = "core-graphics"
version = "0.23.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
2024-01-03 15:27:32 -07:00
dependencies = [
"bitflags 1.3.2",
"core-foundation",
2024-01-03 15:27:32 -07:00
"core-graphics-types",
"foreign-types",
2024-01-03 15:27:32 -07:00
"libc",
]
[[package]]
name = "core-graphics-types"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"libc",
]
[[package]]
name = "core_maths"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
dependencies = [
"libm",
]
2024-06-27 09:03:44 -06:00
[[package]]
name = "cosmic-client-toolkit"
version = "0.1.0"
2025-02-19 17:55:33 +01:00
source = "git+https://github.com/pop-os/cosmic-protocols?rev=178eb0b#178eb0b14a0e5c192f64f6dee6c40341a8e5ee51"
2024-06-27 09:03:44 -06:00
dependencies = [
"cosmic-protocols",
"libc",
2024-10-21 13:51:10 -06:00
"smithay-client-toolkit",
2024-06-27 09:03:44 -06:00
"wayland-client",
2024-12-03 12:38:15 -05:00
"wayland-protocols",
2024-06-27 09:03:44 -06:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "cosmic-config"
version = "0.1.0"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
"atomicwrites",
"cosmic-config-derive",
2025-02-19 17:55:33 +01:00
"cosmic-settings-daemon",
2025-03-31 08:52:18 -06:00
"dirs 6.0.0",
2025-02-19 17:55:33 +01:00
"futures-util",
2024-01-03 15:27:32 -07:00
"iced_futures",
2024-01-28 06:23:40 -05:00
"known-folders",
2025-07-10 15:27:51 -06:00
"notify 8.1.0",
2024-01-03 15:27:32 -07:00
"once_cell",
"ron",
"serde",
2024-05-14 11:15:54 -06:00
"tokio",
"tracing",
2024-01-28 06:23:40 -05:00
"xdg",
2025-07-22 09:15:33 -06:00
"zbus 5.9.0",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "cosmic-config-derive"
version = "0.1.0"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "cosmic-files"
version = "0.1.0"
dependencies = [
"anyhow",
2025-03-15 11:59:03 -04:00
"bzip2",
2024-01-05 14:44:20 -07:00
"chrono",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"compio",
"cosmic-client-toolkit",
"cosmic-mime-apps",
2025-02-19 17:55:33 +01:00
"dirs 6.0.0",
2024-02-26 15:15:49 -07:00
"env_logger",
2025-01-10 09:55:04 -07:00
"fastrand 2.3.0",
"flate2",
2024-01-03 15:27:32 -07:00
"fork",
"freedesktop_entry_parser",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"futures",
"gio",
"glib",
2024-07-03 12:24:35 -06:00
"glob",
2024-01-03 15:27:32 -07:00
"i18n-embed",
"i18n-embed-fl",
"icu",
"icu_collator",
2025-06-18 11:22:48 -04:00
"icu_provider 1.5.0",
2024-05-31 14:54:19 -06:00
"ignore",
"image",
"io-uring",
"jxl-oxide",
2024-03-04 10:28:16 -07:00
"libc",
2024-01-03 15:27:32 -07:00
"libcosmic",
"log",
"md-5",
2024-02-22 15:04:37 -07:00
"mime_guess",
"notify-debouncer-full",
"notify-rust",
2024-01-24 09:30:06 -05:00
"once_cell",
"open",
"ordermap",
"paste",
"png",
"procfs",
2024-08-28 08:54:44 +02:00
"recently-used-xbel",
2024-05-31 14:54:19 -06:00
"regex",
2024-01-03 15:27:32 -07:00
"rust-embed",
"serde",
2024-03-04 10:28:16 -07:00
"shlex",
2024-04-22 23:14:44 +02:00
"slotmap",
"tar",
"tempfile",
"test-log",
"tikv-jemallocator",
2024-01-03 15:27:32 -07:00
"tokio",
2024-01-05 16:17:23 -07:00
"trash",
2024-03-20 08:42:28 -06:00
"url",
2024-08-27 07:26:47 -06:00
"uzers",
"vergen",
"walkdir",
2024-08-20 13:26:10 -06:00
"wayland-client",
"xdg",
"xdg-mime",
"xz2",
"zip",
2024-01-03 15:27:32 -07:00
]
2024-08-20 13:26:10 -06:00
[[package]]
name = "cosmic-files-applet"
version = "0.1.0"
dependencies = [
"cosmic-files",
"log",
2025-07-22 09:15:33 -06:00
"zbus 5.9.0",
2024-08-20 13:26:10 -06:00
]
2025-01-10 09:55:04 -07:00
[[package]]
name = "cosmic-freedesktop-icons"
version = "0.3.0"
2025-04-15 20:04:07 -04:00
source = "git+https://github.com/pop-os/freedesktop-icons#8a05c322c482ff3c69cf34bacfee98907ac45307"
2025-01-10 09:55:04 -07:00
dependencies = [
"dirs 5.0.1",
2025-01-13 09:03:23 -07:00
"ini_core",
2025-07-22 09:15:33 -06:00
"memmap2 0.9.7",
2025-04-15 20:04:07 -04:00
"thiserror 2.0.12",
2025-01-10 09:55:04 -07:00
"tracing",
"xdg",
]
[[package]]
name = "cosmic-mime-apps"
version = "0.1.0"
2025-07-22 09:15:33 -06:00
source = "git+https://github.com/pop-os/cosmic-mime-apps.git#24ee9e9a743c570437875b9d2066bda0ef7dba98"
dependencies = [
2025-03-15 11:59:03 -04:00
"freedesktop-desktop-entry",
"mime 0.3.17",
"quick-xml 0.37.5",
"xdg",
]
2024-06-27 09:03:44 -06:00
[[package]]
name = "cosmic-protocols"
version = "0.1.0"
2025-02-19 17:55:33 +01:00
source = "git+https://github.com/pop-os/cosmic-protocols?rev=178eb0b#178eb0b14a0e5c192f64f6dee6c40341a8e5ee51"
2024-06-27 09:03:44 -06:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-06-27 09:03:44 -06:00
"wayland-backend",
"wayland-client",
2024-10-21 13:51:10 -06:00
"wayland-protocols",
"wayland-protocols-wlr",
2024-06-27 09:03:44 -06:00
"wayland-scanner",
"wayland-server",
]
2025-06-18 11:22:48 -04:00
[[package]]
name = "cosmic-settings-config"
version = "0.1.0"
2025-07-22 09:15:33 -06:00
source = "git+https://github.com/pop-os/cosmic-settings-daemon#f4f4fb39fb000bf8458404fe1629fb07cfd07235"
2025-06-18 11:22:48 -04:00
dependencies = [
"cosmic-config",
"ron",
"serde",
"serde_with",
"thiserror 2.0.12",
"tracing",
"xkbcommon",
]
2025-02-19 17:55:33 +01:00
[[package]]
name = "cosmic-settings-daemon"
version = "0.1.0"
2025-06-18 11:22:48 -04:00
source = "git+https://github.com/pop-os/dbus-settings-bindings#3b86984332be2c930a3536ab714b843c851fa8ca"
2025-02-19 17:55:33 +01:00
dependencies = [
2025-07-22 09:15:33 -06:00
"zbus 5.9.0",
2025-02-19 17:55:33 +01:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "cosmic-text"
2025-04-15 20:04:07 -04:00
version = "0.14.2"
2025-07-16 21:09:58 -04:00
source = "git+https://github.com/pop-os/cosmic-text.git#7646989d6f5b0d2bfe32a123e10fe13693d7c89c"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"fontdb 0.23.0",
2024-01-03 15:27:32 -07:00
"log",
"rangemap",
2024-10-21 13:51:10 -06:00
"rustc-hash 1.1.0",
"rustybuzz",
2025-04-15 20:04:07 -04:00
"self_cell 1.2.0",
2024-09-06 07:25:03 -06:00
"smol_str",
2024-01-03 15:27:32 -07:00
"swash",
"sys-locale",
"ttf-parser 0.21.1",
2024-01-03 15:27:32 -07:00
"unicode-bidi",
"unicode-linebreak",
"unicode-script",
"unicode-segmentation",
]
[[package]]
name = "cosmic-theme"
version = "0.1.0"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
"almost",
"cosmic-config",
"csscolorparser",
2025-03-31 08:52:18 -06:00
"dirs 6.0.0",
2024-01-03 15:27:32 -07:00
"lazy_static",
"palette",
"ron",
"serde",
2024-05-14 11:15:54 -06:00
"serde_json",
2025-03-31 08:52:18 -06:00
"thiserror 2.0.12",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "cpufeatures"
2025-02-19 17:55:33 +01:00
version = "0.2.17"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
2024-01-03 15:27:32 -07:00
dependencies = [
"libc",
]
[[package]]
name = "crc"
2025-06-18 11:22:48 -04:00
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
2024-01-03 15:27:32 -07:00
[[package]]
name = "crc32fast"
2025-07-22 09:15:33 -06:00
version = "1.5.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "crossbeam-channel"
2025-04-15 20:04:07 -04:00
version = "0.5.15"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
2024-01-03 15:27:32 -07:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2025-01-10 09:55:04 -07:00
version = "0.8.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
2024-01-03 15:27:32 -07:00
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2024-01-09 15:34:48 -07:00
version = "0.9.18"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-09 15:34:48 -07:00
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
2024-01-03 15:27:32 -07:00
dependencies = [
"crossbeam-utils",
]
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "crossbeam-queue"
version = "0.3.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
dependencies = [
"crossbeam-utils",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "crossbeam-utils"
2025-01-10 09:55:04 -07:00
version = "0.8.21"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
2024-01-03 15:27:32 -07:00
[[package]]
name = "crunchy"
2025-06-27 11:14:09 -06:00
version = "0.2.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-27 11:14:09 -06:00
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
2024-01-03 15:27:32 -07:00
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "css-color"
2024-02-26 15:15:49 -07:00
version = "0.2.8"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:15:49 -07:00
checksum = "42aaeae719fd78ce501d77c6cdf01f7e96f26bcd5617a4903a1c2b97e388543a"
2024-01-03 15:27:32 -07:00
[[package]]
name = "csscolorparser"
2025-06-18 11:22:48 -04:00
version = "0.7.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "5fda6aace1fbef3aa217b27f4c8d7d071ef2a70a5ca51050b1f17d40299d3f16"
2024-01-03 15:27:32 -07:00
dependencies = [
"phf",
"serde",
]
[[package]]
2024-05-28 19:05:59 -06:00
name = "ctor-lite"
version = "0.1.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-28 19:05:59 -06:00
checksum = "1f791803201ab277ace03903de1594460708d2d54df6053f2d9e82f592b19e3b"
2024-01-03 15:27:32 -07:00
[[package]]
name = "cursor-icon"
2025-06-18 11:22:48 -04:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
2024-01-03 15:27:32 -07:00
[[package]]
name = "d3d12"
2024-10-21 13:51:10 -06:00
version = "22.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdbd1f579714e3c809ebd822c81ef148b1ceaeb3d535352afc73fd0c4c6a0017"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-10-21 13:51:10 -06:00
"libloading",
2024-01-03 15:27:32 -07:00
"winapi",
]
[[package]]
name = "darling"
version = "0.20.11"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
2024-01-03 15:27:32 -07:00
dependencies = [
"darling_core",
"darling_macro",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "darling_core"
version = "0.20.11"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
2024-01-03 15:27:32 -07:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
2025-02-19 17:55:33 +01:00
"strsim",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "darling_macro"
version = "0.20.11"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
2024-01-03 15:27:32 -07:00
dependencies = [
"darling_core",
2024-01-03 15:27:32 -07:00
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "data-url"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a"
[[package]]
name = "deflate64"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
[[package]]
name = "deranged"
2025-04-15 20:04:07 -04:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
dependencies = [
"powerfmt",
2025-06-18 11:22:48 -04:00
"serde",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "derivative"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "derive_arbitrary"
2024-11-05 15:37:36 -07:00
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-05 15:37:36 -07:00
checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "derive_setters"
2025-07-10 15:27:51 -06:00
version = "0.1.8"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "ae5c625eda104c228c06ecaf988d1c60e542176bd7a490e60eeda3493244c0c9"
2024-01-03 15:27:32 -07:00
dependencies = [
"darling",
2024-01-03 15:27:32 -07:00
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
2025-04-15 20:04:07 -04:00
[[package]]
name = "derive_utils"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccfae181bab5ab6c5478b2ccb69e4c68a02f8c3ec72f6616bfec9dbc599d2ee0"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2025-04-15 20:04:07 -04:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
"subtle",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "dirs"
version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
dependencies = [
"dirs-sys 0.4.1",
2024-01-03 15:27:32 -07:00
]
2025-02-19 17:55:33 +01:00
[[package]]
name = "dirs"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
dependencies = [
"dirs-sys 0.5.0",
]
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
"cfg-if",
"dirs-sys-next",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "dirs-sys"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
dependencies = [
"libc",
"option-ext",
2025-02-19 17:55:33 +01:00
"redox_users 0.4.6",
2024-01-03 15:27:32 -07:00
"windows-sys 0.48.0",
]
2025-02-19 17:55:33 +01:00
[[package]]
name = "dirs-sys"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
dependencies = [
"libc",
"option-ext",
"redox_users 0.5.0",
2025-06-18 11:22:48 -04:00
"windows-sys 0.60.2",
2025-02-19 17:55:33 +01:00
]
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [
"libc",
2025-02-19 17:55:33 +01:00
"redox_users 0.4.6",
"winapi",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "dispatch"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
[[package]]
name = "dispatch2"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-07-22 09:15:33 -06:00
"block2 0.6.1",
"libc",
"objc2 0.6.1",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "displaydoc"
2024-06-27 09:03:44 -06:00
version = "0.2.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-27 09:03:44 -06:00
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "dlib"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
dependencies = [
2024-10-21 13:51:10 -06:00
"libloading",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "dnd"
version = "0.1.0"
2025-01-14 08:54:43 -07:00
source = "git+https://github.com/pop-os/window_clipboard.git?tag=pop-0.13-2#6b9faab87bea9cebec6ae036906fd67fed254f5f"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"mime 0.1.0",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2024-10-21 13:51:10 -06:00
"smithay-client-toolkit",
"smithay-clipboard",
]
2024-10-21 13:51:10 -06:00
[[package]]
name = "document-features"
2025-02-19 17:55:33 +01:00
version = "0.2.11"
2024-10-21 13:51:10 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
2024-10-21 13:51:10 -06:00
dependencies = [
"litrs",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "downcast-rs"
2024-04-13 08:46:38 -06:00
version = "1.2.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 08:46:38 -06:00
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
2024-01-03 15:27:32 -07:00
2024-10-21 13:51:10 -06:00
[[package]]
name = "dpi"
version = "0.1.1"
2024-10-29 14:29:20 -06:00
source = "git+https://github.com/pop-os/winit.git?tag=iced-xdg-surface-0.13#1cc02bdab141072eaabad639d74b032fd0fcc62e"
2024-10-21 13:51:10 -06:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "drm"
2024-02-09 07:09:51 -07:00
version = "0.11.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "a0f8a69e60d75ae7dab4ef26a59ca99f2a89d4c142089b537775ae0c198bdcde"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"bytemuck",
"drm-ffi",
"drm-fourcc",
2025-02-19 17:55:33 +01:00
"rustix 0.38.44",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "drm-ffi"
2024-02-09 07:09:51 -07:00
version = "0.7.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "41334f8405792483e32ad05fbb9c5680ff4e84491883d2947a4757dc54cb2ac6"
2024-01-03 15:27:32 -07:00
dependencies = [
"drm-sys",
2025-02-19 17:55:33 +01:00
"rustix 0.38.44",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "drm-fourcc"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4"
[[package]]
name = "drm-sys"
2024-02-09 07:09:51 -07:00
version = "0.6.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "2d09ff881f92f118b11105ba5e34ff8f4adf27b30dae8f12e28c193af1c83176"
dependencies = [
"libc",
2024-08-19 13:25:36 -06:00
"linux-raw-sys 0.6.5",
2024-02-09 07:09:51 -07:00
]
2024-01-03 15:27:32 -07:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "dyn-clone"
2025-07-29 17:11:26 -04:00
version = "1.0.20"
2025-06-18 11:22:48 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
2025-06-18 11:22:48 -04:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "either"
2025-03-15 11:59:03 -04:00
version = "1.15.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
2024-05-17 08:56:19 -06:00
[[package]]
name = "endi"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf"
2024-01-03 15:27:32 -07:00
[[package]]
name = "enumflags2"
2025-06-18 11:22:48 -04:00
version = "0.7.12"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
2024-01-03 15:27:32 -07:00
dependencies = [
"enumflags2_derive",
"serde",
]
[[package]]
name = "enumflags2_derive"
2025-06-18 11:22:48 -04:00
version = "0.7.12"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
2024-01-28 06:23:40 -05:00
[[package]]
name = "env_filter"
2025-01-10 09:55:04 -07:00
version = "0.1.3"
2024-01-28 06:23:40 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
2024-01-28 06:23:40 -05:00
dependencies = [
"log",
"regex",
]
2024-02-01 15:14:14 -07:00
[[package]]
name = "env_logger"
2025-04-15 20:04:07 -04:00
version = "0.11.8"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-01-28 06:23:40 -05:00
"anstream",
"anstyle",
"env_filter",
2025-03-15 11:59:03 -04:00
"jiff",
2024-01-03 15:27:32 -07:00
"log",
]
2025-06-18 11:22:48 -04:00
[[package]]
name = "equator"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
dependencies = [
"equator-macro",
]
[[package]]
name = "equator-macro"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2025-06-18 11:22:48 -04:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "equivalent"
2025-02-19 17:55:33 +01:00
version = "1.0.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
2024-01-03 15:27:32 -07:00
[[package]]
name = "errno"
version = "0.3.13"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
2024-01-03 15:27:32 -07:00
dependencies = [
"libc",
"windows-sys 0.60.2",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "error-code"
2025-06-18 11:22:48 -04:00
version = "3.3.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
2024-01-03 15:27:32 -07:00
[[package]]
name = "etagere"
2025-02-19 17:55:33 +01:00
version = "0.2.15"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "fc89bf99e5dc15954a60f707c1e09d7540e5cd9af85fa75caa0b510bc08c5342"
2024-01-03 15:27:32 -07:00
dependencies = [
"euclid",
"svg_fmt",
]
[[package]]
name = "euclid"
2024-08-29 10:12:03 -06:00
version = "0.22.11"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-29 10:12:03 -06:00
checksum = "ad9cdb4b747e485a12abb0e6566612956c7a1bafa3bdb8d682c5b6d403589e48"
2024-01-03 15:27:32 -07:00
dependencies = [
"num-traits",
]
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
[[package]]
name = "event-listener"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
2024-02-09 07:09:51 -07:00
[[package]]
name = "event-listener"
2025-01-10 09:55:04 -07:00
version = "5.4.0"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
2024-02-09 07:09:51 -07:00
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
[[package]]
name = "event-listener-strategy"
version = "0.5.4"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
2024-02-09 07:09:51 -07:00
dependencies = [
2025-01-10 09:55:04 -07:00
"event-listener 5.4.0",
2024-02-09 07:09:51 -07:00
"pin-project-lite",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "exr"
2024-10-25 13:24:17 +02:00
version = "1.73.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-25 13:24:17 +02:00
checksum = "f83197f59927b46c04a183a619b7c29df34e63e63c7869320862268c0ef687e0"
2024-01-03 15:27:32 -07:00
dependencies = [
"bit_field",
"half",
"lebe",
2024-10-25 13:24:17 +02:00
"miniz_oxide",
2024-01-03 15:27:32 -07:00
"rayon-core",
"smallvec",
"zune-inflate",
]
[[package]]
name = "fast-srgb8"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
[[package]]
name = "fastrand"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
[[package]]
name = "fastrand"
2025-01-10 09:55:04 -07:00
version = "2.3.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
2024-01-03 15:27:32 -07:00
[[package]]
name = "fdeflate"
2025-01-10 09:55:04 -07:00
version = "0.3.7"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
2024-01-03 15:27:32 -07:00
dependencies = [
"simd-adler32",
]
[[package]]
name = "file-id"
2024-10-29 14:29:20 -06:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-29 14:29:20 -06:00
checksum = "6bc904b9bbefcadbd8e3a9fb0d464a9b979de6324c03b3c663e8994f46a5be36"
dependencies = [
2024-10-29 14:29:20 -06:00
"windows-sys 0.52.0",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "filetime"
version = "0.2.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2024-01-03 15:27:32 -07:00
"libc",
2024-10-16 16:33:01 -06:00
"libredox",
2024-08-27 08:10:33 -06:00
"windows-sys 0.59.0",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "find-crate"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59a98bbaacea1c0eb6a0876280051b892eb73594fd90cf3b20e9c817029c57d2"
dependencies = [
"toml 0.5.11",
]
[[package]]
name = "fixed_decimal"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0febbeb1118a9ecdee6e4520ead6b54882e843dd0592ad233247dbee84c53db8"
dependencies = [
"displaydoc",
"smallvec",
2025-06-18 11:22:48 -04:00
"writeable 0.5.5",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "flate2"
2025-06-18 11:22:48 -04:00
version = "1.1.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
2024-01-03 15:27:32 -07:00
dependencies = [
"crc32fast",
2024-10-25 13:24:17 +02:00
"miniz_oxide",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "float-cmp"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
[[package]]
name = "float_next_after"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
[[package]]
name = "fluent"
2024-05-09 12:26:45 -06:00
version = "0.16.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-09 12:26:45 -06:00
checksum = "bb74634707bebd0ce645a981148e8fb8c7bccd4c33c652aeffd28bf2f96d555a"
2024-01-03 15:27:32 -07:00
dependencies = [
"fluent-bundle",
"unic-langid",
]
[[package]]
name = "fluent-bundle"
2024-05-09 12:26:45 -06:00
version = "0.15.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-09 12:26:45 -06:00
checksum = "7fe0a21ee80050c678013f82edf4b705fe2f26f1f9877593d13198612503f493"
2024-01-03 15:27:32 -07:00
dependencies = [
"fluent-langneg",
"fluent-syntax",
"intl-memoizer",
"intl_pluralrules",
2024-10-21 13:51:10 -06:00
"rustc-hash 1.1.0",
2024-01-03 15:27:32 -07:00
"self_cell 0.10.3",
"smallvec",
"unic-langid",
]
[[package]]
name = "fluent-langneg"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94"
dependencies = [
"unic-langid",
]
[[package]]
name = "fluent-syntax"
2024-05-09 12:26:45 -06:00
version = "0.11.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-09 12:26:45 -06:00
checksum = "2a530c4694a6a8d528794ee9bbd8ba0122e779629ac908d15ad5a7ae7763a33d"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
]
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "flume"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"spin",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2025-01-10 09:55:04 -07:00
[[package]]
name = "foldhash"
version = "0.1.5"
2025-01-10 09:55:04 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
2025-01-10 09:55:04 -07:00
2024-02-01 15:14:14 -07:00
[[package]]
name = "font-types"
2025-06-18 11:22:48 -04:00
version = "0.9.0"
2024-02-01 15:14:14 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "02a596f5713680923a2080d86de50fe472fb290693cf0f701187a1c8b36996b7"
dependencies = [
"bytemuck",
]
2024-02-01 15:14:14 -07:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "fontconfig-parser"
2025-06-18 11:22:48 -04:00
version = "0.5.8"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-10-21 13:51:10 -06:00
"roxmltree",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "fontdb"
version = "0.18.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e32eac81c1135c1df01d4e6d4233c47ba11f6a6d07f33e0bba09d18797077770"
2024-01-03 15:27:32 -07:00
dependencies = [
"fontconfig-parser",
"log",
2025-07-22 09:15:33 -06:00
"memmap2 0.9.7",
2024-01-03 15:27:32 -07:00
"slotmap",
"tinyvec",
"ttf-parser 0.21.1",
2024-01-03 15:27:32 -07:00
]
2024-10-21 13:51:10 -06:00
[[package]]
name = "fontdb"
version = "0.23.0"
2024-10-21 13:51:10 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905"
2024-10-21 13:51:10 -06:00
dependencies = [
"fontconfig-parser",
"log",
2025-07-22 09:15:33 -06:00
"memmap2 0.9.7",
2024-10-21 13:51:10 -06:00
"slotmap",
"tinyvec",
"ttf-parser 0.25.1",
2024-10-21 13:51:10 -06:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "foreign-types"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
dependencies = [
"foreign-types-macros",
"foreign-types-shared",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "foreign-types-macros"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "foreign-types-shared"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
[[package]]
name = "fork"
2025-02-19 17:55:33 +01:00
version = "0.2.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "05dc8b302e04a1c27f4fe694439ef0f29779ca4edc205b7b58f00db04e29656d"
2024-01-03 15:27:32 -07:00
dependencies = [
"libc",
]
[[package]]
name = "form_urlencoded"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
dependencies = [
"percent-encoding",
]
[[package]]
name = "freedesktop-desktop-entry"
2025-06-18 11:22:48 -04:00
version = "0.7.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "eabb78ccb4eb670a9c659f1c61e709d41fd6401cddf562f14cac1a47077918d3"
dependencies = [
"gettext-rs",
"log",
"memchr",
2025-03-15 11:59:03 -04:00
"thiserror 2.0.12",
2025-04-15 20:04:07 -04:00
"unicase",
"xdg",
]
[[package]]
name = "freedesktop_entry_parser"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db9c27b72f19a99a895f8ca89e2d26e4ef31013376e56fdafef697627306c3e4"
dependencies = [
2025-02-19 17:55:33 +01:00
"nom",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "fsevent-sys"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
dependencies = [
"libc",
]
[[package]]
name = "futures"
2024-10-05 07:39:03 -06:00
version = "0.3.31"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
2024-01-03 15:27:32 -07:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2024-10-05 07:39:03 -06:00
version = "0.3.31"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
2024-01-03 15:27:32 -07:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2024-10-05 07:39:03 -06:00
version = "0.3.31"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
2024-01-03 15:27:32 -07:00
[[package]]
name = "futures-executor"
2024-10-05 07:39:03 -06:00
version = "0.3.31"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
2024-01-03 15:27:32 -07:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
"num_cpus",
]
[[package]]
name = "futures-io"
2024-10-05 07:39:03 -06:00
version = "0.3.31"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
2024-01-03 15:27:32 -07:00
[[package]]
name = "futures-lite"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
dependencies = [
"fastrand 1.9.0",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-lite"
2025-01-13 09:03:23 -07:00
version = "2.6.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-01-10 09:55:04 -07:00
"fastrand 2.3.0",
2024-01-03 15:27:32 -07:00
"futures-core",
"futures-io",
"parking",
"pin-project-lite",
]
[[package]]
name = "futures-macro"
2024-10-05 07:39:03 -06:00
version = "0.3.31"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "futures-sink"
2024-10-05 07:39:03 -06:00
version = "0.3.31"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
2024-01-03 15:27:32 -07:00
[[package]]
name = "futures-task"
2024-10-05 07:39:03 -06:00
version = "0.3.31"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
2024-01-03 15:27:32 -07:00
[[package]]
name = "futures-util"
2024-10-05 07:39:03 -06:00
version = "0.3.31"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
2024-01-03 15:27:32 -07:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "gethostname"
version = "0.4.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
2024-01-03 15:27:32 -07:00
dependencies = [
"libc",
"windows-targets 0.48.5",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "getrandom"
version = "0.2.16"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"js-sys",
2024-01-03 15:27:32 -07:00
"libc",
2025-06-18 11:22:48 -04:00
"wasi 0.11.1+wasi-snapshot-preview1",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"wasm-bindgen",
2025-02-19 17:55:33 +01:00
]
[[package]]
name = "getrandom"
2025-06-18 11:22:48 -04:00
version = "0.3.3"
2025-02-19 17:55:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
2025-02-19 17:55:33 +01:00
dependencies = [
"cfg-if",
"js-sys",
2025-02-19 17:55:33 +01:00
"libc",
"r-efi",
"wasi 0.14.2+wasi-0.2.4",
"wasm-bindgen",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "gettext-rs"
2024-10-11 08:24:12 -06:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 08:24:12 -06:00
checksum = "a44e92f7dc08430aca7ed55de161253a22276dfd69c5526e5c5e95d1f7cf338a"
dependencies = [
"gettext-sys",
"locale_config",
]
[[package]]
name = "gettext-sys"
2024-10-11 08:24:12 -06:00
version = "0.22.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-11 08:24:12 -06:00
checksum = "bb45773f5b8945f12aecd04558f545964f943dacda1b1155b3d738f5469ef661"
dependencies = [
"cc",
"temp-dir",
]
2024-02-26 15:15:49 -07:00
[[package]]
name = "gif"
version = "0.13.3"
2024-02-26 15:15:49 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
2024-02-26 15:15:49 -07:00
dependencies = [
"color_quant",
"weezl",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "gimli"
2024-10-05 07:39:03 -06:00
version = "0.31.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-05 07:39:03 -06:00
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
2024-01-03 15:27:32 -07:00
[[package]]
name = "gio"
version = "0.20.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e27e276e7b6b8d50f6376ee7769a71133e80d093bdc363bd0af71664228b831"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
2024-05-17 08:56:19 -06:00
"gio-sys",
"glib",
"libc",
"pin-project-lite",
"smallvec",
]
[[package]]
name = "gio-sys"
2025-06-18 11:22:48 -04:00
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "521e93a7e56fc89e84aea9a52cfc9436816a4b363b030260b699950ff1336c83"
dependencies = [
2024-05-17 08:56:19 -06:00
"glib-sys",
"gobject-sys",
"libc",
2025-06-18 11:22:48 -04:00
"system-deps 7.0.5",
2025-01-10 09:55:04 -07:00
"windows-sys 0.59.0",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "gl_generator"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
dependencies = [
"khronos_api",
"log",
"xml-rs",
]
[[package]]
name = "glam"
2024-10-21 13:51:10 -06:00
version = "0.25.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
2024-01-03 15:27:32 -07:00
[[package]]
name = "glib"
version = "0.20.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffc4b6e352d4716d84d7dde562dd9aee2a7d48beb872dd9ece7f2d1515b2d683"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"futures-channel",
"futures-core",
"futures-executor",
"futures-task",
"futures-util",
2024-05-17 08:56:19 -06:00
"gio-sys",
"glib-macros",
2024-05-17 08:56:19 -06:00
"glib-sys",
"gobject-sys",
"libc",
"memchr",
"smallvec",
]
[[package]]
name = "glib-macros"
version = "0.20.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8084af62f09475a3f529b1629c10c429d7600ee1398ae12dd3bf175d74e7145"
dependencies = [
"heck 0.5.0",
2025-03-15 11:59:03 -04:00
"proc-macro-crate 3.3.0",
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-24 09:30:06 -05:00
]
[[package]]
name = "glib-sys"
2025-06-18 11:22:48 -04:00
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "8ab79e1ed126803a8fb827e3de0e2ff95191912b8db65cee467edb56fc4cc215"
dependencies = [
"libc",
2025-06-18 11:22:48 -04:00
"system-deps 7.0.5",
]
[[package]]
name = "glob"
2025-01-10 09:55:04 -07:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
2024-05-31 14:54:19 -06:00
[[package]]
name = "globset"
2025-03-15 11:59:03 -04:00
version = "0.4.16"
2024-05-31 14:54:19 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
2024-05-31 14:54:19 -06:00
dependencies = [
"aho-corasick",
"bstr",
"log",
2024-11-11 09:14:03 -07:00
"regex-automata 0.4.9",
2024-10-02 15:56:15 -06:00
"regex-syntax 0.8.5",
2024-05-31 14:54:19 -06:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "glow"
version = "0.13.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1"
2024-01-03 15:27:32 -07:00
dependencies = [
"js-sys",
"slotmap",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "glutin_wgl_sys"
2025-01-13 09:03:23 -07:00
version = "0.6.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
2024-01-03 15:27:32 -07:00
dependencies = [
"gl_generator",
]
[[package]]
name = "gobject-sys"
2025-06-18 11:22:48 -04:00
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "ec9aca94bb73989e3cfdbf8f2e0f1f6da04db4d291c431f444838925c4c63eda"
dependencies = [
2024-05-17 08:56:19 -06:00
"glib-sys",
2024-01-24 09:30:06 -05:00
"libc",
2025-06-18 11:22:48 -04:00
"system-deps 7.0.5",
2024-01-24 09:30:06 -05:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "gpu-alloc"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"gpu-alloc-types",
]
[[package]]
name = "gpu-alloc-types"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "gpu-allocator"
2024-10-21 13:51:10 -06:00
version = "0.26.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "fdd4240fc91d3433d5e5b0fc5b67672d771850dc19bbee03c1381e19322803d7"
2024-01-03 15:27:32 -07:00
dependencies = [
"log",
"presser",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
"winapi",
2024-02-09 07:09:51 -07:00
"windows 0.52.0",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "gpu-descriptor"
2025-06-18 11:22:48 -04:00
version = "0.3.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"gpu-descriptor-types",
2025-06-18 11:22:48 -04:00
"hashbrown 0.15.4",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "gpu-descriptor-types"
2024-10-21 13:51:10 -06:00
version = "0.2.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "grid"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1df00eed8d1f0db937f6be10e46e8072b0671accb504cf0f959c5c52c679f5b9"
[[package]]
name = "guillotiere"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b62d5865c036cb1393e23c50693df631d3f5d7bcca4c04fe4cc0fd592e74a782"
dependencies = [
"euclid",
"svg_fmt",
]
[[package]]
name = "half"
2025-04-15 20:04:07 -04:00
version = "2.6.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2024-01-03 15:27:32 -07:00
"crunchy",
]
2024-10-02 15:56:15 -06:00
[[package]]
name = "hashbrown"
2025-06-18 11:22:48 -04:00
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "hashbrown"
version = "0.15.4"
2024-10-02 15:56:15 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
2025-01-10 09:55:04 -07:00
dependencies = [
"foldhash",
]
2024-10-02 15:56:15 -06:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "hassle-rs"
2024-02-09 07:09:51 -07:00
version = "0.11.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-02-09 07:09:51 -07:00
"com",
2024-01-03 15:27:32 -07:00
"libc",
2024-10-21 13:51:10 -06:00
"libloading",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
"widestring",
"winapi",
]
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2024-01-03 15:27:32 -07:00
[[package]]
name = "hermit-abi"
2024-02-29 11:25:46 -07:00
version = "0.3.9"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-29 11:25:46 -07:00
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2024-01-03 15:27:32 -07:00
2024-06-27 09:03:44 -06:00
[[package]]
name = "hermit-abi"
2025-06-18 11:22:48 -04:00
version = "0.5.2"
2024-06-27 09:03:44 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
2024-06-27 09:03:44 -06:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "hexf-parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
[[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",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "i18n-config"
2025-07-10 15:27:51 -06:00
version = "0.4.8"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "3e06b90c8a0d252e203c94344b21e35a30f3a3a85dc7db5af8f8df9f3e0c63ef"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-08-19 13:25:36 -06:00
"basic-toml",
2024-01-03 15:27:32 -07:00
"log",
"serde",
"serde_derive",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
"unic-langid",
]
[[package]]
name = "i18n-embed"
2025-04-15 20:04:07 -04:00
version = "0.15.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "669ffc2c93f97e6ddf06ddbe999fcd6782e3342978bb85f7d3c087c7978404c4"
2024-01-03 15:27:32 -07:00
dependencies = [
"arc-swap",
"fluent",
"fluent-langneg",
"fluent-syntax",
"i18n-embed-impl",
"intl-memoizer",
"locale_config",
"log",
2025-06-18 11:22:48 -04:00
"parking_lot 0.12.4",
2024-01-03 15:27:32 -07:00
"rust-embed",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
"unic-langid",
"walkdir",
]
[[package]]
name = "i18n-embed-fl"
2025-04-15 20:04:07 -04:00
version = "0.9.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "04b2969d0b3fc6143776c535184c19722032b43e6a642d710fa3f88faec53c2d"
2024-01-03 15:27:32 -07:00
dependencies = [
"find-crate",
"fluent",
"fluent-syntax",
"i18n-config",
"i18n-embed",
2025-02-19 17:55:33 +01:00
"proc-macro-error2",
2024-01-03 15:27:32 -07:00
"proc-macro2",
"quote",
2025-02-19 17:55:33 +01:00
"strsim",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
"unic-langid",
]
[[package]]
name = "i18n-embed-impl"
2024-10-29 14:29:20 -06:00
version = "0.8.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-29 14:29:20 -06:00
checksum = "0f2cc0e0523d1fe6fc2c6f66e5038624ea8091b3e7748b5e8e0c84b1698db6c2"
2024-01-03 15:27:32 -07:00
dependencies = [
"find-crate",
"i18n-config",
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
2024-01-05 14:44:20 -07:00
[[package]]
name = "iana-time-zone"
2025-04-15 20:04:07 -04:00
version = "0.1.63"
2024-01-05 14:44:20 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
2024-01-05 14:44:20 -07:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
2024-01-05 14:44:20 -07:00
"iana-time-zone-haiku",
"js-sys",
"log",
2024-01-05 14:44:20 -07:00
"wasm-bindgen",
2025-07-29 17:11:26 -04:00
"windows-core 0.56.0",
2024-01-05 14:44:20 -07:00
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
"cc",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "iced"
2024-10-21 13:51:10 -06:00
version = "0.14.0-dev"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
"dnd",
2024-01-03 15:27:32 -07:00
"iced_accessibility",
"iced_core",
"iced_futures",
"iced_renderer",
"iced_widget",
"iced_winit",
"image",
"mime 0.1.0",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-03-18 12:23:08 -06:00
"window_clipboard",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "iced_accessibility"
version = "0.1.0"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
"accesskit",
"accesskit_winit",
]
[[package]]
name = "iced_core"
2024-10-21 13:51:10 -06:00
version = "0.14.0-dev"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-10-21 13:51:10 -06:00
"bytes",
2024-12-03 12:38:15 -05:00
"cosmic-client-toolkit",
"dnd",
2024-10-21 13:51:10 -06:00
"glam",
2024-01-03 15:27:32 -07:00
"log",
"mime 0.1.0",
2024-01-03 15:27:32 -07:00
"num-traits",
2024-10-21 13:51:10 -06:00
"once_cell",
2024-01-03 15:27:32 -07:00
"palette",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2025-02-19 17:55:33 +01:00
"rustc-hash 2.1.1",
2024-01-03 15:27:32 -07:00
"serde",
2024-02-09 07:09:51 -07:00
"smol_str",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-02-09 07:09:51 -07:00
"web-time",
2024-03-18 12:23:08 -06:00
"window_clipboard",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "iced_futures"
2024-10-21 13:51:10 -06:00
version = "0.14.0-dev"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
"futures",
"iced_core",
"log",
2025-02-19 17:55:33 +01:00
"rustc-hash 2.1.1",
2024-01-03 15:27:32 -07:00
"tokio",
"wasm-bindgen-futures",
"wasm-timer",
]
2024-10-21 13:51:10 -06:00
[[package]]
name = "iced_glyphon"
version = "0.6.0"
source = "git+https://github.com/pop-os/glyphon.git?tag=iced-0.14-dev#6ef9d12a20cfd0f7bdf38136a26ded9f7459ec8b"
dependencies = [
"cosmic-text",
"etagere",
"lru",
2025-02-19 17:55:33 +01:00
"rustc-hash 2.1.1",
2024-10-21 13:51:10 -06:00
"wgpu",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "iced_graphics"
2024-10-21 13:51:10 -06:00
version = "0.14.0-dev"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"bytemuck",
"cosmic-text",
"half",
"iced_core",
2024-02-09 07:09:51 -07:00
"iced_futures",
"image",
2024-01-03 15:27:32 -07:00
"kamadak-exif",
"log",
"lyon_path",
"once_cell",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2025-02-19 17:55:33 +01:00
"rustc-hash 2.1.1",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
"unicode-segmentation",
]
[[package]]
name = "iced_renderer"
2024-10-21 13:51:10 -06:00
version = "0.14.0-dev"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
"iced_graphics",
"iced_tiny_skia",
"iced_wgpu",
"log",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "iced_runtime"
2024-10-21 13:51:10 -06:00
version = "0.14.0-dev"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-10-21 13:51:10 -06:00
"bytes",
2024-12-03 12:38:15 -05:00
"cosmic-client-toolkit",
"dnd",
2024-01-03 15:27:32 -07:00
"iced_core",
"iced_futures",
2024-06-20 09:15:45 -06:00
"raw-window-handle",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-06-20 09:15:45 -06:00
"window_clipboard",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "iced_tiny_skia"
2024-10-21 13:51:10 -06:00
version = "0.14.0-dev"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
"bytemuck",
"cosmic-text",
"iced_graphics",
2024-10-21 13:51:10 -06:00
"kurbo 0.10.4",
2024-01-03 15:27:32 -07:00
"log",
"resvg",
2025-02-19 17:55:33 +01:00
"rustc-hash 2.1.1",
2024-01-03 15:27:32 -07:00
"softbuffer",
2024-02-09 07:09:51 -07:00
"tiny-skia",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "iced_wgpu"
2024-10-21 13:51:10 -06:00
version = "0.14.0-dev"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-07-17 07:47:42 -06:00
"as-raw-xcb-connection",
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"bytemuck",
2024-12-03 12:38:15 -05:00
"cosmic-client-toolkit",
2024-01-03 15:27:32 -07:00
"futures",
"glam",
"guillotiere",
2024-10-21 13:51:10 -06:00
"iced_glyphon",
2024-01-03 15:27:32 -07:00
"iced_graphics",
"log",
"lyon",
"once_cell",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2024-01-03 15:27:32 -07:00
"resvg",
2025-02-19 17:55:33 +01:00
"rustc-hash 2.1.1",
"rustix 0.38.44",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-07-17 07:47:42 -06:00
"tiny-xlib",
2024-05-17 08:56:19 -06:00
"wayland-backend",
"wayland-client",
2024-10-21 13:51:10 -06:00
"wayland-protocols",
2024-05-17 08:56:19 -06:00
"wayland-sys",
2024-01-03 15:27:32 -07:00
"wgpu",
2024-07-17 07:47:42 -06:00
"x11rb",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "iced_widget"
2024-10-21 13:51:10 -06:00
version = "0.14.0-dev"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-12-03 12:38:15 -05:00
"cosmic-client-toolkit",
"dnd",
2024-01-03 15:27:32 -07:00
"iced_renderer",
"iced_runtime",
2025-06-18 11:22:48 -04:00
"log",
2024-01-03 15:27:32 -07:00
"num-traits",
2024-10-21 13:51:10 -06:00
"once_cell",
2024-01-03 15:27:32 -07:00
"ouroboros",
2025-02-19 17:55:33 +01:00
"rustc-hash 2.1.1",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
"unicode-segmentation",
"window_clipboard",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "iced_winit"
2024-10-21 13:51:10 -06:00
version = "0.14.0-dev"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-12-03 12:38:15 -05:00
"cosmic-client-toolkit",
"dnd",
2024-10-21 13:51:10 -06:00
"iced_futures",
2024-01-03 15:27:32 -07:00
"iced_graphics",
"iced_runtime",
"log",
2024-10-21 13:51:10 -06:00
"raw-window-handle",
2025-02-19 17:55:33 +01:00
"rustc-hash 2.1.1",
"rustix 0.38.44",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
"tracing",
2024-10-21 13:51:10 -06:00
"wasm-bindgen-futures",
"wayland-backend",
2025-01-14 08:54:43 -07:00
"wayland-client",
2024-10-21 13:51:10 -06:00
"wayland-protocols",
2024-01-03 15:27:32 -07:00
"web-sys",
"winapi",
"window_clipboard",
"winit",
2024-10-21 13:51:10 -06:00
"xkbcommon",
"xkbcommon-dl",
"xkeysym",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "icu"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dff5e3018d703f168b00dcefa540a65f1bbc50754ae32f3f5f0e43fe5ee51502"
dependencies = [
"icu_calendar",
"icu_casemap",
"icu_collator",
2025-06-18 11:22:48 -04:00
"icu_collections 1.5.0",
"icu_datetime",
"icu_decimal",
"icu_experimental",
"icu_list",
"icu_locid",
"icu_locid_transform",
2025-06-18 11:22:48 -04:00
"icu_normalizer 1.5.0",
"icu_plurals",
2025-06-18 11:22:48 -04:00
"icu_properties 1.5.1",
"icu_provider 1.5.0",
"icu_segmenter",
"icu_timezone",
]
[[package]]
name = "icu_calendar"
version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7265b2137f9a36f7634a308d91f984574bbdba8cfd95ceffe1c345552275a8ff"
dependencies = [
"calendrical_calculations",
"displaydoc",
"icu_calendar_data",
"icu_locid",
"icu_locid_transform",
2025-06-18 11:22:48 -04:00
"icu_provider 1.5.0",
"tinystr 0.7.6",
"writeable 0.5.5",
"zerovec 0.10.4",
]
[[package]]
name = "icu_calendar_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "820499e77e852162190608b4f444e7b4552619150eafc39a9e39333d9efae9e1"
[[package]]
name = "icu_casemap"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ff0c8ae9f8d31b12e27fc385ff9ab1f3cd9b17417c665c49e4ec958c37da75f"
dependencies = [
"displaydoc",
"icu_casemap_data",
2025-06-18 11:22:48 -04:00
"icu_collections 1.5.0",
"icu_locid",
2025-06-18 11:22:48 -04:00
"icu_properties 1.5.1",
"icu_provider 1.5.0",
"writeable 0.5.5",
"zerovec 0.10.4",
]
[[package]]
name = "icu_casemap_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02bd9f6276270c85a5cd54611adbbf94e993ec464a2a86a452a6c565b7ded5d9"
[[package]]
name = "icu_collator"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d370371887d31d56f361c3eaa15743e54f13bc677059c9191c77e099ed6966b2"
dependencies = [
"displaydoc",
"icu_collator_data",
2025-06-18 11:22:48 -04:00
"icu_collections 1.5.0",
"icu_locid_transform",
2025-06-18 11:22:48 -04:00
"icu_normalizer 1.5.0",
"icu_properties 1.5.1",
"icu_provider 1.5.0",
"smallvec",
"utf16_iter",
"utf8_iter",
2025-06-18 11:22:48 -04:00
"zerovec 0.10.4",
]
[[package]]
name = "icu_collator_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b353986d77d28991eca4dea5ef2b8982f639342ae19ca81edc44f048bc38ebb"
[[package]]
name = "icu_collections"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
dependencies = [
"displaydoc",
2025-06-18 11:22:48 -04:00
"yoke 0.7.5",
"zerofrom",
"zerovec 0.10.4",
]
[[package]]
name = "icu_collections"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
dependencies = [
"displaydoc",
"potential_utf",
"yoke 0.8.0",
"zerofrom",
2025-06-18 11:22:48 -04:00
"zerovec 0.11.2",
]
[[package]]
name = "icu_datetime"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d115efb85e08df3fd77e77f52e7e087545a783fffba8be80bfa2102f306b1780"
dependencies = [
"displaydoc",
"either",
"fixed_decimal",
"icu_calendar",
"icu_datetime_data",
"icu_decimal",
"icu_locid",
"icu_locid_transform",
"icu_plurals",
2025-06-18 11:22:48 -04:00
"icu_provider 1.5.0",
"icu_timezone",
2025-06-18 11:22:48 -04:00
"litemap 0.7.5",
"smallvec",
2025-06-18 11:22:48 -04:00
"tinystr 0.7.6",
"writeable 0.5.5",
"zerovec 0.10.4",
]
[[package]]
name = "icu_datetime_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef5f04076123cab1b7a926a7083db27fe0d7a0e575adb984854aae3f3a6507d"
[[package]]
name = "icu_decimal"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb8fd98f86ec0448d85e1edf8884e4e318bb2e121bd733ec929a05c0a5e8b0eb"
dependencies = [
"displaydoc",
"fixed_decimal",
"icu_decimal_data",
"icu_locid_transform",
2025-06-18 11:22:48 -04:00
"icu_provider 1.5.0",
"writeable 0.5.5",
]
[[package]]
name = "icu_decimal_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67c95dd97f5ccf6d837a9c115496ec7d36646fa86ca18e7f1412115b4c820ae2"
[[package]]
name = "icu_experimental"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "844ad7b682a165c758065d694bc4d74ac67f176da1c499a04d85d492c0f193b7"
dependencies = [
"displaydoc",
"fixed_decimal",
2025-06-18 11:22:48 -04:00
"icu_collections 1.5.0",
"icu_decimal",
"icu_experimental_data",
"icu_locid",
"icu_locid_transform",
2025-06-18 11:22:48 -04:00
"icu_normalizer 1.5.0",
"icu_pattern",
"icu_plurals",
2025-06-18 11:22:48 -04:00
"icu_properties 1.5.1",
"icu_provider 1.5.0",
"litemap 0.7.5",
"num-bigint",
"num-rational",
"num-traits",
"smallvec",
2025-06-18 11:22:48 -04:00
"tinystr 0.7.6",
"writeable 0.5.5",
"zerofrom",
2025-06-18 11:22:48 -04:00
"zerotrie 0.1.3",
"zerovec 0.10.4",
]
[[package]]
name = "icu_experimental_data"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "121df92eafb8f5286d4e8ff401c1e7db8384377f806db3f8db77b91e5b7bd4dd"
[[package]]
name = "icu_list"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbfeda1d7775b6548edd4e8b7562304a559a91ed56ab56e18961a053f367c365"
dependencies = [
"displaydoc",
"icu_list_data",
"icu_locid_transform",
2025-06-18 11:22:48 -04:00
"icu_provider 1.5.0",
"regex-automata 0.2.0",
2025-06-18 11:22:48 -04:00
"writeable 0.5.5",
]
[[package]]
name = "icu_list_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52b1a7fbdbf3958f1be8354cb59ac73f165b7b7082d447ff2090355c9a069120"
2025-06-18 11:22:48 -04:00
[[package]]
name = "icu_locale_core"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
dependencies = [
"displaydoc",
"litemap 0.8.0",
"tinystr 0.8.1",
"writeable 0.6.1",
"zerovec 0.11.2",
]
[[package]]
name = "icu_locid"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
dependencies = [
"displaydoc",
2025-06-18 11:22:48 -04:00
"litemap 0.7.5",
"tinystr 0.7.6",
"writeable 0.5.5",
"zerovec 0.10.4",
]
[[package]]
name = "icu_locid_transform"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
dependencies = [
"displaydoc",
"icu_locid",
"icu_locid_transform_data",
2025-06-18 11:22:48 -04:00
"icu_provider 1.5.0",
"tinystr 0.7.6",
"zerovec 0.10.4",
]
[[package]]
name = "icu_locid_transform_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
[[package]]
name = "icu_normalizer"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
dependencies = [
"displaydoc",
2025-06-18 11:22:48 -04:00
"icu_collections 1.5.0",
"icu_normalizer_data 1.5.1",
"icu_properties 1.5.1",
"icu_provider 1.5.0",
"smallvec",
"utf16_iter",
"utf8_iter",
"write16",
2025-06-18 11:22:48 -04:00
"zerovec 0.10.4",
]
[[package]]
name = "icu_normalizer"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
dependencies = [
"displaydoc",
"icu_collections 2.0.0",
"icu_normalizer_data 2.0.0",
"icu_properties 2.0.1",
"icu_provider 2.0.0",
"smallvec",
"zerovec 0.11.2",
]
[[package]]
name = "icu_normalizer_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7"
2025-06-18 11:22:48 -04:00
[[package]]
name = "icu_normalizer_data"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
[[package]]
name = "icu_pattern"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb7f36aafd098d6717de34e668a8120822275c1fba22b936e757b7de8a2fd7e4"
dependencies = [
"displaydoc",
"either",
2025-06-18 11:22:48 -04:00
"writeable 0.5.5",
"yoke 0.7.5",
"zerofrom",
]
[[package]]
name = "icu_plurals"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba5a70e7c025dbd5c501b0a5c188cd11666a424f0dadcd4f0a95b7dafde3b114"
dependencies = [
"displaydoc",
"fixed_decimal",
"icu_locid_transform",
"icu_plurals_data",
2025-06-18 11:22:48 -04:00
"icu_provider 1.5.0",
"zerovec 0.10.4",
]
[[package]]
name = "icu_plurals_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a483403238cb7d6a876a77a5f8191780336d80fe7b8b00bfdeb20be6abbfd112"
[[package]]
name = "icu_properties"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
dependencies = [
"displaydoc",
2025-06-18 11:22:48 -04:00
"icu_collections 1.5.0",
"icu_locid_transform",
2025-06-18 11:22:48 -04:00
"icu_properties_data 1.5.1",
"icu_provider 1.5.0",
"tinystr 0.7.6",
"zerovec 0.10.4",
]
[[package]]
name = "icu_properties"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
dependencies = [
"displaydoc",
"icu_collections 2.0.0",
"icu_locale_core",
"icu_properties_data 2.0.1",
"icu_provider 2.0.0",
"potential_utf",
"zerotrie 0.2.2",
"zerovec 0.11.2",
]
[[package]]
name = "icu_properties_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2"
2025-06-18 11:22:48 -04:00
[[package]]
name = "icu_properties_data"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
[[package]]
name = "icu_provider"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
dependencies = [
"displaydoc",
"icu_locid",
"icu_provider_macros",
"stable_deref_trait",
2025-06-18 11:22:48 -04:00
"tinystr 0.7.6",
"writeable 0.5.5",
"yoke 0.7.5",
"zerofrom",
"zerovec 0.10.4",
]
[[package]]
name = "icu_provider"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
dependencies = [
"displaydoc",
"icu_locale_core",
"stable_deref_trait",
"tinystr 0.8.1",
"writeable 0.6.1",
"yoke 0.8.0",
"zerofrom",
2025-06-18 11:22:48 -04:00
"zerotrie 0.2.2",
"zerovec 0.11.2",
]
[[package]]
name = "icu_provider_macros"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
]
[[package]]
name = "icu_segmenter"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a717725612346ffc2d7b42c94b820db6908048f39434504cb130e8b46256b0de"
dependencies = [
"core_maths",
"displaydoc",
2025-06-18 11:22:48 -04:00
"icu_collections 1.5.0",
"icu_locid",
2025-06-18 11:22:48 -04:00
"icu_provider 1.5.0",
"icu_segmenter_data",
"utf8_iter",
2025-06-18 11:22:48 -04:00
"zerovec 0.10.4",
]
[[package]]
name = "icu_segmenter_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1e52775179941363cc594e49ce99284d13d6948928d8e72c755f55e98caa1eb"
[[package]]
name = "icu_timezone"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa91ba6a585939a020c787235daa8aee856d9bceebd6355e283c0c310bc6de96"
dependencies = [
"displaydoc",
"icu_calendar",
2025-06-18 11:22:48 -04:00
"icu_provider 1.5.0",
"icu_timezone_data",
2025-06-18 11:22:48 -04:00
"tinystr 0.7.6",
"zerotrie 0.1.3",
"zerovec 0.10.4",
]
[[package]]
name = "icu_timezone_data"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1adcf7b613a268af025bc2a2532b4b9ee294e6051c5c0832d8bff20ac0232e68"
2024-01-03 15:27:32 -07:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"
2024-10-25 13:24:17 +02:00
version = "1.0.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-25 13:24:17 +02:00
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-10-25 13:24:17 +02:00
"idna_adapter",
"smallvec",
"utf8_iter",
]
[[package]]
name = "idna_adapter"
2025-06-18 11:22:48 -04:00
version = "1.2.1"
2024-10-25 13:24:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
2024-10-25 13:24:17 +02:00
dependencies = [
2025-06-18 11:22:48 -04:00
"icu_normalizer 2.0.0",
"icu_properties 2.0.1",
2024-01-03 15:27:32 -07:00
]
2024-05-31 14:54:19 -06:00
[[package]]
name = "ignore"
version = "0.4.23"
2024-05-31 14:54:19 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b"
2024-05-31 14:54:19 -06:00
dependencies = [
"crossbeam-deque",
"globset",
"log",
"memchr",
2024-11-11 09:14:03 -07:00
"regex-automata 0.4.9",
2024-05-31 14:54:19 -06:00
"same-file",
"walkdir",
"winapi-util",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "image"
version = "0.25.6"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
2024-11-11 09:14:03 -07:00
dependencies = [
"bytemuck",
"byteorder-lite",
"color_quant",
"exr",
"gif",
"image-webp",
"num-traits",
"png",
"qoi",
"ravif",
"rayon",
"rgb",
"tiff",
"zune-core",
"zune-jpeg",
]
[[package]]
name = "image-webp"
2025-06-19 10:06:15 -04:00
version = "0.2.3"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-19 10:06:15 -04:00
checksum = "f6970fe7a5300b4b42e62c52efa0187540a5bef546c60edaf554ef595d2e6f0b"
2024-11-11 09:14:03 -07:00
dependencies = [
"byteorder-lite",
"quick-error",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "imagesize"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "029d73f573d8e8d63e6d5020011d3255b28c3ba85d6cf870a07184ed23de9284"
2024-11-11 09:14:03 -07:00
[[package]]
name = "imgref"
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408"
2024-10-21 13:51:10 -06:00
[[package]]
name = "immutable-chunkmap"
2024-10-21 14:23:32 -06:00
version = "2.0.6"
2024-10-21 13:51:10 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 14:23:32 -06:00
checksum = "12f97096f508d54f8f8ab8957862eee2ccd628847b6217af1a335e1c44dee578"
2024-10-21 13:51:10 -06:00
dependencies = [
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-10-21 13:51:10 -06:00
]
2025-06-18 11:22:48 -04:00
[[package]]
name = "indexmap"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
"hashbrown 0.12.3",
"serde",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "indexmap"
2025-06-27 11:14:09 -06:00
version = "2.10.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-27 11:14:09 -06:00
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
2024-01-03 15:27:32 -07:00
dependencies = [
"equivalent",
2025-06-18 11:22:48 -04:00
"hashbrown 0.15.4",
"serde",
2024-01-03 15:27:32 -07:00
]
2024-08-28 08:54:44 +02:00
[[package]]
name = "infer"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847"
dependencies = [
"cfb",
]
2025-01-13 09:03:23 -07:00
[[package]]
name = "ini_core"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a467a31a9f439b5262fa99c17084537bff57f24703d5a09a2b5c9657ec73a61"
dependencies = [
"cfg-if",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "inotify"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
dependencies = [
"bitflags 1.3.2",
"inotify-sys",
"libc",
]
2025-03-31 08:52:18 -06:00
[[package]]
name = "inotify"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-03-31 08:52:18 -06:00
"inotify-sys",
"libc",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "inotify-sys"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
dependencies = [
"libc",
]
[[package]]
name = "inout"
2025-03-15 11:59:03 -04:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
dependencies = [
"generic-array",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "instant"
2024-05-20 14:09:45 -06:00
version = "0.1.13"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 14:09:45 -06:00
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2024-01-03 15:27:32 -07:00
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "interpolate_name"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-11-11 09:14:03 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "intl-memoizer"
2025-06-18 11:22:48 -04:00
version = "0.5.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "310da2e345f5eb861e7a07ee182262e94975051db9e4223e909ba90f392f163f"
2024-01-03 15:27:32 -07:00
dependencies = [
"type-map",
"unic-langid",
]
[[package]]
name = "intl_pluralrules"
version = "7.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972"
dependencies = [
"unic-langid",
]
[[package]]
name = "io-lifetimes"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
dependencies = [
2024-06-27 09:03:44 -06:00
"hermit-abi 0.3.9",
2024-01-03 15:27:32 -07:00
"libc",
"windows-sys 0.48.0",
]
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "io-uring"
2025-07-22 09:15:33 -06:00
version = "0.7.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
dependencies = [
"bindgen",
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"cfg-if",
"libc",
]
[[package]]
name = "is-docker"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
dependencies = [
"once_cell",
]
[[package]]
name = "is-wsl"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
dependencies = [
"is-docker",
"once_cell",
]
2024-05-03 12:16:14 -04:00
[[package]]
name = "is_terminal_polyfill"
2024-08-19 13:25:36 -06:00
version = "1.70.1"
2024-05-03 12:16:14 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-19 13:25:36 -06:00
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
2024-05-03 12:16:14 -04:00
2024-06-20 09:15:45 -06:00
[[package]]
name = "itertools"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
dependencies = [
"either",
]
[[package]]
name = "itoa"
2025-03-15 11:59:03 -04:00
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
[[package]]
name = "jiff"
2025-06-18 11:22:48 -04:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
2025-03-15 11:59:03 -04:00
dependencies = [
"jiff-static",
"log",
"portable-atomic",
"portable-atomic-util",
"serde",
]
[[package]]
name = "jiff-static"
2025-06-18 11:22:48 -04:00
version = "0.2.15"
2025-03-15 11:59:03 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
2025-03-15 11:59:03 -04:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2025-03-15 11:59:03 -04:00
]
2024-02-09 07:09:51 -07:00
[[package]]
name = "jni"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
dependencies = [
"cesu8",
"cfg-if",
2024-02-09 07:09:51 -07:00
"combine",
"jni-sys",
"log",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-02-09 07:09:51 -07:00
"walkdir",
"windows-sys 0.45.0",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "jni-sys"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
2024-03-04 10:28:16 -07:00
[[package]]
name = "jobserver"
2025-04-15 20:04:07 -04:00
version = "0.1.33"
2024-03-04 10:28:16 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
2024-03-04 10:28:16 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"getrandom 0.3.3",
2024-03-04 10:28:16 -07:00
"libc",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "jpeg-decoder"
version = "0.3.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07"
2024-01-03 15:27:32 -07:00
[[package]]
name = "js-sys"
2025-01-13 09:03:23 -07:00
version = "0.3.77"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-11-26 19:23:06 +01:00
"once_cell",
2024-01-03 15:27:32 -07:00
"wasm-bindgen",
]
[[package]]
name = "jxl-bitstream"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eda699770a7f4ea38f8eb21d91b545eb6448be28e540acc7ce84498bcead4903"
dependencies = [
"tracing",
]
[[package]]
name = "jxl-coding"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6748ba8af69b87c68f8dcdf992de959c207962689bc28ddb7906abf4a0b786c9"
dependencies = [
"jxl-bitstream",
"tracing",
]
[[package]]
name = "jxl-color"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f316b1358c1711755b3ee8e8cb5c4a1dad12e796233088a7a513440782de80b2"
dependencies = [
"jxl-bitstream",
"jxl-coding",
"jxl-grid",
"jxl-image",
"jxl-oxide-common",
"jxl-threadpool",
"tracing",
]
[[package]]
name = "jxl-frame"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30587a9687223a602a408555db47803c907ea47700e1f28eb14cdb3bf1527a9"
dependencies = [
"jxl-bitstream",
"jxl-coding",
"jxl-grid",
"jxl-image",
"jxl-modular",
"jxl-oxide-common",
"jxl-threadpool",
"jxl-vardct",
"tracing",
]
[[package]]
name = "jxl-grid"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "335e4371396c5729ba80a42798746d198897d3b854ba4f3684efac5f4025d84f"
dependencies = [
"tracing",
]
[[package]]
name = "jxl-image"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5f752d62577c702a94dbbce4045caf08cb58639e8a4d56464b40ecf33ffe565"
dependencies = [
"jxl-bitstream",
"jxl-grid",
"jxl-oxide-common",
"tracing",
]
[[package]]
name = "jxl-jbr"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d91ba39b083a82788a17717edbcc4b08160b51fdffc9fec640deba9e8268da1a"
dependencies = [
"brotli-decompressor",
"jxl-bitstream",
"jxl-frame",
"jxl-grid",
"jxl-image",
"jxl-modular",
"jxl-oxide-common",
"jxl-threadpool",
"jxl-vardct",
"tracing",
]
[[package]]
name = "jxl-modular"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f526ad8af8daea0d1cccce945f18c241f95b391d34443be018de2efbf28b44e"
dependencies = [
"jxl-bitstream",
"jxl-coding",
"jxl-grid",
"jxl-oxide-common",
"jxl-threadpool",
"tracing",
]
[[package]]
name = "jxl-oxide"
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e45ccb25d698cdcad3a5573a7181835842711fd951c98fe38986e3cb721e775"
dependencies = [
"brotli-decompressor",
"bytemuck",
"image",
"jxl-bitstream",
"jxl-color",
"jxl-frame",
"jxl-grid",
"jxl-image",
"jxl-jbr",
"jxl-oxide-common",
"jxl-render",
"jxl-threadpool",
"tracing",
]
[[package]]
name = "jxl-oxide-common"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b62394c5021b3a9e7e0dbb2d639d555d019090c9946c39f6d3b09d390db4157b"
dependencies = [
"jxl-bitstream",
]
[[package]]
name = "jxl-render"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3f3fece78b2104450bd6d1bdbc48e3b6ef7442ef276be2a08e35b229eeff1a4"
dependencies = [
"bytemuck",
"jxl-bitstream",
"jxl-coding",
"jxl-color",
"jxl-frame",
"jxl-grid",
"jxl-image",
"jxl-modular",
"jxl-oxide-common",
"jxl-threadpool",
"jxl-vardct",
"tracing",
]
[[package]]
name = "jxl-threadpool"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25f15eb830aa77a7f21148d72e153562a26bfe570139bd4922eab1908dd499d3"
dependencies = [
"rayon",
"rayon-core",
"tracing",
]
[[package]]
name = "jxl-vardct"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d48ad406543de5d6cd50aaaa8b87534f82991d684d848b3190228e8fa690fff"
dependencies = [
"jxl-bitstream",
"jxl-coding",
"jxl-grid",
"jxl-modular",
"jxl-oxide-common",
"jxl-threadpool",
"tracing",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "kamadak-exif"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef4fc70d0ab7e5b6bafa30216a6b48705ea964cdfc29c050f2412295eba58077"
dependencies = [
"mutate_once",
]
[[package]]
name = "khronos-egl"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
dependencies = [
"libc",
2024-10-21 13:51:10 -06:00
"libloading",
2024-01-03 15:27:32 -07:00
"pkg-config",
]
[[package]]
name = "khronos_api"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
2024-01-28 06:23:40 -05:00
[[package]]
name = "known-folders"
2025-07-29 17:11:26 -04:00
version = "1.3.1"
2024-01-28 06:23:40 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "c644f4623d1c55eb60a9dac35e0858a59f982fb87db6ce34c872372b0a5b728f"
2024-01-28 06:23:40 -05:00
dependencies = [
2025-07-29 17:11:26 -04:00
"windows-sys 0.60.2",
2024-01-28 06:23:40 -05:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "kqueue"
2025-06-18 11:22:48 -04:00
version = "1.1.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
2024-01-03 15:27:32 -07:00
dependencies = [
"kqueue-sys",
"libc",
]
[[package]]
name = "kqueue-sys"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
dependencies = [
"bitflags 1.3.2",
"libc",
]
[[package]]
name = "kurbo"
2024-10-21 13:51:10 -06:00
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1618d4ebd923e97d67e7cd363d80aef35fe961005cbbbb3d2dad8bdd1bc63440"
dependencies = [
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-10-21 13:51:10 -06:00
"smallvec",
]
[[package]]
name = "kurbo"
2025-07-22 09:15:33 -06:00
version = "0.11.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-02-19 17:55:33 +01:00
"arrayvec",
2025-07-22 09:15:33 -06:00
"euclid",
2024-10-21 13:51:10 -06:00
"smallvec",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "lazy_static"
2024-06-27 09:03:44 -06:00
version = "1.5.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-27 09:03:44 -06:00
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2024-01-03 15:27:32 -07:00
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2024-01-03 15:27:32 -07:00
[[package]]
name = "lebe"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
[[package]]
name = "libc"
2025-06-19 10:06:15 -04:00
version = "0.2.174"
2025-04-17 08:03:53 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-19 10:06:15 -04:00
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
2024-01-03 15:27:32 -07:00
[[package]]
name = "libcosmic"
version = "0.1.0"
2025-07-29 17:11:26 -04:00
source = "git+https://github.com/pop-os/libcosmic.git#05874e8ea252be0e6115c268aef18a19019842f4"
2024-01-03 15:27:32 -07:00
dependencies = [
"apply",
2025-06-18 11:22:48 -04:00
"ashpd",
2025-04-15 20:04:07 -04:00
"auto_enums",
2024-03-18 12:23:08 -06:00
"chrono",
2024-06-27 09:03:44 -06:00
"cosmic-client-toolkit",
2024-01-03 15:27:32 -07:00
"cosmic-config",
2025-01-10 09:55:04 -07:00
"cosmic-freedesktop-icons",
2025-06-18 11:22:48 -04:00
"cosmic-settings-config",
2025-02-19 17:55:33 +01:00
"cosmic-settings-daemon",
2024-01-03 15:27:32 -07:00
"cosmic-theme",
"css-color",
"derive_setters",
2025-03-15 11:59:03 -04:00
"freedesktop-desktop-entry",
2025-03-31 08:52:18 -06:00
"futures",
2024-01-03 15:27:32 -07:00
"iced",
"iced_core",
"iced_futures",
"iced_renderer",
"iced_runtime",
"iced_tiny_skia",
"iced_wgpu",
"iced_widget",
"iced_winit",
"image",
2024-01-03 15:27:32 -07:00
"lazy_static",
2024-08-19 13:25:36 -06:00
"libc",
2024-03-18 12:23:08 -06:00
"mime 0.3.17",
2024-01-03 15:27:32 -07:00
"palette",
2025-06-18 11:22:48 -04:00
"raw-window-handle",
2024-01-24 09:30:06 -05:00
"rfd",
2025-07-22 09:15:33 -06:00
"rustix 1.0.8",
2024-05-30 14:04:44 -04:00
"serde",
"shlex",
2024-01-03 15:27:32 -07:00
"slotmap",
"taffy",
2025-03-31 08:52:18 -06:00
"thiserror 2.0.12",
2024-01-03 15:27:32 -07:00
"tokio",
"tracing",
"unicode-segmentation",
"url",
2025-07-22 09:15:33 -06:00
"zbus 5.9.0",
2024-01-03 15:27:32 -07:00
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "libfuzzer-sys"
2025-07-10 15:27:51 -06:00
version = "0.4.10"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "5037190e1f70cbeef565bd267599242926f724d3b8a9f510fd7e0b540cfa4404"
2024-11-11 09:14:03 -07:00
dependencies = [
"arbitrary",
"cc",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "libloading"
2025-06-18 11:22:48 -04:00
version = "0.8.8"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2025-07-29 17:11:26 -04:00
"windows-targets 0.53.3",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "libm"
2025-06-18 11:22:48 -04:00
version = "0.2.15"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
2024-01-03 15:27:32 -07:00
[[package]]
name = "libredox"
2025-07-29 17:11:26 -04:00
version = "0.1.8"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "360e552c93fa0e8152ab463bc4c4837fce76a225df11dfaeea66c313de5e61f7"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"libc",
2025-07-29 17:11:26 -04:00
"redox_syscall 0.5.17",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]]
name = "linux-raw-sys"
2025-01-10 09:55:04 -07:00
version = "0.4.15"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
2024-01-03 15:27:32 -07:00
2024-02-09 07:09:51 -07:00
[[package]]
name = "linux-raw-sys"
2024-08-19 13:25:36 -06:00
version = "0.6.5"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-19 13:25:36 -06:00
checksum = "2a385b1be4e5c3e362ad2ffa73c392e53f031eaa5b7d648e64cd87f27f6063d7"
2024-02-09 07:09:51 -07:00
2025-03-15 11:59:03 -04:00
[[package]]
name = "linux-raw-sys"
2025-04-15 20:04:07 -04:00
version = "0.9.4"
2025-03-15 11:59:03 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
2025-03-15 11:59:03 -04:00
[[package]]
name = "litemap"
2025-03-15 11:59:03 -04:00
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
2025-06-18 11:22:48 -04:00
[[package]]
name = "litemap"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
2024-10-21 13:51:10 -06:00
[[package]]
name = "litrs"
2025-07-29 17:11:26 -04:00
version = "0.4.2"
2024-10-21 13:51:10 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed"
2024-10-21 13:51:10 -06:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "locale_config"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d2c35b16f4483f6c26f0e4e9550717a2f6575bcd6f12a53ff0c490a94a6934"
dependencies = [
"lazy_static",
"objc",
"objc-foundation",
"regex",
"winapi",
]
[[package]]
name = "lock_api"
2025-06-18 11:22:48 -04:00
version = "0.4.13"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
2024-01-03 15:27:32 -07:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.27"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
2024-01-03 15:27:32 -07:00
2024-11-11 09:14:03 -07:00
[[package]]
name = "loop9"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
dependencies = [
"imgref",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "lru"
2024-10-10 11:15:32 -06:00
version = "0.12.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-10 11:15:32 -06:00
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
2024-01-03 15:27:32 -07:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "lru-slab"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2024-01-03 15:27:32 -07:00
[[package]]
name = "lyon"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e7f9cda98b5430809e63ca5197b06c7d191bf7e26dfc467d5a3f0290e2a74f"
dependencies = [
"lyon_algorithms",
"lyon_tessellation",
]
[[package]]
name = "lyon_algorithms"
2025-01-10 09:55:04 -07:00
version = "1.0.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "f13c9be19d257c7d37e70608ed858e8eab4b2afcea2e3c9a622e892acbf43c08"
2024-01-03 15:27:32 -07:00
dependencies = [
"lyon_path",
"num-traits",
]
[[package]]
name = "lyon_geom"
2024-10-29 14:29:20 -06:00
version = "1.0.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-29 14:29:20 -06:00
checksum = "8af69edc087272df438b3ee436c4bb6d7c04aa8af665cfd398feae627dbd8570"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-01-03 15:27:32 -07:00
"euclid",
"num-traits",
]
[[package]]
name = "lyon_path"
2025-03-15 11:59:03 -04:00
version = "1.0.7"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "0047f508cd7a85ad6bad9518f68cce7b1bf6b943fb71f6da0ee3bc1e8cb75f25"
2024-01-03 15:27:32 -07:00
dependencies = [
"lyon_geom",
"num-traits",
]
[[package]]
name = "lyon_tessellation"
2024-05-28 19:05:59 -06:00
version = "1.0.15"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-28 19:05:59 -06:00
checksum = "579d42360a4b09846eff2feef28f538696c7d6c7439bfa65874ff3cbe0951b2c"
2024-01-03 15:27:32 -07:00
dependencies = [
"float_next_after",
"lyon_path",
"num-traits",
]
[[package]]
name = "lzma-rs"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
dependencies = [
"byteorder",
"crc",
]
[[package]]
name = "lzma-sys"
version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
dependencies = [
"cc",
"libc",
"pkg-config",
]
[[package]]
name = "mac-notification-sys"
2025-07-10 15:27:51 -06:00
version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "119c8490084af61b44c9eda9d626475847a186737c0378c85e32d77c33a01cd4"
dependencies = [
"cc",
"objc2 0.6.1",
"objc2-foundation 0.3.1",
"time",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
dependencies = [
"libc",
]
2024-04-30 13:29:58 -06:00
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata 0.1.10",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "maybe-rayon"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
dependencies = [
"cfg-if",
"rayon",
]
[[package]]
name = "md-5"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
dependencies = [
"cfg-if",
"digest",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "memchr"
2025-06-18 11:22:48 -04:00
version = "2.7.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
2024-01-03 15:27:32 -07:00
2024-05-17 08:56:19 -06:00
[[package]]
name = "memmap2"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed"
dependencies = [
"libc",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "memmap2"
2025-07-22 09:15:33 -06:00
version = "0.9.7"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28"
2024-01-03 15:27:32 -07:00
dependencies = [
"libc",
]
[[package]]
name = "memoffset"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [
"autocfg",
]
[[package]]
name = "memoffset"
version = "0.9.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2024-01-03 15:27:32 -07:00
dependencies = [
"autocfg",
]
[[package]]
name = "metal"
2024-10-21 13:51:10 -06:00
version = "0.29.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "7ecfd3296f8c56b7c1f6fbac3c71cefa9d78ce009850c45000015f206dc7fa21"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"block",
"core-graphics-types",
"foreign-types",
2024-01-03 15:27:32 -07:00
"log",
"objc",
"paste",
]
2024-03-18 12:23:08 -06:00
[[package]]
name = "mime"
version = "0.1.0"
2025-01-14 08:54:43 -07:00
source = "git+https://github.com/pop-os/window_clipboard.git?tag=pop-0.13-2#6b9faab87bea9cebec6ae036906fd67fed254f5f"
2024-03-18 12:23:08 -06:00
dependencies = [
"smithay-clipboard",
]
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2024-02-22 15:04:37 -07:00
[[package]]
name = "mime_guess"
2024-06-27 09:03:44 -06:00
version = "2.0.5"
2024-02-22 15:04:37 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-27 09:03:44 -06:00
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2024-02-22 15:04:37 -07:00
dependencies = [
2024-03-18 12:23:08 -06:00
"mime 0.3.17",
2024-02-22 15:04:37 -07:00
"unicase",
]
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
2025-06-18 11:22:48 -04:00
version = "0.8.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
dependencies = [
"adler2",
2024-10-02 15:56:15 -06:00
"simd-adler32",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "mio"
version = "0.8.11"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
2024-01-03 15:27:32 -07:00
dependencies = [
"libc",
"log",
2025-06-18 11:22:48 -04:00
"wasi 0.11.1+wasi-snapshot-preview1",
2024-01-03 15:27:32 -07:00
"windows-sys 0.48.0",
]
[[package]]
name = "mio"
2025-06-18 11:22:48 -04:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
dependencies = [
"libc",
2025-03-31 08:52:18 -06:00
"log",
2025-06-18 11:22:48 -04:00
"wasi 0.11.1+wasi-snapshot-preview1",
"windows-sys 0.59.0",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "mutate_once"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b"
[[package]]
name = "naga"
2024-10-21 13:51:10 -06:00
version = "22.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bd5a652b6faf21496f2cfd88fc49989c8db0825d1f6746b1a71a6ede24a63ad"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-01-03 15:27:32 -07:00
"bit-set",
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-10-21 13:51:10 -06:00
"cfg_aliases 0.1.1",
2024-01-03 15:27:32 -07:00
"codespan-reporting",
"hexf-parse",
2025-06-27 11:14:09 -06:00
"indexmap 2.10.0",
2024-01-03 15:27:32 -07:00
"log",
2024-10-21 13:51:10 -06:00
"rustc-hash 1.1.0",
2024-01-03 15:27:32 -07:00
"spirv",
"termcolor",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
"unicode-xid",
]
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "nanorand"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
dependencies = [
"getrandom 0.2.16",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "ndk"
2024-10-21 13:51:10 -06:00
version = "0.9.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"jni-sys",
2024-02-09 07:09:51 -07:00
"log",
2024-10-21 13:51:10 -06:00
"ndk-sys 0.6.0+11769913",
"num_enum",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "ndk-context"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
[[package]]
name = "ndk-sys"
2024-02-09 07:09:51 -07:00
version = "0.5.0+25.2.9519653"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
2024-01-03 15:27:32 -07:00
dependencies = [
"jni-sys",
]
2024-10-21 13:51:10 -06:00
[[package]]
name = "ndk-sys"
version = "0.6.0+11769913"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
dependencies = [
"jni-sys",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "new_debug_unreachable"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
2024-01-03 15:27:32 -07:00
[[package]]
name = "nix"
version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
dependencies = [
"bitflags 1.3.2",
"cfg-if",
2024-01-03 15:27:32 -07:00
"libc",
"memoffset 0.7.1",
]
2024-05-17 08:56:19 -06:00
[[package]]
name = "nix"
2025-06-18 11:22:48 -04:00
version = "0.30.1"
2024-05-17 08:56:19 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
2024-05-17 08:56:19 -06:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-05-17 08:56:19 -06:00
"cfg-if",
2024-06-27 09:03:44 -06:00
"cfg_aliases 0.2.1",
2024-05-17 08:56:19 -06:00
"libc",
"memoffset 0.9.1",
]
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "noop_proc_macro"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
2024-01-03 15:27:32 -07:00
[[package]]
name = "notify"
version = "6.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"crossbeam-channel",
"filetime",
"fsevent-sys",
2025-03-31 08:52:18 -06:00
"inotify 0.9.6",
2024-01-03 15:27:32 -07:00
"kqueue",
"libc",
"log",
"mio 0.8.11",
2024-01-03 15:27:32 -07:00
"walkdir",
"windows-sys 0.48.0",
]
2025-03-31 08:52:18 -06:00
[[package]]
name = "notify"
2025-07-10 15:27:51 -06:00
version = "8.1.0"
2025-03-31 08:52:18 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "3163f59cd3fa0e9ef8c32f242966a7b9994fd7378366099593e0e73077cd8c97"
2025-03-31 08:52:18 -06:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-03-31 08:52:18 -06:00
"fsevent-sys",
"inotify 0.11.0",
"kqueue",
"libc",
"log",
2025-06-18 11:22:48 -04:00
"mio 1.0.4",
2025-03-31 08:52:18 -06:00
"notify-types",
"walkdir",
2025-07-10 15:27:51 -06:00
"windows-sys 0.60.2",
2025-03-31 08:52:18 -06:00
]
[[package]]
name = "notify-debouncer-full"
2024-10-16 16:33:01 -06:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-16 16:33:01 -06:00
checksum = "fb7fd166739789c9ff169e654dc1501373db9d80a4c3f972817c8a4d7cf8f34e"
dependencies = [
"crossbeam-channel",
"file-id",
"log",
2025-03-31 08:52:18 -06:00
"notify 6.1.1",
2025-06-18 11:22:48 -04:00
"parking_lot 0.12.4",
"walkdir",
]
[[package]]
name = "notify-rust"
2025-04-15 20:04:07 -04:00
version = "4.11.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "6442248665a5aa2514e794af3b39661a8e73033b1cc5e59899e1276117ee4400"
dependencies = [
2025-02-19 17:55:33 +01:00
"futures-lite 2.6.0",
"log",
"mac-notification-sys",
"serde",
"tauri-winrt-notification",
2025-07-22 09:15:33 -06:00
"zbus 5.9.0",
]
2025-03-31 08:52:18 -06:00
[[package]]
name = "notify-types"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
2024-04-30 13:29:58 -06:00
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "num-bigint"
2024-06-27 09:03:44 -06:00
version = "0.4.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-27 09:03:44 -06:00
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2024-01-03 15:27:32 -07:00
dependencies = [
"num-integer",
"num-traits",
]
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2024-11-11 09:14:03 -07:00
[[package]]
name = "num-derive"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-11-11 09:14:03 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "num-integer"
2024-02-09 07:09:51 -07:00
version = "0.1.46"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2024-01-03 15:27:32 -07:00
dependencies = [
"num-traits",
]
[[package]]
name = "num-rational"
2024-05-09 12:26:45 -06:00
version = "0.4.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-09 12:26:45 -06:00
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2024-01-03 15:27:32 -07:00
dependencies = [
"num-bigint",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2024-05-09 12:26:45 -06:00
version = "0.2.19"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-09 12:26:45 -06:00
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2024-01-03 15:27:32 -07:00
dependencies = [
"autocfg",
"libm",
]
[[package]]
name = "num_cpus"
2025-06-18 11:22:48 -04:00
version = "1.17.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"hermit-abi 0.5.2",
2024-01-03 15:27:32 -07:00
"libc",
]
[[package]]
name = "num_enum"
version = "0.7.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a"
2024-01-03 15:27:32 -07:00
dependencies = [
"num_enum_derive",
"rustversion",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "num_enum_derive"
version = "0.7.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-03-15 11:59:03 -04:00
"proc-macro-crate 3.3.0",
2024-01-03 15:27:32 -07:00
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "num_threads"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
dependencies = [
"libc",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "objc"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
dependencies = [
"malloc_buf",
]
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
dependencies = [
"block",
"objc",
"objc_id",
]
[[package]]
name = "objc-sys"
2024-05-28 19:05:59 -06:00
version = "0.3.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-28 19:05:59 -06:00
checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
2024-01-03 15:27:32 -07:00
[[package]]
name = "objc2"
2024-10-21 13:51:10 -06:00
version = "0.5.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
2024-01-03 15:27:32 -07:00
dependencies = [
"objc-sys",
2024-10-21 13:51:10 -06:00
"objc2-encode",
2024-01-03 15:27:32 -07:00
]
2025-04-15 20:04:07 -04:00
[[package]]
name = "objc2"
version = "0.6.1"
2025-04-15 20:04:07 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551"
2025-04-15 20:04:07 -04:00
dependencies = [
"objc2-encode",
]
2024-01-03 15:27:32 -07:00
[[package]]
2024-10-21 13:51:10 -06:00
name = "objc2-app-kit"
version = "0.2.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
2024-10-21 13:51:10 -06:00
"libc",
2025-04-15 20:04:07 -04:00
"objc2 0.5.2",
2024-10-21 13:51:10 -06:00
"objc2-core-data",
"objc2-core-image",
2025-04-15 20:04:07 -04:00
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
"objc2-quartz-core",
2024-01-03 15:27:32 -07:00
]
2025-06-18 11:22:48 -04:00
[[package]]
name = "objc2-app-kit"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc"
dependencies = [
"bitflags 2.9.1",
"block2 0.6.1",
"objc2 0.6.1",
"objc2-foundation 0.3.1",
]
2024-02-09 07:09:51 -07:00
[[package]]
2024-10-21 13:51:10 -06:00
name = "objc2-cloud-kit"
version = "0.2.2"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
2024-10-21 13:51:10 -06:00
"objc2-core-location",
2025-04-15 20:04:07 -04:00
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
]
[[package]]
name = "objc2-contacts"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
dependencies = [
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
]
[[package]]
name = "objc2-core-data"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
"objc2-foundation 0.2.2",
]
[[package]]
name = "objc2-core-foundation"
version = "0.3.1"
2025-04-15 20:04:07 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
2025-04-15 20:04:07 -04:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-07-22 09:15:33 -06:00
"dispatch2",
"objc2 0.6.1",
2024-10-21 13:51:10 -06:00
]
[[package]]
name = "objc2-core-image"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
dependencies = [
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
"objc2-metal",
]
[[package]]
name = "objc2-core-location"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
dependencies = [
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
2024-10-21 13:51:10 -06:00
"objc2-contacts",
2025-04-15 20:04:07 -04:00
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
]
2024-02-09 07:09:51 -07:00
[[package]]
name = "objc2-encode"
2025-02-19 17:55:33 +01:00
version = "4.1.0"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
2024-02-09 07:09:51 -07:00
[[package]]
name = "objc2-foundation"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
2024-10-21 13:51:10 -06:00
"dispatch",
"libc",
2025-04-15 20:04:07 -04:00
"objc2 0.5.2",
]
[[package]]
name = "objc2-foundation"
version = "0.3.1"
2025-04-15 20:04:07 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c"
2025-04-15 20:04:07 -04:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"block2 0.6.1",
2025-04-15 20:04:07 -04:00
"libc",
"objc2 0.6.1",
2025-04-15 20:04:07 -04:00
"objc2-core-foundation",
]
2024-01-03 15:27:32 -07:00
[[package]]
2024-10-21 13:51:10 -06:00
name = "objc2-link-presentation"
version = "0.2.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
2025-06-18 11:22:48 -04:00
"objc2-app-kit 0.2.2",
2025-04-15 20:04:07 -04:00
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
]
[[package]]
name = "objc2-metal"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
]
[[package]]
name = "objc2-quartz-core"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
"objc2-metal",
]
[[package]]
name = "objc2-symbols"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
dependencies = [
2025-04-15 20:04:07 -04:00
"objc2 0.5.2",
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
]
[[package]]
name = "objc2-ui-kit"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
2024-10-21 13:51:10 -06:00
"objc2-cloud-kit",
"objc2-core-data",
"objc2-core-image",
"objc2-core-location",
2025-04-15 20:04:07 -04:00
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
"objc2-link-presentation",
"objc2-quartz-core",
"objc2-symbols",
"objc2-uniform-type-identifiers",
"objc2-user-notifications",
]
[[package]]
name = "objc2-uniform-type-identifiers"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
dependencies = [
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
]
[[package]]
name = "objc2-user-notifications"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
"objc2 0.5.2",
2024-10-21 13:51:10 -06:00
"objc2-core-location",
2025-04-15 20:04:07 -04:00
"objc2-foundation 0.2.2",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
dependencies = [
"objc",
]
[[package]]
name = "object"
2025-01-10 09:55:04 -07:00
version = "0.36.7"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
2024-01-03 15:27:32 -07:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
version = "1.21.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2024-01-03 15:27:32 -07:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "once_cell_polyfill"
version = "1.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
[[package]]
name = "open"
2025-01-10 09:55:04 -07:00
version = "5.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "e2483562e62ea94312f3576a7aca397306df7990b8d89033e18766744377ef95"
dependencies = [
"is-wsl",
"libc",
"pathdiff",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "option-ext"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
[[package]]
name = "orbclient"
2024-10-16 16:33:01 -06:00
version = "0.3.48"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-16 16:33:01 -06:00
checksum = "ba0b26cec2e24f08ed8bb31519a9333140a6599b867dac464bb150bdb796fd43"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-10-16 16:33:01 -06:00
"libredox",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "ordered-stream"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
dependencies = [
"futures-core",
"pin-project-lite",
]
[[package]]
name = "ordermap"
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d6bff06e4a5dc6416bead102d3e63c480dd852ffbb278bf8cfeb4966b329609"
dependencies = [
"indexmap 2.10.0",
"serde",
]
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "os_pipe"
2025-06-18 11:22:48 -04:00
version = "1.2.2"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "db335f4760b14ead6290116f2427bf33a14d4f0617d49f78a246de10c1831224"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
dependencies = [
"libc",
"windows-sys 0.59.0",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "ouroboros"
2025-01-13 09:03:23 -07:00
version = "0.18.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59"
2024-01-03 15:27:32 -07:00
dependencies = [
"aliasable",
"ouroboros_macro",
"static_assertions",
]
[[package]]
name = "ouroboros_macro"
2025-01-13 09:03:23 -07:00
version = "0.18.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0"
2024-01-03 15:27:32 -07:00
dependencies = [
"heck 0.4.1",
2024-01-03 15:27:32 -07:00
"proc-macro2",
2024-10-21 13:51:10 -06:00
"proc-macro2-diagnostics",
2024-01-03 15:27:32 -07:00
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
2024-04-30 13:29:58 -06:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2024-01-03 15:27:32 -07:00
[[package]]
name = "owned_ttf_parser"
2025-07-24 10:52:49 -06:00
version = "0.25.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-24 10:52:49 -06:00
checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-11-26 19:23:06 +01:00
"ttf-parser 0.25.1",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "palette"
2024-04-30 13:29:58 -06:00
version = "0.7.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-30 13:29:58 -06:00
checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
2024-01-03 15:27:32 -07:00
dependencies = [
"approx",
"fast-srgb8",
"palette_derive",
"phf",
"serde",
]
[[package]]
name = "palette_derive"
2024-04-30 13:29:58 -06:00
version = "0.7.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-30 13:29:58 -06:00
checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-04-30 13:29:58 -06:00
"by_address",
2024-01-03 15:27:32 -07:00
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-24 09:30:06 -05:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "parking"
version = "2.2.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2024-01-03 15:27:32 -07:00
[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
"parking_lot_core 0.8.6",
]
[[package]]
name = "parking_lot"
2025-06-18 11:22:48 -04:00
version = "0.12.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
2024-01-03 15:27:32 -07:00
dependencies = [
"lock_api",
2025-06-18 11:22:48 -04:00
"parking_lot_core 0.9.11",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "parking_lot_core"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
dependencies = [
"cfg-if",
2024-01-03 15:27:32 -07:00
"instant",
"libc",
"redox_syscall 0.2.16",
"smallvec",
"winapi",
]
[[package]]
name = "parking_lot_core"
2025-06-18 11:22:48 -04:00
version = "0.9.11"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2024-01-03 15:27:32 -07:00
"libc",
2025-07-29 17:11:26 -04:00
"redox_syscall 0.5.17",
2024-01-03 15:27:32 -07:00
"smallvec",
"windows-targets 0.52.6",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "paste"
2024-05-09 12:26:45 -06:00
version = "1.0.15"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-09 12:26:45 -06:00
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2024-01-03 15:27:32 -07:00
[[package]]
name = "pathdiff"
2024-11-26 19:23:06 +01:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 19:23:06 +01:00
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
[[package]]
name = "pbkdf2"
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
dependencies = [
"digest",
"hmac",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "percent-encoding"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
[[package]]
name = "phf"
2025-01-10 09:55:04 -07:00
version = "0.11.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2024-01-03 15:27:32 -07:00
dependencies = [
"phf_macros",
"phf_shared",
]
[[package]]
name = "phf_generator"
2025-01-10 09:55:04 -07:00
version = "0.11.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2024-01-03 15:27:32 -07:00
dependencies = [
"phf_shared",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"rand 0.8.5",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "phf_macros"
2025-01-10 09:55:04 -07:00
version = "0.11.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
2024-01-03 15:27:32 -07:00
dependencies = [
"phf_generator",
"phf_shared",
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "phf_shared"
2025-01-10 09:55:04 -07:00
version = "0.11.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-01-10 09:55:04 -07:00
"siphasher",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "pico-args"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
2024-10-21 13:51:10 -06:00
[[package]]
name = "pin-project"
2025-03-15 11:59:03 -04:00
version = "1.1.10"
2024-10-21 13:51:10 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
2024-10-21 13:51:10 -06:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2025-03-15 11:59:03 -04:00
version = "1.1.10"
2024-10-21 13:51:10 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
2024-10-21 13:51:10 -06:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-10-21 13:51:10 -06:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "pin-project-lite"
2025-01-10 09:55:04 -07:00
version = "0.2.16"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2024-01-03 15:27:32 -07:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "piper"
2024-08-19 13:25:36 -06:00
version = "0.2.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-19 13:25:36 -06:00
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
2024-01-03 15:27:32 -07:00
dependencies = [
"atomic-waker",
2025-01-10 09:55:04 -07:00
"fastrand 2.3.0",
2024-01-03 15:27:32 -07:00
"futures-io",
]
[[package]]
name = "pkg-config"
2025-03-15 11:59:03 -04:00
version = "0.3.32"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2024-01-03 15:27:32 -07:00
[[package]]
name = "png"
2025-01-10 09:55:04 -07:00
version = "0.17.16"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
2024-01-03 15:27:32 -07:00
dependencies = [
"bitflags 1.3.2",
"crc32fast",
"fdeflate",
"flate2",
2024-10-25 13:24:17 +02:00
"miniz_oxide",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "polling"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
dependencies = [
"autocfg",
"bitflags 1.3.2",
"cfg-if",
2024-01-03 15:27:32 -07:00
"concurrent-queue",
"libc",
"log",
"pin-project-lite",
"windows-sys 0.48.0",
]
[[package]]
name = "polling"
2025-07-22 09:15:33 -06:00
version = "3.9.0"
2025-06-18 11:22:48 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "8ee9b2fa7a4517d2c91ff5bc6c297a427a96749d15f98fcdbb22c05571a4d4b7"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2024-01-03 15:27:32 -07:00
"concurrent-queue",
2025-06-18 11:22:48 -04:00
"hermit-abi 0.5.2",
2024-01-03 15:27:32 -07:00
"pin-project-lite",
2025-07-22 09:15:33 -06:00
"rustix 1.0.8",
"windows-sys 0.60.2",
2024-01-03 15:27:32 -07:00
]
2024-05-17 08:56:19 -06:00
[[package]]
name = "pollster"
2025-06-18 11:22:48 -04:00
version = "0.4.0"
2024-05-17 08:56:19 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
2024-05-17 08:56:19 -06:00
2025-03-15 11:59:03 -04:00
[[package]]
name = "portable-atomic"
2025-06-18 11:22:48 -04:00
version = "1.11.1"
2025-03-15 11:59:03 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2025-03-15 11:59:03 -04:00
[[package]]
name = "portable-atomic-util"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
dependencies = [
"portable-atomic",
]
[[package]]
2025-06-18 11:22:48 -04:00
name = "potential_utf"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
dependencies = [
"zerovec 0.11.2",
]
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2024-01-03 15:27:32 -07:00
[[package]]
name = "ppv-lite86"
2025-03-15 11:59:03 -04:00
version = "0.2.21"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2024-08-19 13:25:36 -06:00
dependencies = [
2025-06-18 11:22:48 -04:00
"zerocopy",
2024-08-19 13:25:36 -06:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "presser"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
[[package]]
name = "prettyplease"
2025-07-24 10:52:49 -06:00
version = "0.2.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-24 10:52:49 -06:00
checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
dependencies = [
"proc-macro2",
"syn 2.0.104",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "proc-macro-crate"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
dependencies = [
"once_cell",
"toml_edit 0.19.15",
]
2024-02-09 07:09:51 -07:00
[[package]]
name = "proc-macro-crate"
2025-03-15 11:59:03 -04:00
version = "3.3.0"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
2024-02-09 07:09:51 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"toml_edit 0.22.27",
2024-02-09 07:09:51 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
2025-02-19 17:55:33 +01:00
name = "proc-macro-error-attr2"
version = "2.0.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
]
[[package]]
2025-02-19 17:55:33 +01:00
name = "proc-macro-error2"
version = "2.0.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-02-19 17:55:33 +01:00
"proc-macro-error-attr2",
2024-01-03 15:27:32 -07:00
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "proc-macro2"
2025-04-17 08:03:53 -06:00
version = "1.0.95"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-17 08:03:53 -06:00
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2024-01-03 15:27:32 -07:00
dependencies = [
"unicode-ident",
]
2024-10-21 13:51:10 -06:00
[[package]]
name = "proc-macro2-diagnostics"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-10-21 13:51:10 -06:00
"version_check",
"yansi",
]
[[package]]
name = "procfs"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc5b72d8145275d844d4b5f6d4e1eef00c8cd889edb6035c21675d1bb1f45c9f"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"chrono",
"flate2",
"hex",
"procfs-core",
"rustix 0.38.44",
]
[[package]]
name = "procfs-core"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "239df02d8349b06fc07398a3a1697b06418223b1c7725085e801e7c0fc6a12ec"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"chrono",
"hex",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "profiling"
version = "1.0.17"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
2024-11-11 09:14:03 -07:00
dependencies = [
"profiling-procmacros",
]
[[package]]
name = "profiling-procmacros"
version = "1.0.17"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b"
2024-11-11 09:14:03 -07:00
dependencies = [
"quote",
"syn 2.0.104",
2024-11-11 09:14:03 -07:00
]
2024-01-03 15:27:32 -07:00
2024-01-05 14:44:20 -07:00
[[package]]
name = "pure-rust-locales"
2024-02-12 10:02:05 -07:00
version = "0.8.1"
2024-01-05 14:44:20 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-12 10:02:05 -07:00
checksum = "1190fd18ae6ce9e137184f207593877e70f39b015040156b1e05081cdfe3733a"
2024-01-05 14:44:20 -07:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "qoi"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
dependencies = [
"bytemuck",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "quick-error"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2024-08-28 08:54:44 +02:00
[[package]]
name = "quick-xml"
version = "0.36.2"
2024-08-28 08:54:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
2024-08-28 08:54:44 +02:00
dependencies = [
"memchr",
"serde",
]
[[package]]
name = "quick-xml"
version = "0.37.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
dependencies = [
"memchr",
]
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "quinn-proto"
2025-06-18 11:22:48 -04:00
version = "0.11.12"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
dependencies = [
"bytes",
2025-06-18 11:22:48 -04:00
"getrandom 0.3.3",
"lru-slab",
2025-07-22 09:15:33 -06:00
"rand 0.9.2",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"ring",
"rustc-hash 2.1.1",
"rustls-pki-types",
"slab",
"thiserror 2.0.12",
"tinyvec",
"tracing",
"web-time",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "quote"
2025-03-15 11:59:03 -04:00
version = "1.0.40"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "r-efi"
2025-06-19 10:06:15 -04:00
version = "5.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-19 10:06:15 -04:00
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2024-01-03 15:27:32 -07:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"rand_chacha 0.3.1",
"rand_core 0.6.4",
]
[[package]]
name = "rand"
2025-07-22 09:15:33 -06:00
version = "0.9.2"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
dependencies = [
"rand_chacha 0.9.0",
"rand_core 0.9.3",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"rand_core 0.6.4",
]
[[package]]
name = "rand_chacha"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
dependencies = [
"ppv-lite86",
"rand_core 0.9.3",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom 0.2.16",
2024-01-03 15:27:32 -07:00
]
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "rand_core"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
dependencies = [
2025-06-18 11:22:48 -04:00
"getrandom 0.3.3",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "range-alloc"
2025-02-19 17:55:33 +01:00
version = "0.1.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "c3d6831663a5098ea164f89cff59c6284e95f4e3c76ce9848d4529f5ccca9bde"
2024-01-03 15:27:32 -07:00
[[package]]
name = "rangemap"
2025-07-29 17:11:26 -04:00
version = "1.6.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "f93e7e49bb0bf967717f7bd674458b3d6b0c5f48ec7e3038166026a69fc22223"
2024-01-03 15:27:32 -07:00
2024-11-11 09:14:03 -07:00
[[package]]
name = "rav1e"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
dependencies = [
"arbitrary",
"arg_enum_proc_macro",
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-11-11 09:14:03 -07:00
"av1-grain",
"bitstream-io",
"built",
"cfg-if",
"interpolate_name",
"itertools",
"libc",
"libfuzzer-sys",
"log",
"maybe-rayon",
"new_debug_unreachable",
"noop_proc_macro",
"num-derive",
"num-traits",
"once_cell",
"paste",
"profiling",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"rand 0.8.5",
"rand_chacha 0.3.1",
2024-11-11 09:14:03 -07:00
"simd_helpers",
"system-deps 6.2.2",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-11-11 09:14:03 -07:00
"v_frame",
"wasm-bindgen",
]
[[package]]
name = "ravif"
version = "0.11.20"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5825c26fddd16ab9f515930d49028a630efec172e903483c94796cfe31893e6b"
2024-11-11 09:14:03 -07:00
dependencies = [
"avif-serialize",
"imgref",
"loop9",
"quick-error",
"rav1e",
"rayon",
"rgb",
]
2024-02-09 07:09:51 -07:00
[[package]]
name = "raw-window-handle"
2024-05-20 14:09:45 -06:00
version = "0.6.2"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 14:09:45 -06:00
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
2024-02-09 07:09:51 -07:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "rayon"
version = "1.10.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2024-01-03 15:27:32 -07:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.12.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2024-01-03 15:27:32 -07:00
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
]
2024-02-01 15:14:14 -07:00
[[package]]
name = "read-fonts"
2025-06-18 11:22:48 -04:00
version = "0.29.3"
2024-02-01 15:14:14 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "04ca636dac446b5664bd16c069c00a9621806895b8bb02c2dc68542b23b8f25d"
2024-02-01 15:14:14 -07:00
dependencies = [
"bytemuck",
2024-02-01 15:14:14 -07:00
"font-types",
]
2024-08-28 08:54:44 +02:00
[[package]]
name = "recently-used-xbel"
version = "1.1.0"
source = "git+https://github.com/pop-os/recently-used-xbel.git#eeba9e08b0446175d7dd4f526d21ea867ed37e87"
2024-08-28 08:54:44 +02:00
dependencies = [
"chrono",
"dirs 5.0.1",
"infer",
"mime_guess",
"quick-xml 0.36.2",
2024-08-28 08:54:44 +02:00
"serde",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-08-28 08:54:44 +02:00
"url",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags 1.3.2",
]
[[package]]
name = "redox_syscall"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
"bitflags 1.3.2",
]
2024-04-25 20:19:36 -06:00
[[package]]
name = "redox_syscall"
2025-07-29 17:11:26 -04:00
version = "0.5.17"
2024-04-25 20:19:36 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
2024-04-25 20:19:36 -06:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-04-25 20:19:36 -06:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "redox_users"
2024-08-19 13:25:36 -06:00
version = "0.4.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-19 13:25:36 -06:00
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2024-01-03 15:27:32 -07:00
dependencies = [
"getrandom 0.2.16",
2024-10-16 16:33:01 -06:00
"libredox",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
]
2025-02-19 17:55:33 +01:00
[[package]]
name = "redox_users"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
dependencies = [
"getrandom 0.2.16",
2025-02-19 17:55:33 +01:00
"libredox",
2025-03-15 11:59:03 -04:00
"thiserror 2.0.12",
2025-02-19 17:55:33 +01:00
]
2025-06-18 11:22:48 -04:00
[[package]]
name = "ref-cast"
version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
dependencies = [
"ref-cast-impl",
]
[[package]]
name = "ref-cast-impl"
version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2025-06-18 11:22:48 -04:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "regex"
2024-10-29 14:29:20 -06:00
version = "1.11.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-29 14:29:20 -06:00
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2024-01-03 15:27:32 -07:00
dependencies = [
"aho-corasick",
"memchr",
2024-11-11 09:14:03 -07:00
"regex-automata 0.4.9",
2024-10-02 15:56:15 -06:00
"regex-syntax 0.8.5",
2024-04-30 13:29:58 -06:00
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax 0.6.29",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "regex-automata"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9368763f5a9b804326f3af749e16f9abf378d227bcdee7634b13d8f17793782"
dependencies = [
"memchr",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "regex-automata"
2024-11-11 09:14:03 -07:00
version = "0.4.9"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-11 09:14:03 -07:00
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2024-01-03 15:27:32 -07:00
dependencies = [
"aho-corasick",
"memchr",
2024-10-02 15:56:15 -06:00
"regex-syntax 0.8.5",
2024-01-03 15:27:32 -07:00
]
2024-04-30 13:29:58 -06:00
[[package]]
name = "regex-syntax"
version = "0.6.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2024-01-03 15:27:32 -07:00
[[package]]
name = "regex-syntax"
2024-10-02 15:56:15 -06:00
version = "0.8.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 15:56:15 -06:00
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2024-01-03 15:27:32 -07:00
[[package]]
name = "renderdoc-sys"
2024-03-04 10:28:16 -07:00
version = "1.1.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-04 10:28:16 -07:00
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
2024-01-03 15:27:32 -07:00
[[package]]
name = "resvg"
2024-10-21 13:51:10 -06:00
version = "0.42.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "944d052815156ac8fa77eaac055220e95ba0b01fa8887108ca710c03805d9051"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-10-21 13:51:10 -06:00
"gif",
"jpeg-decoder",
2024-01-03 15:27:32 -07:00
"log",
"pico-args",
"rgb",
"svgtypes",
2024-02-09 07:09:51 -07:00
"tiny-skia",
2024-01-03 15:27:32 -07:00
"usvg",
]
2024-01-24 09:30:06 -05:00
[[package]]
name = "rfd"
2025-07-22 09:15:33 -06:00
version = "0.15.4"
2024-01-24 09:30:06 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "ef2bee61e6cffa4635c72d7d81a84294e28f0930db0ddcb0f66d10244674ebed"
2024-01-24 09:30:06 -05:00
dependencies = [
2025-06-18 11:22:48 -04:00
"ashpd",
"block2 0.6.1",
2025-07-22 09:15:33 -06:00
"dispatch2",
2024-01-24 09:30:06 -05:00
"js-sys",
"log",
2025-06-18 11:22:48 -04:00
"objc2 0.6.1",
"objc2-app-kit 0.3.1",
"objc2-core-foundation",
"objc2-foundation 0.3.1",
2024-05-17 08:56:19 -06:00
"pollster",
"raw-window-handle",
"urlencoding",
2024-01-24 09:30:06 -05:00
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2025-06-18 11:22:48 -04:00
"windows-sys 0.59.0",
2024-01-24 09:30:06 -05:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "rgb"
2025-07-22 09:15:33 -06:00
version = "0.8.52"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
2024-01-03 15:27:32 -07:00
dependencies = [
"bytemuck",
]
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "ring"
version = "0.17.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
dependencies = [
"cc",
"cfg-if",
"getrandom 0.2.16",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"libc",
"untrusted",
"windows-sys 0.52.0",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "ron"
2025-03-31 08:52:18 -06:00
version = "0.9.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-31 08:52:18 -06:00
checksum = "63f3aa105dea217ef30d89581b65a4d527a19afc95ef5750be3890e8d3c5b837"
2024-01-03 15:27:32 -07:00
dependencies = [
"base64",
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"serde",
"serde_derive",
"unicode-ident",
2024-01-03 15:27:32 -07:00
]
2024-08-19 13:25:36 -06:00
[[package]]
name = "roxmltree"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
2024-01-03 15:27:32 -07:00
[[package]]
name = "rust-embed"
2025-06-18 11:22:48 -04:00
version = "8.7.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "025908b8682a26ba8d12f6f2d66b987584a4a87bc024abc5bbc12553a8cd178a"
2024-01-03 15:27:32 -07:00
dependencies = [
"rust-embed-impl",
"rust-embed-utils",
"walkdir",
]
[[package]]
name = "rust-embed-impl"
2025-06-18 11:22:48 -04:00
version = "8.7.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "6065f1a4392b71819ec1ea1df1120673418bf386f50de1d6f54204d836d4349c"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"rust-embed-utils",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
"walkdir",
]
[[package]]
name = "rust-embed-utils"
2025-06-18 11:22:48 -04:00
version = "8.7.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "f6cc0c81648b20b70c491ff8cce00c1c3b223bb8ed2b5d41f0e54c6c4c0a3594"
2024-01-03 15:27:32 -07:00
dependencies = [
"sha2",
"walkdir",
]
[[package]]
name = "rustc-demangle"
2025-07-29 17:11:26 -04:00
version = "0.1.26"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
2024-01-03 15:27:32 -07:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2024-10-21 13:51:10 -06:00
[[package]]
name = "rustc-hash"
2025-02-19 17:55:33 +01:00
version = "2.1.1"
2024-10-21 13:51:10 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2024-10-21 13:51:10 -06:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "rustix"
2025-01-10 09:55:04 -07:00
version = "0.37.28"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "519165d378b97752ca44bbe15047d5d3409e875f39327546b42ac81d7e18c1b6"
2024-01-03 15:27:32 -07:00
dependencies = [
"bitflags 1.3.2",
"errno",
2025-02-19 17:55:33 +01:00
"io-lifetimes",
2024-01-03 15:27:32 -07:00
"libc",
"linux-raw-sys 0.3.8",
"windows-sys 0.48.0",
]
[[package]]
name = "rustix"
2025-02-19 17:55:33 +01:00
version = "0.38.44"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"errno",
"libc",
2025-01-10 09:55:04 -07:00
"linux-raw-sys 0.4.15",
"windows-sys 0.59.0",
2024-01-03 15:27:32 -07:00
]
2025-03-15 11:59:03 -04:00
[[package]]
name = "rustix"
2025-07-22 09:15:33 -06:00
version = "1.0.8"
2025-03-15 11:59:03 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2025-03-15 11:59:03 -04:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-03-15 11:59:03 -04:00
"errno",
"libc",
2025-04-15 20:04:07 -04:00
"linux-raw-sys 0.9.4",
2025-07-22 09:15:33 -06:00
"windows-sys 0.60.2",
2025-03-15 11:59:03 -04:00
]
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "rustls"
2025-07-29 17:11:26 -04:00
version = "0.23.31"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
dependencies = [
"once_cell",
"rustls-pki-types",
"rustls-webpki",
"subtle",
"zeroize",
]
[[package]]
name = "rustls-pki-types"
2025-06-18 11:22:48 -04:00
version = "1.12.0"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
dependencies = [
"web-time",
2025-06-18 11:22:48 -04:00
"zeroize",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
]
[[package]]
name = "rustls-webpki"
2025-07-10 15:27:51 -06:00
version = "0.103.4"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
dependencies = [
"ring",
"rustls-pki-types",
"untrusted",
]
[[package]]
name = "rustversion"
2025-06-18 11:22:48 -04:00
version = "1.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
[[package]]
name = "rustybuzz"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfb9cf8877777222e4a3bc7eb247e398b56baba500c38c1c46842431adc8b55c"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"bytemuck",
"libm",
"smallvec",
"ttf-parser 0.21.1",
2024-10-21 13:51:10 -06:00
"unicode-bidi-mirroring",
"unicode-ccc",
2024-01-03 15:27:32 -07:00
"unicode-properties",
"unicode-script",
]
[[package]]
name = "ryu"
2025-03-15 11:59:03 -04:00
version = "1.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2024-01-03 15:27:32 -07:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2025-06-18 11:22:48 -04:00
[[package]]
name = "schemars"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
dependencies = [
"dyn-clone",
"ref-cast",
"serde",
"serde_json",
]
2025-07-01 09:31:12 -06:00
[[package]]
name = "schemars"
2025-07-10 15:27:51 -06:00
version = "1.0.4"
2025-07-01 09:31:12 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
2025-07-01 09:31:12 -06:00
dependencies = [
"dyn-clone",
"ref-cast",
"serde",
"serde_json",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "scoped-tls"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
[[package]]
name = "scopeguard"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
[[package]]
name = "sctk-adwaita"
2024-10-21 13:51:10 -06:00
version = "0.10.1"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "b6277f0217056f77f1d8f49f2950ac6c278c0d607c45f5ee99328d792ede24ec"
2024-01-03 15:27:32 -07:00
dependencies = [
"ab_glyph",
"log",
2025-07-22 09:15:33 -06:00
"memmap2 0.9.7",
2024-10-21 13:51:10 -06:00
"smithay-client-toolkit",
2024-02-09 07:09:51 -07:00
"tiny-skia",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "self_cell"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14e4d63b804dc0c7ec4a1e52bcb63f02c7ac94476755aa579edac21e01f915d"
dependencies = [
2025-04-15 20:04:07 -04:00
"self_cell 1.2.0",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "self_cell"
2025-04-15 20:04:07 -04:00
version = "1.2.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "0f7d95a54511e0c7be3f51e8867aa8cf35148d7b9445d44de2f943e2b206e749"
2024-01-03 15:27:32 -07:00
[[package]]
name = "serde"
2025-03-15 11:59:03 -04:00
version = "1.0.219"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2024-01-03 15:27:32 -07:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2025-03-15 11:59:03 -04:00
version = "1.0.219"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-05-14 11:15:54 -06:00
]
[[package]]
name = "serde_json"
2025-07-22 09:15:33 -06:00
version = "1.0.141"
2024-05-14 11:15:54 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3"
2024-05-14 11:15:54 -06:00
dependencies = [
2025-06-27 11:14:09 -06:00
"indexmap 2.10.0",
2024-05-14 11:15:54 -06:00
"itoa",
2024-08-19 13:25:36 -06:00
"memchr",
2024-05-14 11:15:54 -06:00
"ryu",
"serde",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "serde_repr"
2025-03-15 11:59:03 -04:00
version = "0.1.20"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "serde_spanned"
2025-06-18 11:22:48 -04:00
version = "0.6.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
dependencies = [
"serde",
]
[[package]]
name = "serde_with"
2025-07-01 09:31:12 -06:00
version = "3.14.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-01 09:31:12 -06:00
checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"base64",
"chrono",
"hex",
"indexmap 1.9.3",
2025-06-27 11:14:09 -06:00
"indexmap 2.10.0",
2025-07-01 09:31:12 -06:00
"schemars 0.9.0",
2025-07-10 15:27:51 -06:00
"schemars 1.0.4",
2024-01-03 15:27:32 -07:00
"serde",
2025-06-18 11:22:48 -04:00
"serde_derive",
"serde_json",
"serde_with_macros",
"time",
]
[[package]]
name = "serde_with_macros"
2025-07-01 09:31:12 -06:00
version = "3.14.0"
2025-06-18 11:22:48 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-01 09:31:12 -06:00
checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
2025-06-18 11:22:48 -04:00
dependencies = [
"darling",
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "sha1"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
dependencies = [
"cfg-if",
2024-01-03 15:27:32 -07:00
"cpufeatures",
"digest",
]
[[package]]
name = "sha2"
2025-05-01 09:19:40 -06:00
version = "0.10.9"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-01 09:19:40 -06:00
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2024-01-03 15:27:32 -07:00
"cpufeatures",
"digest",
]
2024-04-30 13:29:58 -06:00
[[package]]
name = "sharded-slab"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
dependencies = [
"lazy_static",
]
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2024-01-03 15:27:32 -07:00
[[package]]
name = "signal-hook-registry"
version = "1.4.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
2024-01-03 15:27:32 -07:00
dependencies = [
"libc",
]
[[package]]
name = "simd-adler32"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2024-11-11 09:14:03 -07:00
[[package]]
name = "simd_helpers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
dependencies = [
"quote",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "simplecss"
2025-01-10 09:55:04 -07:00
version = "0.2.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
2024-01-03 15:27:32 -07:00
dependencies = [
"log",
]
2024-10-21 13:51:10 -06:00
[[package]]
name = "siphasher"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
[[package]]
name = "skrifa"
2025-06-18 11:22:48 -04:00
version = "0.31.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "dbeb4ca4399663735553a09dd17ce7e49a0a0203f03b706b39628c4d913a8607"
dependencies = [
"bytemuck",
"read-fonts",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "slab"
2025-06-18 11:22:48 -04:00
version = "0.4.10"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
2024-01-03 15:27:32 -07:00
[[package]]
name = "slotmap"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
dependencies = [
"version_check",
]
[[package]]
name = "smallvec"
2025-06-18 11:22:48 -04:00
version = "1.15.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2024-01-03 15:27:32 -07:00
[[package]]
name = "smithay-client-toolkit"
2024-07-17 07:47:42 -06:00
version = "0.19.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-17 07:47:42 -06:00
checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-06-12 14:58:06 -04:00
"bytemuck",
2024-10-21 13:51:10 -06:00
"calloop",
"calloop-wayland-source",
"cursor-icon",
"libc",
"log",
2025-07-22 09:15:33 -06:00
"memmap2 0.9.7",
2024-06-12 14:58:06 -04:00
"pkg-config",
2025-02-19 17:55:33 +01:00
"rustix 0.38.44",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
"wayland-backend",
"wayland-client",
"wayland-csd-frame",
"wayland-cursor",
2024-10-21 13:51:10 -06:00
"wayland-protocols",
"wayland-protocols-wlr",
"wayland-scanner",
2024-06-12 14:58:06 -04:00
"xkbcommon",
"xkeysym",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "smithay-clipboard"
2024-03-18 12:23:08 -06:00
version = "0.8.0"
source = "git+https://github.com/pop-os/smithay-clipboard?tag=pop-dnd-5#5a3007def49eb678d1144850c9ee04b80707c56a"
2024-01-03 15:27:32 -07:00
dependencies = [
"libc",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2024-10-21 13:51:10 -06:00
"smithay-client-toolkit",
"wayland-backend",
2024-01-03 15:27:32 -07:00
]
2024-02-09 07:09:51 -07:00
[[package]]
name = "smol_str"
2024-05-14 11:15:54 -06:00
version = "0.2.2"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 11:15:54 -06:00
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
2024-02-09 07:09:51 -07:00
dependencies = [
"serde",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "socket2"
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "socket2"
2025-06-18 11:22:48 -04:00
version = "0.5.10"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2024-01-03 15:27:32 -07:00
dependencies = [
"libc",
2024-02-26 15:15:49 -07:00
"windows-sys 0.52.0",
2024-01-03 15:27:32 -07:00
]
2025-07-29 17:11:26 -04:00
[[package]]
name = "socket2"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
dependencies = [
"libc",
"windows-sys 0.59.0",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "softbuffer"
2024-02-09 07:09:51 -07:00
version = "0.4.1"
2024-02-09 21:12:27 -07:00
source = "git+https://github.com/pop-os/softbuffer?tag=cosmic-4.0#6e75b1ad7e98397d37cb187886d05969bc480995"
2024-01-03 15:27:32 -07:00
dependencies = [
"as-raw-xcb-connection",
"bytemuck",
2024-05-14 11:15:54 -06:00
"cfg_aliases 0.2.1",
"cocoa",
"core-graphics",
2024-01-03 15:27:32 -07:00
"drm",
2025-01-10 09:55:04 -07:00
"fastrand 2.3.0",
"foreign-types",
2024-01-03 15:27:32 -07:00
"js-sys",
"log",
2025-07-22 09:15:33 -06:00
"memmap2 0.9.7",
2024-01-03 15:27:32 -07:00
"objc",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2024-01-03 15:27:32 -07:00
"redox_syscall 0.4.1",
2025-02-19 17:55:33 +01:00
"rustix 0.38.44",
2024-01-03 15:27:32 -07:00
"tiny-xlib",
"wasm-bindgen",
"wayland-backend",
"wayland-client",
"wayland-sys",
2024-01-03 15:27:32 -07:00
"web-sys",
2024-02-09 07:09:51 -07:00
"windows-sys 0.52.0",
"x11rb",
2024-01-03 15:27:32 -07:00
]
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
dependencies = [
"lock_api",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "spirv"
2024-02-09 07:09:51 -07:00
version = "0.3.0+sdk-1.3.268.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2024-01-03 15:27:32 -07:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "strict-num"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
dependencies = [
"float-cmp",
]
2024-05-17 08:56:19 -06:00
[[package]]
name = "strsim"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
[[package]]
name = "subtle"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2024-01-03 15:27:32 -07:00
[[package]]
name = "svg_fmt"
2025-04-17 08:03:53 -06:00
version = "0.4.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-17 08:03:53 -06:00
checksum = "0193cc4331cfd2f3d2011ef287590868599a2f33c3e69bc22c1a3d3acf9e02fb"
2024-01-03 15:27:32 -07:00
[[package]]
name = "svgtypes"
2025-02-19 17:55:33 +01:00
version = "0.15.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-07-22 09:15:33 -06:00
"kurbo 0.11.3",
2025-01-10 09:55:04 -07:00
"siphasher",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "swash"
2025-06-18 11:22:48 -04:00
version = "0.2.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "f745de914febc7c9ab4388dfaf94bbc87e69f57bb41133a9b0c84d4be49856f3"
2024-01-03 15:27:32 -07:00
dependencies = [
"skrifa",
2024-01-03 15:27:32 -07:00
"yazi",
"zeno",
]
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
version = "2.0.104"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "synstructure"
2025-05-01 09:19:40 -06:00
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-01 09:19:40 -06:00
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "sys-locale"
2024-10-25 13:24:17 +02:00
version = "0.3.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-25 13:24:17 +02:00
checksum = "8eab9a99a024a169fe8a903cf9d4a3b3601109bcc13bd9e3c6fff259138626c4"
2024-01-03 15:27:32 -07:00
dependencies = [
"libc",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "system-deps"
version = "6.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
dependencies = [
"cfg-expr 0.15.8",
"heck 0.5.0",
"pkg-config",
2025-06-18 11:22:48 -04:00
"toml 0.8.23",
2024-11-11 09:14:03 -07:00
"version-compare",
]
2024-01-24 09:30:06 -05:00
[[package]]
name = "system-deps"
2025-06-18 11:22:48 -04:00
version = "7.0.5"
2024-01-24 09:30:06 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "e4be53aa0cba896d2dc615bd42bbc130acdcffa239e0a2d965ea5b3b2a86ffdb"
2024-01-24 09:30:06 -05:00
dependencies = [
2025-07-10 15:27:51 -06:00
"cfg-expr 0.20.1",
"heck 0.5.0",
2024-01-24 09:30:06 -05:00
"pkg-config",
2025-06-18 11:22:48 -04:00
"toml 0.8.23",
2024-01-24 09:30:06 -05:00
"version-compare",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "taffy"
version = "0.3.11"
source = "git+https://github.com/DioxusLabs/taffy?rev=7781c70#7781c70241f7f572130c13106f2a869a9cf80885"
dependencies = [
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-01-03 15:27:32 -07:00
"grid",
"num-traits",
"slotmap",
]
[[package]]
name = "tar"
2025-03-15 11:59:03 -04:00
version = "0.4.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
dependencies = [
"filetime",
"libc",
"xattr",
]
2024-01-24 09:30:06 -05:00
[[package]]
name = "target-lexicon"
2024-08-19 13:25:36 -06:00
version = "0.12.16"
2024-01-24 09:30:06 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-19 13:25:36 -06:00
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2024-01-24 09:30:06 -05:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "target-lexicon"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
[[package]]
name = "tauri-winrt-notification"
2025-04-15 20:04:07 -04:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-04-15 20:04:07 -04:00
checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9"
dependencies = [
"quick-xml 0.37.5",
2025-04-15 20:04:07 -04:00
"thiserror 2.0.12",
2025-06-18 11:22:48 -04:00
"windows 0.61.3",
"windows-version",
]
[[package]]
name = "temp-dir"
2025-06-18 11:22:48 -04:00
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "83176759e9416cf81ee66cb6508dbfe9c96f20b8b56265a39917551c23c70964"
2024-01-03 15:27:32 -07:00
[[package]]
name = "tempfile"
2025-06-18 11:22:48 -04:00
version = "3.20.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-01-10 09:55:04 -07:00
"fastrand 2.3.0",
2025-06-18 11:22:48 -04:00
"getrandom 0.3.3",
2024-08-19 13:25:36 -06:00
"once_cell",
2025-07-22 09:15:33 -06:00
"rustix 1.0.8",
2024-08-19 13:25:36 -06:00
"windows-sys 0.59.0",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "termcolor"
2024-01-10 08:53:22 -07:00
version = "1.4.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-10 08:53:22 -07:00
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2024-01-03 15:27:32 -07:00
dependencies = [
"winapi-util",
]
[[package]]
name = "test-log"
2025-07-01 09:31:12 -06:00
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-01 09:31:12 -06:00
checksum = "1e33b98a582ea0be1168eba097538ee8dd4bbe0f2b01b22ac92ea30054e5be7b"
dependencies = [
2024-02-26 15:15:49 -07:00
"env_logger",
"test-log-macros",
2024-04-30 13:29:58 -06:00
"tracing-subscriber",
]
[[package]]
name = "test-log-macros"
2025-07-01 09:31:12 -06:00
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-01 09:31:12 -06:00
checksum = "451b374529930d7601b1eef8d32bc79ae870b6079b069401709c2a8bf9e75f36"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "thiserror"
2024-11-11 09:14:03 -07:00
version = "1.0.69"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-11 09:14:03 -07:00
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-11-26 19:23:06 +01:00
"thiserror-impl 1.0.69",
]
[[package]]
name = "thiserror"
2025-03-15 11:59:03 -04:00
version = "2.0.12"
2024-11-26 19:23:06 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
2024-11-26 19:23:06 +01:00
dependencies = [
2025-03-15 11:59:03 -04:00
"thiserror-impl 2.0.12",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "thiserror-impl"
2024-11-11 09:14:03 -07:00
version = "1.0.69"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-11 09:14:03 -07:00
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-11-26 19:23:06 +01:00
]
[[package]]
name = "thiserror-impl"
2025-03-15 11:59:03 -04:00
version = "2.0.12"
2024-11-26 19:23:06 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
2024-11-26 19:23:06 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
2024-04-30 13:29:58 -06:00
[[package]]
name = "thread_local"
2025-06-18 11:22:48 -04:00
version = "1.1.9"
2024-04-30 13:29:58 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2024-04-30 13:29:58 -06:00
dependencies = [
"cfg-if",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "tiff"
version = "0.9.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
2024-01-03 15:27:32 -07:00
dependencies = [
"flate2",
"jpeg-decoder",
2024-01-03 15:27:32 -07:00
"weezl",
]
[[package]]
name = "tikv-jemalloc-sys"
version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "tikv-jemallocator"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865"
dependencies = [
"libc",
"tikv-jemalloc-sys",
]
[[package]]
name = "time"
version = "0.3.41"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
dependencies = [
"deranged",
"itoa",
"libc",
"num-conv",
"num_threads",
"powerfmt",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
[[package]]
name = "time-macros"
version = "0.2.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
dependencies = [
"num-conv",
"time-core",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "tiny-skia"
2024-02-09 07:09:51 -07:00
version = "0.11.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
2024-01-03 15:27:32 -07:00
dependencies = [
"arrayref",
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-01-03 15:27:32 -07:00
"bytemuck",
"cfg-if",
2024-01-03 15:27:32 -07:00
"log",
"png",
2024-02-09 07:09:51 -07:00
"tiny-skia-path",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "tiny-skia-path"
2024-02-09 07:09:51 -07:00
version = "0.11.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-09 07:09:51 -07:00
checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
2024-01-03 15:27:32 -07:00
dependencies = [
"arrayref",
"bytemuck",
"strict-num",
]
[[package]]
name = "tiny-xlib"
2024-11-26 19:23:06 +01:00
version = "0.2.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 19:23:06 +01:00
checksum = "0324504befd01cab6e0c994f34b2ffa257849ee019d3fb3b64fb2c858887d89e"
2024-01-03 15:27:32 -07:00
dependencies = [
"as-raw-xcb-connection",
2024-05-28 19:05:59 -06:00
"ctor-lite",
2024-10-21 13:51:10 -06:00
"libloading",
2024-05-28 19:05:59 -06:00
"pkg-config",
2024-01-03 15:27:32 -07:00
"tracing",
]
[[package]]
name = "tinystr"
2024-05-28 19:05:59 -06:00
version = "0.7.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-28 19:05:59 -06:00
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
2024-01-03 15:27:32 -07:00
dependencies = [
"displaydoc",
2025-06-18 11:22:48 -04:00
"zerovec 0.10.4",
]
[[package]]
name = "tinystr"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
dependencies = [
"displaydoc",
"zerovec 0.11.2",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "tinyvec"
2025-03-15 11:59:03 -04:00
version = "1.9.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
2024-01-03 15:27:32 -07:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
2025-07-29 17:11:26 -04:00
version = "1.47.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "43864ed400b6043a4757a25c7a64a8efde741aed79a056a2fb348a406701bb35"
2024-01-03 15:27:32 -07:00
dependencies = [
"backtrace",
"bytes",
2025-07-10 15:27:51 -06:00
"io-uring",
2024-01-03 15:27:32 -07:00
"libc",
2025-06-18 11:22:48 -04:00
"mio 1.0.4",
2024-01-03 15:27:32 -07:00
"pin-project-lite",
"signal-hook-registry",
2025-07-10 15:27:51 -06:00
"slab",
2025-07-29 17:11:26 -04:00
"socket2 0.6.0",
"tokio-macros",
2024-01-03 15:27:32 -07:00
"tracing",
2025-07-29 17:11:26 -04:00
"windows-sys 0.59.0",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "tokio-macros"
2025-01-10 09:55:04 -07:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
]
[[package]]
name = "tokio-stream"
2025-01-10 09:55:04 -07:00
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "toml"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
dependencies = [
"serde",
]
[[package]]
name = "toml"
2025-06-18 11:22:48 -04:00
version = "0.8.23"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2024-01-03 15:27:32 -07:00
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
2025-06-18 11:22:48 -04:00
"toml_edit 0.22.27",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "toml_datetime"
2025-06-18 11:22:48 -04:00
version = "0.6.11"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2024-01-03 15:27:32 -07:00
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
version = "0.19.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
dependencies = [
2025-06-27 11:14:09 -06:00
"indexmap 2.10.0",
2024-01-03 15:27:32 -07:00
"toml_datetime",
2024-02-13 12:29:50 -07:00
"winnow 0.5.40",
2024-01-03 15:27:32 -07:00
]
2024-02-09 07:09:51 -07:00
[[package]]
name = "toml_edit"
2025-06-18 11:22:48 -04:00
version = "0.22.27"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-27 11:14:09 -06:00
"indexmap 2.10.0",
2024-01-03 15:27:32 -07:00
"serde",
"serde_spanned",
"toml_datetime",
2025-07-22 09:15:33 -06:00
"winnow 0.7.12",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "tracing"
2024-11-26 19:23:06 +01:00
version = "0.1.41"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 19:23:06 +01:00
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2024-01-03 15:27:32 -07:00
dependencies = [
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2025-06-19 10:06:15 -04:00
version = "0.1.30"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-19 10:06:15 -04:00
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "tracing-core"
2025-06-18 11:22:48 -04:00
version = "0.1.34"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2024-01-03 15:27:32 -07:00
dependencies = [
"once_cell",
2024-04-30 13:29:58 -06:00
"valuable",
]
[[package]]
name = "tracing-log"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
dependencies = [
"log",
"once_cell",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2024-11-26 19:23:06 +01:00
version = "0.3.19"
2024-04-30 13:29:58 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 19:23:06 +01:00
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
2024-04-30 13:29:58 -06:00
dependencies = [
"matchers",
"nu-ansi-term",
"once_cell",
"regex",
"sharded-slab",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
2024-01-03 15:27:32 -07:00
]
2024-01-05 16:17:23 -07:00
[[package]]
name = "trash"
2025-04-21 13:32:41 -06:00
version = "5.2.2"
source = "git+https://github.com/jackpot51/trash-rs.git?branch=cosmic#a225f753a88e722aeeb27bb2fb00144739911035"
2024-01-05 16:17:23 -07:00
dependencies = [
"chrono",
"libc",
"log",
2025-04-15 20:04:07 -04:00
"objc2 0.5.2",
"objc2-foundation 0.2.2",
2024-01-05 16:17:23 -07:00
"once_cell",
2025-04-21 13:32:41 -06:00
"percent-encoding",
2024-01-05 16:17:23 -07:00
"scopeguard",
"urlencoding",
2024-05-01 12:12:13 -06:00
"windows 0.56.0",
2024-01-05 16:17:23 -07:00
]
2024-05-14 11:15:54 -06:00
[[package]]
name = "ttf-parser"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
[[package]]
name = "ttf-parser"
2024-11-26 19:23:06 +01:00
version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 19:23:06 +01:00
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
dependencies = [
"core_maths",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "type-map"
2025-06-18 11:22:48 -04:00
version = "0.5.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "cb30dbbd9036155e74adad6812e9898d03ec374946234fbcebd5dfc7b9187b90"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"rustc-hash 2.1.1",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "typenum"
2025-02-19 17:55:33 +01:00
version = "1.18.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
2024-01-03 15:27:32 -07:00
[[package]]
name = "uds_windows"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
dependencies = [
"memoffset 0.9.1",
2024-01-03 15:27:32 -07:00
"tempfile",
"winapi",
]
[[package]]
name = "unic-langid"
2025-06-18 11:22:48 -04:00
version = "0.9.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "a28ba52c9b05311f4f6e62d5d9d46f094bd6e84cb8df7b3ef952748d752a7d05"
2024-01-03 15:27:32 -07:00
dependencies = [
"unic-langid-impl",
]
[[package]]
name = "unic-langid-impl"
2025-06-18 11:22:48 -04:00
version = "0.9.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "dce1bf08044d4b7a94028c93786f8566047edc11110595914de93362559bc658"
2024-01-03 15:27:32 -07:00
dependencies = [
"serde",
2025-06-18 11:22:48 -04:00
"tinystr 0.8.1",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "unicase"
2025-01-10 09:55:04 -07:00
version = "2.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
2024-01-03 15:27:32 -07:00
[[package]]
name = "unicode-bidi"
2025-01-10 09:55:04 -07:00
version = "0.3.18"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2024-01-03 15:27:32 -07:00
[[package]]
name = "unicode-bidi-mirroring"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23cb788ffebc92c5948d0e997106233eeb1d8b9512f93f41651f52b6c5f5af86"
[[package]]
name = "unicode-ccc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1df77b101bcc4ea3d78dafc5ad7e4f58ceffe0b2b16bf446aeb50b6cb4157656"
2024-01-03 15:27:32 -07:00
[[package]]
name = "unicode-ident"
2025-03-15 11:59:03 -04:00
version = "1.0.18"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2024-01-03 15:27:32 -07:00
[[package]]
name = "unicode-linebreak"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
[[package]]
name = "unicode-properties"
2024-10-02 15:56:15 -06:00
version = "0.1.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-02 15:56:15 -06:00
checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
2024-01-03 15:27:32 -07:00
[[package]]
name = "unicode-script"
2024-09-20 09:24:03 -06:00
version = "0.5.7"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-20 09:24:03 -06:00
checksum = "9fb421b350c9aff471779e262955939f565ec18b86c15364e6bdf0d662ca7c1f"
2024-01-03 15:27:32 -07:00
[[package]]
name = "unicode-segmentation"
2024-09-20 09:24:03 -06:00
version = "1.12.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-20 09:24:03 -06:00
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2024-01-03 15:27:32 -07:00
[[package]]
name = "unicode-vo"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
[[package]]
name = "unicode-width"
2024-09-20 09:24:03 -06:00
version = "0.1.14"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-20 09:24:03 -06:00
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2024-01-03 15:27:32 -07:00
[[package]]
name = "unicode-xid"
2024-09-20 09:24:03 -06:00
version = "0.2.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-20 09:24:03 -06:00
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2024-01-03 15:27:32 -07:00
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2024-01-03 15:27:32 -07:00
[[package]]
name = "url"
2024-11-26 19:23:06 +01:00
version = "2.5.4"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 19:23:06 +01:00
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2024-01-03 15:27:32 -07:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
"serde",
]
2024-05-17 08:56:19 -06:00
[[package]]
name = "urlencoding"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2024-01-03 15:27:32 -07:00
[[package]]
name = "usvg"
2024-10-21 13:51:10 -06:00
version = "0.42.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "b84ea542ae85c715f07b082438a4231c3760539d902e11d093847a0b22963032"
2024-01-03 15:27:32 -07:00
dependencies = [
"base64",
2024-01-03 15:27:32 -07:00
"data-url",
"flate2",
2024-10-21 13:51:10 -06:00
"fontdb 0.18.0",
2024-01-03 15:27:32 -07:00
"imagesize",
2025-07-22 09:15:33 -06:00
"kurbo 0.11.3",
2024-01-03 15:27:32 -07:00
"log",
2024-10-21 13:51:10 -06:00
"pico-args",
"roxmltree",
"rustybuzz",
2024-01-03 15:27:32 -07:00
"simplecss",
2025-01-10 09:55:04 -07:00
"siphasher",
2024-10-21 13:51:10 -06:00
"strict-num",
2024-01-03 15:27:32 -07:00
"svgtypes",
2024-10-21 13:51:10 -06:00
"tiny-skia-path",
2024-01-03 15:27:32 -07:00
"unicode-bidi",
"unicode-script",
"unicode-vo",
2024-10-21 13:51:10 -06:00
"xmlwriter",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "utf16_iter"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
[[package]]
name = "utf8_iter"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2024-01-28 06:23:40 -05:00
[[package]]
name = "utf8parse"
2024-06-10 08:25:53 -06:00
version = "0.2.2"
2024-01-28 06:23:40 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-10 08:25:53 -06:00
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2024-01-28 06:23:40 -05:00
2024-08-28 08:54:44 +02:00
[[package]]
name = "uuid"
2025-06-18 11:22:48 -04:00
version = "1.17.0"
2024-08-28 08:54:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
dependencies = [
"js-sys",
"wasm-bindgen",
]
2024-08-28 08:54:44 +02:00
2024-08-27 07:26:47 -06:00
[[package]]
name = "uzers"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4df81ff504e7d82ad53e95ed1ad5b72103c11253f39238bcc0235b90768a97dd"
dependencies = [
"libc",
"log",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "v_frame"
2025-06-18 11:22:48 -04:00
version = "0.3.9"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
2024-11-11 09:14:03 -07:00
dependencies = [
"aligned-vec",
"num-traits",
"wasm-bindgen",
]
2024-04-30 13:29:58 -06:00
[[package]]
name = "valuable"
2025-02-19 17:55:33 +01:00
version = "0.1.1"
2024-04-30 13:29:58 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2024-04-30 13:29:58 -06:00
[[package]]
name = "vergen"
version = "8.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2990d9ea5967266ea0ccf413a4aa5c42a93dbcfda9cb49a97de6931726b12566"
dependencies = [
"anyhow",
"cfg-if",
"rustversion",
"time",
]
2024-01-24 09:30:06 -05:00
[[package]]
name = "version-compare"
version = "0.2.0"
2024-01-24 09:30:06 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
2024-01-24 09:30:06 -05:00
2024-01-03 15:27:32 -07:00
[[package]]
name = "version_check"
2024-08-19 13:25:36 -06:00
version = "0.9.5"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-19 13:25:36 -06:00
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2024-01-03 15:27:32 -07:00
[[package]]
name = "waker-fn"
2024-05-14 11:15:54 -06:00
version = "1.2.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 11:15:54 -06:00
checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7"
2024-01-03 15:27:32 -07:00
[[package]]
name = "walkdir"
version = "2.5.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2024-01-03 15:27:32 -07:00
dependencies = [
"same-file",
"winapi-util",
]
[[package]]
name = "wasi"
2025-06-18 11:22:48 -04:00
version = "0.11.1+wasi-snapshot-preview1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2024-01-03 15:27:32 -07:00
2025-02-19 17:55:33 +01:00
[[package]]
name = "wasi"
version = "0.14.2+wasi-0.2.4"
2025-02-19 17:55:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
2025-02-19 17:55:33 +01:00
dependencies = [
"wit-bindgen-rt",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "wasm-bindgen"
2025-01-13 09:03:23 -07:00
version = "0.2.100"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2024-08-19 13:25:36 -06:00
"once_cell",
2025-01-13 09:03:23 -07:00
"rustversion",
2024-01-03 15:27:32 -07:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2025-01-13 09:03:23 -07:00
version = "0.2.100"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2024-01-03 15:27:32 -07:00
dependencies = [
"bumpalo",
"log",
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2025-01-13 09:03:23 -07:00
version = "0.4.50"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
2024-01-03 15:27:32 -07:00
dependencies = [
"cfg-if",
2024-01-03 15:27:32 -07:00
"js-sys",
2024-11-26 19:23:06 +01:00
"once_cell",
2024-01-03 15:27:32 -07:00
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2025-01-13 09:03:23 -07:00
version = "0.2.100"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2024-01-03 15:27:32 -07:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2025-01-13 09:03:23 -07:00
version = "0.2.100"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2025-01-13 09:03:23 -07:00
version = "0.2.100"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
dependencies = [
"unicode-ident",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "wasm-timer"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
dependencies = [
"futures",
"js-sys",
"parking_lot 0.11.2",
"pin-utils",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
[[package]]
name = "wayland-backend"
2025-07-29 17:11:26 -04:00
version = "0.3.11"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "673a33c33048a5ade91a6b139580fa174e19fb0d23f396dca9fa15f2e1e49b35"
2024-01-03 15:27:32 -07:00
dependencies = [
"cc",
"downcast-rs",
2025-07-29 17:11:26 -04:00
"rustix 1.0.8",
2024-01-03 15:27:32 -07:00
"scoped-tls",
"smallvec",
"wayland-sys",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "wayland-client"
2025-07-29 17:11:26 -04:00
version = "0.31.11"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "c66a47e840dc20793f2264eb4b3e4ecb4b75d91c0dd4af04b456128e0bdd449d"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-07-29 17:11:26 -04:00
"rustix 1.0.8",
2024-01-03 15:27:32 -07:00
"wayland-backend",
"wayland-scanner",
]
[[package]]
name = "wayland-csd-frame"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"cursor-icon",
"wayland-backend",
]
[[package]]
name = "wayland-cursor"
2025-07-29 17:11:26 -04:00
version = "0.31.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "447ccc440a881271b19e9989f75726d60faa09b95b0200a9b7eb5cc47c3eeb29"
dependencies = [
2025-07-29 17:11:26 -04:00
"rustix 1.0.8",
"wayland-client",
"xcursor",
]
2024-06-12 14:58:06 -04:00
[[package]]
name = "wayland-protocols"
2025-07-29 17:11:26 -04:00
version = "0.32.9"
2024-06-12 14:58:06 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "efa790ed75fbfd71283bd2521a1cfdc022aabcc28bdcff00851f9e4ae88d9901"
2024-06-12 14:58:06 -04:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-06-12 14:58:06 -04:00
"wayland-backend",
"wayland-client",
"wayland-scanner",
2024-06-27 09:03:44 -06:00
"wayland-server",
2024-06-12 14:58:06 -04:00
]
[[package]]
2024-02-09 07:09:51 -07:00
name = "wayland-protocols-plasma"
2025-07-29 17:11:26 -04:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "a07a14257c077ab3279987c4f8bb987851bf57081b93710381daea94f2c2c032"
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"wayland-backend",
"wayland-client",
2024-10-21 13:51:10 -06:00
"wayland-protocols",
2024-06-12 14:58:06 -04:00
"wayland-scanner",
]
[[package]]
name = "wayland-protocols-wlr"
2025-07-29 17:11:26 -04:00
version = "0.3.9"
2024-06-12 14:58:06 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "efd94963ed43cf9938a090ca4f7da58eb55325ec8200c3848963e98dc25b78ec"
2024-06-12 14:58:06 -04:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-06-12 14:58:06 -04:00
"wayland-backend",
"wayland-client",
2024-10-21 13:51:10 -06:00
"wayland-protocols",
"wayland-scanner",
2024-06-27 09:03:44 -06:00
"wayland-server",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "wayland-scanner"
2025-07-29 17:11:26 -04:00
version = "0.31.7"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "54cb1e9dc49da91950bdfd8b848c49330536d9d1fb03d4bfec8cae50caa50ae3"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quick-xml 0.37.5",
2024-01-03 15:27:32 -07:00
"quote",
]
2024-06-27 09:03:44 -06:00
[[package]]
name = "wayland-server"
2025-07-29 17:11:26 -04:00
version = "0.31.10"
2024-06-27 09:03:44 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "fcbd4f3aba6c9fba70445ad2a484c0ef0356c1a9459b1e8e435bedc1971a6222"
2024-06-27 09:03:44 -06:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-06-27 09:03:44 -06:00
"downcast-rs",
2025-07-29 17:11:26 -04:00
"rustix 1.0.8",
2024-06-27 09:03:44 -06:00
"wayland-backend",
"wayland-scanner",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "wayland-sys"
2025-07-29 17:11:26 -04:00
version = "0.31.7"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "34949b42822155826b41db8e5d0c1be3a2bd296c747577a43a3e6daefc296142"
2024-01-03 15:27:32 -07:00
dependencies = [
"dlib",
2024-01-03 15:27:32 -07:00
"log",
"once_cell",
"pkg-config",
]
[[package]]
name = "web-sys"
2025-01-13 09:03:23 -07:00
version = "0.3.77"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-13 09:03:23 -07:00
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2024-02-09 07:09:51 -07:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "web-time"
2024-10-21 13:51:10 -06:00
version = "1.1.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2024-01-03 15:27:32 -07:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "weezl"
2025-06-18 11:22:48 -04:00
version = "0.1.10"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3"
2024-01-03 15:27:32 -07:00
[[package]]
name = "wgpu"
2024-10-21 13:51:10 -06:00
version = "22.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1d1c4ba43f80542cf63a0a6ed3134629ae73e8ab51e4b765a67f3aa062eb433"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-02-09 07:09:51 -07:00
"cfg_aliases 0.1.1",
2024-10-21 13:51:10 -06:00
"document-features",
2024-01-03 15:27:32 -07:00
"js-sys",
"log",
"naga",
2025-06-18 11:22:48 -04:00
"parking_lot 0.12.4",
2024-01-03 15:27:32 -07:00
"profiling",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2024-01-03 15:27:32 -07:00
"smallvec",
"static_assertions",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"wgpu-core",
"wgpu-hal",
"wgpu-types",
]
[[package]]
name = "wgpu-core"
2024-10-21 13:51:10 -06:00
version = "22.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0348c840d1051b8e86c3bcd31206080c5e71e5933dabd79be1ce732b0b2f089a"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-01-03 15:27:32 -07:00
"bit-vec",
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-02-09 07:09:51 -07:00
"cfg_aliases 0.1.1",
2024-10-21 13:51:10 -06:00
"document-features",
2025-06-27 11:14:09 -06:00
"indexmap 2.10.0",
2024-01-03 15:27:32 -07:00
"log",
"naga",
2024-02-09 07:09:51 -07:00
"once_cell",
2025-06-18 11:22:48 -04:00
"parking_lot 0.12.4",
2024-01-03 15:27:32 -07:00
"profiling",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2024-10-21 13:51:10 -06:00
"rustc-hash 1.1.0",
2024-01-03 15:27:32 -07:00
"smallvec",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
"wgpu-hal",
"wgpu-types",
]
[[package]]
name = "wgpu-hal"
2024-10-21 13:51:10 -06:00
version = "22.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6bbf4b4de8b2a83c0401d9e5ae0080a2792055f25859a02bf9be97952bbed4f"
2024-01-03 15:27:32 -07:00
dependencies = [
"android_system_properties",
2025-02-19 17:55:33 +01:00
"arrayvec",
2024-01-03 15:27:32 -07:00
"ash",
"bit-set",
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"block",
2024-02-09 07:09:51 -07:00
"cfg_aliases 0.1.1",
2024-01-03 15:27:32 -07:00
"core-graphics-types",
"d3d12",
"glow",
"glutin_wgl_sys",
"gpu-alloc",
"gpu-allocator",
"gpu-descriptor",
"hassle-rs",
"js-sys",
"khronos-egl",
"libc",
2024-10-21 13:51:10 -06:00
"libloading",
2024-01-03 15:27:32 -07:00
"log",
"metal",
"naga",
2024-10-21 13:51:10 -06:00
"ndk-sys 0.5.0+25.2.9519653",
2024-01-03 15:27:32 -07:00
"objc",
"once_cell",
2025-06-18 11:22:48 -04:00
"parking_lot 0.12.4",
2024-01-03 15:27:32 -07:00
"profiling",
"range-alloc",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2024-01-03 15:27:32 -07:00
"renderdoc-sys",
2024-10-21 13:51:10 -06:00
"rustc-hash 1.1.0",
2024-01-03 15:27:32 -07:00
"smallvec",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
"wasm-bindgen",
"web-sys",
"wgpu-types",
"winapi",
]
[[package]]
name = "wgpu-types"
2024-10-21 13:51:10 -06:00
version = "22.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc9d91f0e2c4b51434dfa6db77846f2793149d8e73f800fa2e41f52b8eac3c5d"
2024-01-03 15:27:32 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2024-01-03 15:27:32 -07:00
"js-sys",
"web-sys",
]
[[package]]
name = "which"
version = "4.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
dependencies = [
"either",
"home",
"once_cell",
"rustix 0.38.44",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "widestring"
version = "1.2.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd7cf3379ca1aac9eea11fba24fd7e315d621f8dfe35c8d7d2be8b793726e07d"
2024-01-03 15:27:32 -07:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
2024-08-19 13:25:36 -06:00
version = "0.1.9"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-19 13:25:36 -06:00
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-08-27 08:10:33 -06:00
"windows-sys 0.59.0",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "window_clipboard"
2024-02-13 12:29:50 -07:00
version = "0.4.1"
2025-01-14 08:54:43 -07:00
source = "git+https://github.com/pop-os/window_clipboard.git?tag=pop-0.13-2#6b9faab87bea9cebec6ae036906fd67fed254f5f"
2024-01-03 15:27:32 -07:00
dependencies = [
"clipboard-win",
"clipboard_macos",
"clipboard_wayland",
"clipboard_x11",
"dnd",
2024-03-18 12:23:08 -06:00
"mime 0.1.0",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2024-11-26 19:23:06 +01:00
"thiserror 1.0.69",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "windows"
2024-10-21 13:51:10 -06:00
version = "0.52.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-10-21 13:51:10 -06:00
"windows-core 0.52.0",
"windows-targets 0.52.6",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "windows"
2024-10-21 13:51:10 -06:00
version = "0.54.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-10-21 13:51:10 -06:00
"windows-core 0.54.0",
"windows-implement 0.53.0",
"windows-interface 0.53.0",
"windows-targets 0.52.6",
2024-01-03 15:27:32 -07:00
]
[[package]]
2024-02-09 07:09:51 -07:00
name = "windows"
2024-05-01 12:12:13 -06:00
version = "0.56.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-01 12:12:13 -06:00
checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-05-01 12:12:13 -06:00
"windows-core 0.56.0",
"windows-targets 0.52.6",
2024-01-03 15:27:32 -07:00
]
2025-04-15 20:04:07 -04:00
[[package]]
name = "windows"
2025-06-18 11:22:48 -04:00
version = "0.61.3"
2025-04-15 20:04:07 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
2025-04-15 20:04:07 -04:00
dependencies = [
"windows-collections",
2025-06-18 11:22:48 -04:00
"windows-core 0.61.2",
2025-04-15 20:04:07 -04:00
"windows-future",
"windows-link",
"windows-numerics",
]
[[package]]
name = "windows-collections"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
dependencies = [
2025-06-18 11:22:48 -04:00
"windows-core 0.61.2",
2025-04-15 20:04:07 -04:00
]
2024-01-06 12:59:36 -07:00
[[package]]
name = "windows-core"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
dependencies = [
"windows-targets 0.52.6",
2024-01-06 12:59:36 -07:00
]
2024-10-21 13:51:10 -06:00
[[package]]
name = "windows-core"
version = "0.54.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65"
dependencies = [
2025-04-15 20:04:07 -04:00
"windows-result 0.1.2",
2024-10-21 13:51:10 -06:00
"windows-targets 0.52.6",
]
2024-05-01 12:12:13 -06:00
[[package]]
name = "windows-core"
version = "0.56.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6"
dependencies = [
"windows-implement 0.56.0",
"windows-interface 0.56.0",
2025-04-15 20:04:07 -04:00
"windows-result 0.1.2",
"windows-targets 0.52.6",
2024-05-01 12:12:13 -06:00
]
2025-04-15 20:04:07 -04:00
[[package]]
name = "windows-core"
2025-06-18 11:22:48 -04:00
version = "0.61.2"
2025-04-15 20:04:07 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
2025-04-15 20:04:07 -04:00
dependencies = [
"windows-implement 0.60.0",
"windows-interface 0.59.1",
"windows-link",
2025-06-18 11:22:48 -04:00
"windows-result 0.3.4",
2025-04-15 20:04:07 -04:00
"windows-strings",
]
[[package]]
name = "windows-future"
2025-06-18 11:22:48 -04:00
version = "0.2.1"
2025-04-15 20:04:07 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
2025-04-15 20:04:07 -04:00
dependencies = [
2025-06-18 11:22:48 -04:00
"windows-core 0.61.2",
2025-04-15 20:04:07 -04:00
"windows-link",
2025-06-18 11:22:48 -04:00
"windows-threading",
2025-04-15 20:04:07 -04:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows-implement"
2024-10-21 13:51:10 -06:00
version = "0.53.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "942ac266be9249c84ca862f0a164a39533dc2f6f33dc98ec89c8da99b82ea0bd"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
2024-05-01 12:12:13 -06:00
[[package]]
name = "windows-implement"
version = "0.56.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-05-01 12:12:13 -06:00
]
2025-04-15 20:04:07 -04:00
[[package]]
name = "windows-implement"
version = "0.60.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2025-04-15 20:04:07 -04:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows-interface"
2024-10-21 13:51:10 -06:00
version = "0.53.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "da33557140a288fae4e1d5f8873aaf9eb6613a9cf82c3e070223ff177f598b60"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-01-03 15:27:32 -07:00
]
2024-05-01 12:12:13 -06:00
[[package]]
name = "windows-interface"
version = "0.56.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-05-01 12:12:13 -06:00
]
2025-04-15 20:04:07 -04:00
[[package]]
name = "windows-interface"
version = "0.59.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2025-04-15 20:04:07 -04:00
]
2025-03-15 11:59:03 -04:00
[[package]]
name = "windows-link"
2025-06-18 11:22:48 -04:00
version = "0.1.3"
2025-03-15 11:59:03 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2025-03-15 11:59:03 -04:00
2025-04-15 20:04:07 -04:00
[[package]]
name = "windows-numerics"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
dependencies = [
2025-06-18 11:22:48 -04:00
"windows-core 0.61.2",
2025-04-15 20:04:07 -04:00
"windows-link",
]
2024-05-01 12:12:13 -06:00
[[package]]
name = "windows-result"
2024-06-10 08:25:53 -06:00
version = "0.1.2"
2024-05-01 12:12:13 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-10 08:25:53 -06:00
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
2024-05-01 12:12:13 -06:00
dependencies = [
"windows-targets 0.52.6",
2024-05-01 12:12:13 -06:00
]
2025-04-15 20:04:07 -04:00
[[package]]
name = "windows-result"
2025-06-18 11:22:48 -04:00
version = "0.3.4"
2025-04-15 20:04:07 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2025-04-15 20:04:07 -04:00
dependencies = [
"windows-link",
]
[[package]]
name = "windows-strings"
2025-06-18 11:22:48 -04:00
version = "0.4.2"
2025-04-15 20:04:07 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2025-04-15 20:04:07 -04:00
dependencies = [
"windows-link",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.6",
2024-01-03 15:27:32 -07:00
]
2024-08-19 13:25:36 -06:00
[[package]]
name = "windows-sys"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
"windows-targets 0.52.6",
]
2025-06-18 11:22:48 -04:00
[[package]]
name = "windows-sys"
version = "0.60.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
dependencies = [
2025-07-29 17:11:26 -04:00
"windows-targets 0.53.3",
2025-06-18 11:22:48 -04:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
version = "0.52.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2024-01-03 15:27:32 -07:00
dependencies = [
"windows_aarch64_gnullvm 0.52.6",
"windows_aarch64_msvc 0.52.6",
"windows_i686_gnu 0.52.6",
2025-06-18 11:22:48 -04:00
"windows_i686_gnullvm 0.52.6",
"windows_i686_msvc 0.52.6",
"windows_x86_64_gnu 0.52.6",
"windows_x86_64_gnullvm 0.52.6",
"windows_x86_64_msvc 0.52.6",
2024-01-03 15:27:32 -07:00
]
2025-06-18 11:22:48 -04:00
[[package]]
name = "windows-targets"
2025-07-29 17:11:26 -04:00
version = "0.53.3"
2025-06-18 11:22:48 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-29 17:11:26 -04:00
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
2025-06-18 11:22:48 -04:00
dependencies = [
2025-07-29 17:11:26 -04:00
"windows-link",
2025-06-18 11:22:48 -04:00
"windows_aarch64_gnullvm 0.53.0",
"windows_aarch64_msvc 0.53.0",
"windows_i686_gnu 0.53.0",
"windows_i686_gnullvm 0.53.0",
"windows_i686_msvc 0.53.0",
"windows_x86_64_gnu 0.53.0",
"windows_x86_64_gnullvm 0.53.0",
"windows_x86_64_msvc 0.53.0",
]
[[package]]
name = "windows-threading"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
dependencies = [
"windows-link",
]
[[package]]
name = "windows-version"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e04a5c6627e310a23ad2358483286c7df260c964eb2d003d8efd6d0f4e79265c"
dependencies = [
2025-03-15 11:59:03 -04:00
"windows-link",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2024-01-03 15:27:32 -07:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2024-01-03 15:27:32 -07:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2024-04-13 08:46:38 -06:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "windows_i686_gnu"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2024-04-13 08:46:38 -06:00
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
2024-04-13 08:46:38 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2024-01-03 15:27:32 -07:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "windows_i686_gnullvm"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2024-01-03 15:27:32 -07:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "windows_i686_msvc"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2024-01-03 15:27:32 -07:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2024-01-03 15:27:32 -07:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2024-01-03 15:27:32 -07:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2024-01-03 15:27:32 -07:00
2025-06-18 11:22:48 -04:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2024-01-03 15:27:32 -07:00
[[package]]
name = "winit"
2024-10-21 13:51:10 -06:00
version = "0.30.5"
2024-10-29 14:29:20 -06:00
source = "git+https://github.com/pop-os/winit.git?tag=iced-xdg-surface-0.13#1cc02bdab141072eaabad639d74b032fd0fcc62e"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-02-09 07:09:51 -07:00
"ahash",
2024-01-03 15:27:32 -07:00
"android-activity",
2024-02-09 07:09:51 -07:00
"atomic-waker",
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-04-15 20:04:07 -04:00
"block2 0.5.1",
2024-02-09 07:09:51 -07:00
"bytemuck",
2024-10-21 13:51:10 -06:00
"calloop",
"cfg_aliases 0.2.1",
"concurrent-queue",
"core-foundation",
"core-graphics",
2024-02-09 07:09:51 -07:00
"cursor-icon",
2024-10-21 13:51:10 -06:00
"dpi",
2024-02-09 07:09:51 -07:00
"js-sys",
2024-01-03 15:27:32 -07:00
"libc",
2025-07-22 09:15:33 -06:00
"memmap2 0.9.7",
"ndk",
2025-04-15 20:04:07 -04:00
"objc2 0.5.2",
2025-06-18 11:22:48 -04:00
"objc2-app-kit 0.2.2",
2025-04-15 20:04:07 -04:00
"objc2-foundation 0.2.2",
2024-10-21 13:51:10 -06:00
"objc2-ui-kit",
2024-01-03 15:27:32 -07:00
"orbclient",
"percent-encoding",
2024-10-21 13:51:10 -06:00
"pin-project",
2024-05-17 08:56:19 -06:00
"raw-window-handle",
2024-10-21 13:51:10 -06:00
"redox_syscall 0.4.1",
2025-02-19 17:55:33 +01:00
"rustix 0.38.44",
2024-01-03 15:27:32 -07:00
"sctk-adwaita",
2024-10-21 13:51:10 -06:00
"smithay-client-toolkit",
2024-02-09 07:09:51 -07:00
"smol_str",
2024-10-21 13:51:10 -06:00
"tracing",
2024-02-09 07:09:51 -07:00
"unicode-segmentation",
2024-01-03 15:27:32 -07:00
"wasm-bindgen",
2024-02-09 07:09:51 -07:00
"wasm-bindgen-futures",
"wayland-backend",
"wayland-client",
2024-10-21 13:51:10 -06:00
"wayland-protocols",
2024-02-09 07:09:51 -07:00
"wayland-protocols-plasma",
2024-01-03 15:27:32 -07:00
"web-sys",
2024-02-09 07:09:51 -07:00
"web-time",
2024-10-21 13:51:10 -06:00
"windows-sys 0.52.0",
2024-01-03 15:27:32 -07:00
"x11-dl",
2024-02-09 07:09:51 -07:00
"x11rb",
"xkbcommon-dl",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "winnow"
2024-02-13 12:29:50 -07:00
version = "0.5.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
dependencies = [
"memchr",
]
[[package]]
name = "winnow"
2025-07-22 09:15:33 -06:00
version = "0.7.12"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
2024-01-03 15:27:32 -07:00
dependencies = [
"memchr",
]
2025-02-19 17:55:33 +01:00
[[package]]
name = "wit-bindgen-rt"
version = "0.39.0"
2025-02-19 17:55:33 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
2025-02-19 17:55:33 +01:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
2025-02-19 17:55:33 +01:00
]
[[package]]
name = "write16"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
[[package]]
name = "writeable"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
dependencies = [
"either",
]
2025-06-18 11:22:48 -04:00
[[package]]
name = "writeable"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
2024-01-03 15:27:32 -07:00
[[package]]
name = "x11-dl"
version = "2.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
dependencies = [
"libc",
"once_cell",
"pkg-config",
]
[[package]]
name = "x11rb"
2024-05-01 12:12:13 -06:00
version = "0.13.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-01 12:12:13 -06:00
checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12"
2024-01-03 15:27:32 -07:00
dependencies = [
"as-raw-xcb-connection",
2024-02-09 07:09:51 -07:00
"gethostname",
2024-01-03 15:27:32 -07:00
"libc",
2024-10-21 13:51:10 -06:00
"libloading",
2024-01-03 15:27:32 -07:00
"once_cell",
2025-02-19 17:55:33 +01:00
"rustix 0.38.44",
2024-02-09 07:09:51 -07:00
"x11rb-protocol",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "x11rb-protocol"
2024-05-01 12:12:13 -06:00
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-01 12:12:13 -06:00
checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d"
[[package]]
name = "xattr"
2025-06-27 11:14:09 -06:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-27 11:14:09 -06:00
checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
dependencies = [
"libc",
2025-07-22 09:15:33 -06:00
"rustix 1.0.8",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "xcursor"
2025-06-27 11:14:09 -06:00
version = "0.3.10"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-27 11:14:09 -06:00
checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b"
2024-01-03 15:27:32 -07:00
[[package]]
name = "xdg"
version = "2.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
[[package]]
name = "xdg-home"
2024-08-19 13:25:36 -06:00
version = "1.3.0"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-19 13:25:36 -06:00
checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-02-09 07:09:51 -07:00
"libc",
2024-08-19 13:25:36 -06:00
"windows-sys 0.59.0",
2024-01-03 15:27:32 -07:00
]
[[package]]
name = "xdg-mime"
2025-02-19 17:55:33 +01:00
version = "0.4.0"
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
source = "git+https://github.com/ellieplayswow/xdg-mime-rs?branch=feature%2Fget-same-as#4f8d07ceedabbe58368a8e7f5547232490860790"
dependencies = [
"dirs-next",
"glob",
2024-03-18 12:23:08 -06:00
"mime 0.3.17",
2025-02-19 17:55:33 +01:00
"nom",
"unicase",
]
2024-05-17 08:56:19 -06:00
[[package]]
name = "xkbcommon"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13867d259930edc7091a6c41b4ce6eee464328c6ff9659b7e4c668ca20d4c91e"
dependencies = [
"libc",
"memmap2 0.8.0",
"xkeysym",
]
2024-02-09 07:09:51 -07:00
[[package]]
name = "xkbcommon-dl"
2024-02-12 10:02:05 -07:00
version = "0.4.2"
2024-02-09 07:09:51 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-12 10:02:05 -07:00
checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
2024-02-09 07:09:51 -07:00
dependencies = [
2025-06-18 11:22:48 -04:00
"bitflags 2.9.1",
"dlib",
2024-02-09 07:09:51 -07:00
"log",
"once_cell",
"xkeysym",
]
[[package]]
name = "xkeysym"
2024-06-10 08:25:53 -06:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-10 08:25:53 -06:00
checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
2024-05-17 08:56:19 -06:00
dependencies = [
"bytemuck",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "xml-rs"
2025-07-10 15:27:51 -06:00
version = "0.8.27"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7"
2024-01-03 15:27:32 -07:00
[[package]]
name = "xmlwriter"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
[[package]]
name = "xz2"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
dependencies = [
"lzma-sys",
]
2024-01-03 15:27:32 -07:00
[[package]]
2024-10-21 13:51:10 -06:00
name = "yansi"
version = "1.0.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-21 13:51:10 -06:00
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
2024-01-03 15:27:32 -07:00
[[package]]
name = "yazi"
2025-01-10 09:55:04 -07:00
version = "0.2.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-01-10 09:55:04 -07:00
checksum = "e01738255b5a16e78bbb83e7fbba0a1e7dd506905cfc53f4622d89015a03fbb5"
2024-01-03 15:27:32 -07:00
[[package]]
name = "yoke"
2024-11-26 19:23:06 +01:00
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 19:23:06 +01:00
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
dependencies = [
"serde",
"stable_deref_trait",
2025-06-18 11:22:48 -04:00
"yoke-derive 0.7.5",
"zerofrom",
]
[[package]]
name = "yoke"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
dependencies = [
"serde",
"stable_deref_trait",
"yoke-derive 0.8.0",
"zerofrom",
]
[[package]]
name = "yoke-derive"
2024-11-26 19:23:06 +01:00
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 19:23:06 +01:00
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2025-06-18 11:22:48 -04:00
"synstructure",
]
[[package]]
name = "yoke-derive"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
"synstructure",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "zbus"
2024-05-20 14:09:45 -06:00
version = "3.15.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 14:09:45 -06:00
checksum = "675d170b632a6ad49804c8cf2105d7c31eddd3312555cffd4b740e08e97c25e6"
2024-01-03 15:27:32 -07:00
dependencies = [
2024-05-17 08:56:19 -06:00
"async-broadcast 0.5.1",
"async-process 1.8.1",
2024-01-03 15:27:32 -07:00
"async-recursion",
"async-trait",
"byteorder",
"derivative",
"enumflags2",
"event-listener 2.5.3",
"futures-core",
"futures-sink",
"futures-util",
"hex",
"nix 0.26.4",
"once_cell",
"ordered-stream",
feat: use io_uring / IOCP when available for async file IO (#911) Spawns a single thread for handling async file IO on the [compio runtime](https://github.com/compio-rs/compio). It is a completion-based IO runtime that can dynamically select a polling mechanism at runtime. It defaults to io_uring on Linux, IOCP on Windows, and the polling crate everywhere else. On Linux systems where io_uring is unavailable or disabled, it will fall back to the polling crate. This eliminates most of the threads that were needed previously. It significantly reduced the amount of memory needed in the recursive Context to get a good transfer rate for each copy operation—from a 4 MB buffer to 128 KB. Copies on a nvme drive are somewhat faster with the async IO changes, and use less CPU than before. Although it uses a single thread for non-blocking tasks, it still manages to 100% max out my nvme drive's activity for the whole duration of multiple long transfers. But it would be possible to enable compio's dispatcher to spread operations across worker threads if necessary. All but the extract and compress operations were updated to be async. I had to switch the `CondVar` in the `Controller` to a `tokio::sync::Notify` to prevent the IO thread from being put to sleep when an operation is paused. Fixed a deadlock in the `operation_copy` test function that was performing an operation without concurrently pulling from the channel in the operation. Reduced the rate that `Message::None` is sent from a subscription to trigger a UI redraw, and fixed it to not run when operations are paused.
2025-04-09 23:15:07 +02:00
"rand 0.8.5",
2024-01-03 15:27:32 -07:00
"serde",
"serde_repr",
"sha1",
"static_assertions",
"tokio",
2024-01-03 15:27:32 -07:00
"tracing",
"uds_windows",
"winapi",
"xdg-home",
2024-05-20 14:09:45 -06:00
"zbus_macros 3.15.2",
2024-05-17 08:56:19 -06:00
"zbus_names 2.6.1",
2024-05-20 14:09:45 -06:00
"zvariant 3.15.2",
2024-05-17 08:56:19 -06:00
]
[[package]]
name = "zbus"
2025-07-22 09:15:33 -06:00
version = "5.9.0"
2025-01-13 09:03:23 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "4bb4f9a464286d42851d18a605f7193b8febaf5b0919d71c6399b7b26e5b0aad"
2025-01-13 09:03:23 -07:00
dependencies = [
"async-broadcast 0.7.2",
"async-executor",
2025-07-22 09:15:33 -06:00
"async-io 2.5.0",
2025-01-13 09:03:23 -07:00
"async-lock 3.4.0",
2025-07-22 09:15:33 -06:00
"async-process 2.4.0",
2025-01-13 09:03:23 -07:00
"async-recursion",
"async-task",
"async-trait",
"blocking",
"enumflags2",
"event-listener 5.4.0",
"futures-core",
2025-02-19 17:55:33 +01:00
"futures-lite 2.6.0",
2025-01-13 09:03:23 -07:00
"hex",
2025-06-18 11:22:48 -04:00
"nix 0.30.1",
2025-01-13 09:03:23 -07:00
"ordered-stream",
"serde",
"serde_repr",
2025-06-18 11:22:48 -04:00
"tokio",
2025-01-13 09:03:23 -07:00
"tracing",
"uds_windows",
"windows-sys 0.59.0",
2025-07-22 09:15:33 -06:00
"winnow 0.7.12",
"zbus_macros 5.9.0",
2025-02-19 17:55:33 +01:00
"zbus_names 4.2.0",
2025-07-10 15:27:51 -06:00
"zvariant 5.6.0",
2025-01-13 09:03:23 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "zbus_macros"
2024-05-20 14:09:45 -06:00
version = "3.15.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 14:09:45 -06:00
checksum = "7131497b0f887e8061b430c530240063d33bf9455fa34438f388a245da69e0a5"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro-crate 1.3.1",
2024-01-03 15:27:32 -07:00
"proc-macro2",
"quote",
"regex",
"syn 1.0.109",
2024-05-20 14:09:45 -06:00
"zvariant_utils 1.0.1",
2024-01-03 15:27:32 -07:00
]
2024-05-17 08:56:19 -06:00
[[package]]
name = "zbus_macros"
2025-07-22 09:15:33 -06:00
version = "5.9.0"
2024-05-17 08:56:19 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-22 09:15:33 -06:00
checksum = "ef9859f68ee0c4ee2e8cde84737c78e3f4c54f946f2a38645d0d4c7a95327659"
2024-05-17 08:56:19 -06:00
dependencies = [
2025-03-15 11:59:03 -04:00
"proc-macro-crate 3.3.0",
2024-05-17 08:56:19 -06:00
"proc-macro2",
"quote",
"syn 2.0.104",
2025-02-19 17:55:33 +01:00
"zbus_names 4.2.0",
2025-07-10 15:27:51 -06:00
"zvariant 5.6.0",
2025-02-19 17:55:33 +01:00
"zvariant_utils 3.2.0",
2025-01-13 09:03:23 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "zbus_names"
2024-02-29 20:18:34 -07:00
version = "2.6.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-29 20:18:34 -07:00
checksum = "437d738d3750bed6ca9b8d423ccc7a8eb284f6b1d6d4e225a0e4e6258d864c8d"
2024-01-03 15:27:32 -07:00
dependencies = [
"serde",
"static_assertions",
2024-05-20 14:09:45 -06:00
"zvariant 3.15.2",
2024-05-17 08:56:19 -06:00
]
2025-01-13 09:03:23 -07:00
[[package]]
name = "zbus_names"
2025-02-19 17:55:33 +01:00
version = "4.2.0"
2025-01-13 09:03:23 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97"
2025-01-13 09:03:23 -07:00
dependencies = [
"serde",
"static_assertions",
2025-07-22 09:15:33 -06:00
"winnow 0.7.12",
2025-07-10 15:27:51 -06:00
"zvariant 5.6.0",
2025-01-13 09:03:23 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "zeno"
2025-06-18 11:22:48 -04:00
version = "0.3.3"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "6df3dc4292935e51816d896edcd52aa30bc297907c26167fec31e2b0c6a32524"
2025-03-15 11:59:03 -04:00
[[package]]
name = "zerocopy"
2025-06-19 10:06:15 -04:00
version = "0.8.26"
2025-03-15 11:59:03 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-19 10:06:15 -04:00
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
2025-03-15 11:59:03 -04:00
dependencies = [
2025-06-18 11:22:48 -04:00
"zerocopy-derive",
2025-03-15 11:59:03 -04:00
]
[[package]]
name = "zerocopy-derive"
2025-06-19 10:06:15 -04:00
version = "0.8.26"
2025-03-15 11:59:03 -04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-19 10:06:15 -04:00
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
2025-03-15 11:59:03 -04:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2024-06-10 08:25:53 -06:00
]
[[package]]
name = "zerofrom"
2025-03-15 11:59:03 -04:00
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
dependencies = [
"zerofrom-derive",
]
[[package]]
name = "zerofrom-derive"
2025-03-15 11:59:03 -04:00
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
"synstructure",
]
[[package]]
name = "zeroize"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
]
[[package]]
name = "zerotrie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb594dd55d87335c5f60177cee24f19457a5ec10a065e0a3014722ad252d0a1f"
dependencies = [
"displaydoc",
2025-06-18 11:22:48 -04:00
"yoke 0.7.5",
"zerofrom",
]
[[package]]
name = "zerotrie"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
dependencies = [
"displaydoc",
"yoke 0.8.0",
"zerofrom",
]
[[package]]
name = "zerovec"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
dependencies = [
2025-06-18 11:22:48 -04:00
"yoke 0.7.5",
"zerofrom",
"zerovec-derive 0.10.3",
]
[[package]]
name = "zerovec"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
dependencies = [
"yoke 0.8.0",
"zerofrom",
2025-06-18 11:22:48 -04:00
"zerovec-derive 0.11.1",
]
[[package]]
name = "zerovec-derive"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
2025-06-18 11:22:48 -04:00
]
[[package]]
name = "zerovec-derive"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.104",
]
[[package]]
name = "zip"
2025-06-18 11:22:48 -04:00
version = "2.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-06-18 11:22:48 -04:00
checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
dependencies = [
"aes",
"arbitrary",
2025-03-15 11:59:03 -04:00
"bzip2",
"constant_time_eq",
"crc32fast",
"crossbeam-utils",
"deflate64",
2025-06-18 11:22:48 -04:00
"displaydoc",
"flate2",
2025-06-18 11:22:48 -04:00
"getrandom 0.3.3",
"hmac",
2025-06-27 11:14:09 -06:00
"indexmap 2.10.0",
"lzma-rs",
"memchr",
"pbkdf2",
"sha1",
2025-06-18 11:22:48 -04:00
"thiserror 2.0.12",
"time",
"xz2",
"zeroize",
"zopfli",
"zstd",
]
[[package]]
name = "zopfli"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7"
dependencies = [
"bumpalo",
"crc32fast",
"log",
"simd-adler32",
]
[[package]]
name = "zstd"
2025-03-15 11:59:03 -04:00
version = "0.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-03-15 11:59:03 -04:00
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
version = "7.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
dependencies = [
"zstd-sys",
]
[[package]]
name = "zstd-sys"
version = "2.0.15+zstd.1.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
dependencies = [
"cc",
"pkg-config",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "zune-core"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
2024-01-03 15:27:32 -07:00
[[package]]
name = "zune-inflate"
version = "0.2.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
dependencies = [
"simd-adler32",
]
2024-11-11 09:14:03 -07:00
[[package]]
name = "zune-jpeg"
2025-07-10 15:27:51 -06:00
version = "0.4.19"
2024-11-11 09:14:03 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "2c9e525af0a6a658e031e95f14b7f889976b74a11ba0eca5a5fc9ac8a1c43a6a"
2024-11-11 09:14:03 -07:00
dependencies = [
"zune-core",
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "zvariant"
2024-05-20 14:09:45 -06:00
version = "3.15.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 14:09:45 -06:00
checksum = "4eef2be88ba09b358d3b58aca6e41cd853631d44787f319a1383ca83424fb2db"
2024-01-03 15:27:32 -07:00
dependencies = [
"byteorder",
"enumflags2",
"libc",
"serde",
"static_assertions",
2024-05-20 14:09:45 -06:00
"zvariant_derive 3.15.2",
2024-05-17 08:56:19 -06:00
]
[[package]]
name = "zvariant"
2025-07-10 15:27:51 -06:00
version = "5.6.0"
2024-05-17 08:56:19 -06:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "d91b3680bb339216abd84714172b5138a4edac677e641ef17e1d8cb1b3ca6e6f"
2024-05-17 08:56:19 -06:00
dependencies = [
"endi",
"enumflags2",
"serde",
2024-01-03 15:27:32 -07:00
"url",
2025-07-22 09:15:33 -06:00
"winnow 0.7.12",
2025-07-10 15:27:51 -06:00
"zvariant_derive 5.6.0",
2025-02-19 17:55:33 +01:00
"zvariant_utils 3.2.0",
2025-01-13 09:03:23 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "zvariant_derive"
2024-05-20 14:09:45 -06:00
version = "3.15.2"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 14:09:45 -06:00
checksum = "37c24dc0bed72f5f90d1f8bb5b07228cbf63b3c6e9f82d82559d4bae666e7ed9"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro-crate 1.3.1",
2024-01-03 15:27:32 -07:00
"proc-macro2",
"quote",
"syn 1.0.109",
2024-05-20 14:09:45 -06:00
"zvariant_utils 1.0.1",
2024-01-03 15:27:32 -07:00
]
2024-05-17 08:56:19 -06:00
[[package]]
name = "zvariant_derive"
2025-07-10 15:27:51 -06:00
version = "5.6.0"
2025-01-13 09:03:23 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-10 15:27:51 -06:00
checksum = "3a8c68501be459a8dbfffbe5d792acdd23b4959940fc87785fb013b32edbc208"
2025-01-13 09:03:23 -07:00
dependencies = [
2025-03-15 11:59:03 -04:00
"proc-macro-crate 3.3.0",
2025-01-13 09:03:23 -07:00
"proc-macro2",
"quote",
"syn 2.0.104",
2025-02-19 17:55:33 +01:00
"zvariant_utils 3.2.0",
2025-01-13 09:03:23 -07:00
]
2024-01-03 15:27:32 -07:00
[[package]]
name = "zvariant_utils"
2024-05-20 14:09:45 -06:00
version = "1.0.1"
2024-01-03 15:27:32 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 14:09:45 -06:00
checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200"
2024-01-03 15:27:32 -07:00
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
2024-05-20 14:09:45 -06:00
2025-01-13 09:03:23 -07:00
[[package]]
name = "zvariant_utils"
2025-02-19 17:55:33 +01:00
version = "3.2.0"
2025-01-13 09:03:23 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-02-19 17:55:33 +01:00
checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34"
2025-01-13 09:03:23 -07:00
dependencies = [
"proc-macro2",
"quote",
"serde",
"static_assertions",
"syn 2.0.104",
2025-07-22 09:15:33 -06:00
"winnow 0.7.12",
2025-01-13 09:03:23 -07:00
]