2021-05-30 00:47:54 +02:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
|
# It is not intended for manual editing.
|
2025-10-22 22:55:38 +02:00
|
|
|
version = 4
|
2021-06-30 13:25:43 +02:00
|
|
|
|
2022-01-02 15:10:33 +01:00
|
|
|
[[package]]
|
2024-11-17 13:39:23 +01:00
|
|
|
name = "adler2"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "2.0.1"
|
2022-01-02 15:10:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
2022-01-02 15:10:33 +01:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "aead"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.5.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"crypto-common 0.1.7",
|
2021-05-30 00:47:54 +02:00
|
|
|
"generic-array",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "aes"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.8.4"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"cfg-if",
|
|
|
|
|
"cipher",
|
2026-04-04 16:24:21 +02:00
|
|
|
"cpufeatures 0.2.17",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "aes-gcm"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.10.3"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"aead",
|
2021-05-30 00:47:54 +02:00
|
|
|
"aes",
|
2024-01-11 01:32:18 +01:00
|
|
|
"cipher",
|
2021-05-30 00:47:54 +02:00
|
|
|
"ctr",
|
|
|
|
|
"ghash",
|
|
|
|
|
"subtle",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "alfis"
|
2026-01-05 15:43:30 +01:00
|
|
|
version = "0.8.9"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"bincode",
|
|
|
|
|
"blakeout",
|
|
|
|
|
"byteorder",
|
|
|
|
|
"chacha20poly1305",
|
|
|
|
|
"chrono",
|
2026-03-20 11:13:00 +01:00
|
|
|
"crossbeam-channel",
|
2026-04-04 16:24:21 +02:00
|
|
|
"derive_more",
|
2024-01-11 01:32:18 +01:00
|
|
|
"ecies-ed25519-ng",
|
2021-05-30 00:47:54 +02:00
|
|
|
"ed25519-dalek",
|
|
|
|
|
"getopts",
|
2025-10-29 16:39:44 +01:00
|
|
|
"image",
|
2021-05-30 00:47:54 +02:00
|
|
|
"lazy_static",
|
|
|
|
|
"log",
|
2021-09-05 19:05:30 +02:00
|
|
|
"lru",
|
2021-05-30 00:47:54 +02:00
|
|
|
"mio",
|
|
|
|
|
"num-bigint",
|
|
|
|
|
"num_cpus",
|
|
|
|
|
"open",
|
2026-04-04 16:24:21 +02:00
|
|
|
"rand",
|
2021-05-30 00:47:54 +02:00
|
|
|
"serde",
|
|
|
|
|
"serde_cbor",
|
|
|
|
|
"serde_json",
|
2026-04-04 16:24:21 +02:00
|
|
|
"sha2 0.11.0",
|
2021-05-30 00:47:54 +02:00
|
|
|
"simplelog",
|
2022-11-03 14:46:35 +01:00
|
|
|
"spmc",
|
2021-05-30 00:47:54 +02:00
|
|
|
"sqlite",
|
2025-10-27 20:36:37 +01:00
|
|
|
"tao",
|
2021-05-30 00:47:54 +02:00
|
|
|
"thread-priority",
|
2024-01-11 01:32:18 +01:00
|
|
|
"time",
|
2021-05-30 00:47:54 +02:00
|
|
|
"tinyfiledialogs",
|
2026-04-04 16:24:21 +02:00
|
|
|
"toml 1.1.2+spec-1.1.0",
|
2025-10-29 16:01:41 +01:00
|
|
|
"tray-icon",
|
2021-09-05 19:05:30 +02:00
|
|
|
"ureq",
|
2021-05-30 00:47:54 +02:00
|
|
|
"uuid",
|
2021-09-15 16:06:10 +02:00
|
|
|
"winapi",
|
2023-06-08 00:07:15 +02:00
|
|
|
"windows-service",
|
2021-05-30 00:47:54 +02:00
|
|
|
"winres",
|
2025-10-27 20:36:37 +01:00
|
|
|
"wry",
|
2021-05-30 00:47:54 +02:00
|
|
|
"x25519-dalek",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "allocator-api2"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "0.2.21"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
2024-01-11 01:32:18 +01:00
|
|
|
|
2022-09-05 19:19:19 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "android_system_properties"
|
|
|
|
|
version = "0.1.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2026-03-20 11:13:00 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "anyhow"
|
|
|
|
|
version = "1.0.102"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "atk"
|
|
|
|
|
version = "0.18.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"atk-sys",
|
|
|
|
|
"glib",
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "atk-sys"
|
2025-10-27 20:36:37 +01:00
|
|
|
version = "0.18.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"system-deps",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "autocfg"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "1.5.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "base64"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.22.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2023-01-30 15:19:36 +01:00
|
|
|
[[package]]
|
2024-01-11 01:32:18 +01:00
|
|
|
name = "base64ct"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.8.3"
|
2023-01-30 15:19:36 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
|
2023-01-30 15:19:36 +01:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "bincode"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "2.0.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 01:22:02 +01:00
|
|
|
"bincode_derive",
|
2021-05-30 00:47:54 +02:00
|
|
|
"serde",
|
2025-10-27 01:22:02 +01:00
|
|
|
"unty",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "bincode_derive"
|
|
|
|
|
version = "2.0.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"virtue",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "bit-set"
|
|
|
|
|
version = "0.8.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bit-vec",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "bit-vec"
|
|
|
|
|
version = "0.8.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "bitflags"
|
2021-10-22 11:27:57 +02:00
|
|
|
version = "1.3.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-10-22 11:27:57 +02:00
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2024-07-10 20:15:10 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "bitflags"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "2.11.0"
|
2024-07-10 20:15:10 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
2025-10-29 16:01:41 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"serde_core",
|
|
|
|
|
]
|
2024-07-10 20:15:10 +02:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "blake2"
|
2021-10-22 11:27:57 +02:00
|
|
|
version = "0.9.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-10-22 11:27:57 +02:00
|
|
|
checksum = "0a4e37d16930f5459780f5621038b6382b9bb37c19016f39fb6b5808d831f174"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"crypto-mac",
|
2021-12-13 03:06:20 +00:00
|
|
|
"digest 0.9.0",
|
2021-05-30 00:47:54 +02:00
|
|
|
"opaque-debug",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "blakeout"
|
|
|
|
|
version = "0.3.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "81efe7c4220f454dd7fb0eeea7f44f0eb7785dae55115c8fad02b52ef578ac37"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"blake2",
|
2021-12-13 03:06:20 +00:00
|
|
|
"digest 0.9.0",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "block-buffer"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.10.4"
|
2021-12-13 03:06:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
2021-12-13 03:06:20 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"generic-array",
|
|
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "block-buffer"
|
|
|
|
|
version = "0.12.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"hybrid-array",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "block2"
|
|
|
|
|
version = "0.6.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"objc2",
|
|
|
|
|
]
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "bumpalo"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "3.20.2"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
2021-09-05 19:05:30 +02:00
|
|
|
|
2025-10-29 16:39:44 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "bytemuck"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.25.0"
|
2025-10-29 16:39:44 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
2025-10-29 16:39:44 +01:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "byteorder"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "1.5.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2025-10-29 16:39:44 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "byteorder-lite"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
|
|
|
|
2025-10-22 22:55:38 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "bytes"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.11.1"
|
2025-10-22 22:55:38 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
2025-10-22 22:55:38 +02:00
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "cairo-rs"
|
|
|
|
|
version = "0.18.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
|
|
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"cairo-sys-rs",
|
|
|
|
|
"glib",
|
|
|
|
|
"libc",
|
|
|
|
|
"once_cell",
|
|
|
|
|
"thiserror 1.0.69",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "cairo-sys-rs"
|
2025-10-27 20:36:37 +01:00
|
|
|
version = "0.18.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"glib-sys",
|
2021-05-30 00:47:54 +02:00
|
|
|
"libc",
|
|
|
|
|
"system-deps",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "cc"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.2.59"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
|
2024-11-17 13:39:23 +01:00
|
|
|
dependencies = [
|
2025-10-27 01:22:02 +01:00
|
|
|
"find-msvc-tools",
|
2024-11-17 13:39:23 +01:00
|
|
|
"shlex",
|
|
|
|
|
]
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "cesu8"
|
|
|
|
|
version = "1.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "cfg-expr"
|
|
|
|
|
version = "0.15.8"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"smallvec",
|
|
|
|
|
"target-lexicon",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "cfg-if"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "1.0.4"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "chacha20"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.9.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2021-09-15 16:06:10 +02:00
|
|
|
"cfg-if",
|
2024-01-11 01:32:18 +01:00
|
|
|
"cipher",
|
2026-04-04 16:24:21 +02:00
|
|
|
"cpufeatures 0.2.17",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "chacha20poly1305"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.10.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"aead",
|
2021-05-30 00:47:54 +02:00
|
|
|
"chacha20",
|
2024-01-11 01:32:18 +01:00
|
|
|
"cipher",
|
2021-05-30 00:47:54 +02:00
|
|
|
"poly1305",
|
|
|
|
|
"zeroize",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "chrono"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.4.44"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2022-09-05 19:19:19 +02:00
|
|
|
"iana-time-zone",
|
|
|
|
|
"js-sys",
|
2021-05-30 00:47:54 +02:00
|
|
|
"num-traits",
|
|
|
|
|
"serde",
|
2022-09-05 19:19:19 +02:00
|
|
|
"wasm-bindgen",
|
2025-10-27 01:22:02 +01:00
|
|
|
"windows-link 0.2.1",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "cipher"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.4.4"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"crypto-common 0.1.7",
|
2024-01-11 01:32:18 +01:00
|
|
|
"inout",
|
|
|
|
|
"zeroize",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "combine"
|
|
|
|
|
version = "4.6.7"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bytes",
|
|
|
|
|
"memchr",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2024-01-11 01:32:18 +01:00
|
|
|
name = "const-oid"
|
|
|
|
|
version = "0.9.6"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
2026-04-04 16:24:21 +02:00
|
|
|
name = "const-oid"
|
|
|
|
|
version = "0.10.2"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
2026-03-20 11:13:00 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "convert_case"
|
|
|
|
|
version = "0.10.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"unicode-segmentation",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "cookie"
|
|
|
|
|
version = "0.18.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"time",
|
|
|
|
|
"version_check",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "core-foundation"
|
|
|
|
|
version = "0.10.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"core-foundation-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2022-09-05 19:19:19 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "core-foundation-sys"
|
2024-11-17 13:39:23 +01:00
|
|
|
version = "0.8.7"
|
2022-09-05 19:19:19 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-17 13:39:23 +01:00
|
|
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
2022-09-05 19:19:19 +02:00
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "core-graphics"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.25.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"core-foundation",
|
|
|
|
|
"core-graphics-types",
|
|
|
|
|
"foreign-types",
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "core-graphics-types"
|
|
|
|
|
version = "0.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
|
|
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"core-foundation",
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2021-08-30 03:04:15 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "cpufeatures"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "0.2.17"
|
2021-08-30 03:04:15 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
2021-08-30 03:04:15 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "cpufeatures"
|
|
|
|
|
version = "0.3.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2022-01-02 15:10:33 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "crc32fast"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "1.5.0"
|
2022-01-02 15:10:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
2022-01-02 15:10:33 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "crossbeam-channel"
|
|
|
|
|
version = "0.5.15"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"crossbeam-utils",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "crossbeam-utils"
|
|
|
|
|
version = "0.8.21"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
|
|
|
|
2021-12-13 03:06:20 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "crypto-common"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.1.7"
|
2021-12-13 03:06:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
2021-12-13 03:06:20 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"generic-array",
|
2026-04-04 16:24:21 +02:00
|
|
|
"rand_core",
|
2022-02-16 21:28:30 +01:00
|
|
|
"typenum",
|
2021-12-13 03:06:20 +00:00
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "crypto-common"
|
|
|
|
|
version = "0.2.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"hybrid-array",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "crypto-mac"
|
|
|
|
|
version = "0.8.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"generic-array",
|
|
|
|
|
"subtle",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "cssparser"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.36.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"cssparser-macros",
|
|
|
|
|
"dtoa-short",
|
|
|
|
|
"itoa",
|
2026-04-04 16:24:21 +02:00
|
|
|
"phf",
|
2025-10-27 20:36:37 +01:00
|
|
|
"smallvec",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "cssparser-macros"
|
|
|
|
|
version = "0.6.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2024-01-11 01:32:18 +01:00
|
|
|
name = "ctr"
|
|
|
|
|
version = "0.9.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"cipher",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "curve25519-dalek"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "4.1.3"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
2024-01-11 01:32:18 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
2026-04-04 16:24:21 +02:00
|
|
|
"cpufeatures 0.2.17",
|
2024-01-11 01:32:18 +01:00
|
|
|
"curve25519-dalek-derive",
|
|
|
|
|
"digest 0.10.7",
|
|
|
|
|
"fiat-crypto",
|
|
|
|
|
"rustc_version",
|
2021-05-30 00:47:54 +02:00
|
|
|
"subtle",
|
2024-01-11 01:32:18 +01:00
|
|
|
"zeroize",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2024-01-11 01:32:18 +01:00
|
|
|
name = "curve25519-dalek-derive"
|
|
|
|
|
version = "0.1.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "dbus"
|
|
|
|
|
version = "0.9.10"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "21b3aa68d7e7abee336255bd7248ea965cc393f3e70411135a6f6a4b651345d4"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
"libdbus-sys",
|
|
|
|
|
"windows-sys 0.59.0",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2024-01-11 01:32:18 +01:00
|
|
|
name = "der"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "0.7.10"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"const-oid 0.9.6",
|
2021-05-30 00:47:54 +02:00
|
|
|
"zeroize",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "deranged"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.5.8"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
2024-01-11 01:32:18 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"powerfmt",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "derive_more"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "2.1.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
2024-11-17 13:39:23 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"derive_more-impl",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "derive_more-impl"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "2.1.1"
|
2024-11-17 13:39:23 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"convert_case",
|
2021-05-30 00:47:54 +02:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"rustc_version",
|
|
|
|
|
"syn 2.0.117",
|
2024-11-17 13:39:23 +01:00
|
|
|
"unicode-xid",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "digest"
|
|
|
|
|
version = "0.9.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"generic-array",
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-13 03:06:20 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "digest"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.10.7"
|
2021-12-13 03:06:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
2021-12-13 03:06:20 +00:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"block-buffer 0.10.4",
|
|
|
|
|
"crypto-common 0.1.7",
|
2024-01-11 01:32:18 +01:00
|
|
|
"subtle",
|
2021-12-13 03:06:20 +00:00
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "digest"
|
|
|
|
|
version = "0.11.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "4850db49bf08e663084f7fb5c87d202ef91a3907271aff24a94eb97ff039153c"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"block-buffer 0.12.0",
|
|
|
|
|
"const-oid 0.10.2",
|
|
|
|
|
"crypto-common 0.2.1",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "dirs"
|
|
|
|
|
version = "6.0.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"dirs-sys",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[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",
|
|
|
|
|
"windows-sys 0.61.2",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "dispatch2"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.3.1"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
|
|
|
|
"block2",
|
|
|
|
|
"libc",
|
2025-10-27 20:36:37 +01:00
|
|
|
"objc2",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "displaydoc"
|
|
|
|
|
version = "0.2.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "dlopen2"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.8.2"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"dlopen2_derive",
|
|
|
|
|
"libc",
|
|
|
|
|
"once_cell",
|
|
|
|
|
"winapi",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "dlopen2_derive"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.4.3"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "dom_query"
|
|
|
|
|
version = "0.27.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "521e380c0c8afb8d9a1e83a1822ee03556fc3e3e7dbc1fd30be14e37f9cb3f89"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bit-set",
|
|
|
|
|
"cssparser",
|
|
|
|
|
"foldhash 0.2.0",
|
|
|
|
|
"html5ever",
|
|
|
|
|
"precomputed-hash",
|
|
|
|
|
"selectors",
|
|
|
|
|
"tendril",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "dpi"
|
|
|
|
|
version = "0.1.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "dtoa"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.0.11"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "dtoa-short"
|
|
|
|
|
version = "0.3.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"dtoa",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "dunce"
|
|
|
|
|
version = "1.0.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2024-01-11 01:32:18 +01:00
|
|
|
name = "ecies-ed25519-ng"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.5.3"
|
|
|
|
|
source = "git+https://github.com/Revertron/ecies-ed25519-ng?rev=554ca29#554ca29a1bbd55f0c7e2f75cb3c7e0e3030afc15"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"aes-gcm",
|
|
|
|
|
"curve25519-dalek",
|
2024-01-11 01:32:18 +01:00
|
|
|
"digest 0.10.7",
|
2021-05-30 00:47:54 +02:00
|
|
|
"hex",
|
|
|
|
|
"hkdf",
|
2026-04-04 16:24:21 +02:00
|
|
|
"rand",
|
|
|
|
|
"sha2 0.10.9",
|
2025-10-27 20:36:37 +01:00
|
|
|
"thiserror 1.0.69",
|
2021-05-30 00:47:54 +02:00
|
|
|
"zeroize",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "ed25519"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "2.2.3"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"pkcs8",
|
|
|
|
|
"signature",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "ed25519-dalek"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "2.2.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"curve25519-dalek",
|
|
|
|
|
"ed25519",
|
|
|
|
|
"serde",
|
2026-04-04 16:24:21 +02:00
|
|
|
"sha2 0.10.9",
|
2024-01-11 01:32:18 +01:00
|
|
|
"subtle",
|
2021-05-30 00:47:54 +02:00
|
|
|
"zeroize",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "equivalent"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "1.0.2"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
2024-01-11 01:32:18 +01:00
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "fastrand"
|
|
|
|
|
version = "2.3.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "fdeflate"
|
|
|
|
|
version = "0.3.7"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"simd-adler32",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "fiat-crypto"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.2.9"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
2024-01-11 01:32:18 +01:00
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "field-offset"
|
|
|
|
|
version = "0.3.6"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"memoffset",
|
|
|
|
|
"rustc_version",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 01:22:02 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "find-msvc-tools"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.1.9"
|
2025-10-27 01:22:02 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
2025-10-27 01:22:02 +01:00
|
|
|
|
2022-01-02 15:10:33 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "flate2"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.1.9"
|
2022-01-02 15:10:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
2022-01-02 15:10:33 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"crc32fast",
|
|
|
|
|
"miniz_oxide",
|
|
|
|
|
]
|
|
|
|
|
|
2024-11-17 13:39:23 +01:00
|
|
|
[[package]]
|
2026-03-20 11:13:00 +01:00
|
|
|
name = "foldhash"
|
|
|
|
|
version = "0.1.5"
|
2024-11-17 13:39:23 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
2024-11-17 13:39:23 +01:00
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
2025-10-22 22:55:38 +02:00
|
|
|
name = "foldhash"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "0.2.0"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
2021-09-05 19:05:30 +02:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "foreign-types"
|
|
|
|
|
version = "0.5.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"foreign-types-macros",
|
|
|
|
|
"foreign-types-shared",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "foreign-types-macros"
|
|
|
|
|
version = "0.2.3"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "foreign-types-shared"
|
|
|
|
|
version = "0.3.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "form_urlencoded"
|
|
|
|
|
version = "1.2.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"percent-encoding",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-22 22:55:38 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "futures-channel"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.3.32"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"futures-core",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "futures-core"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.3.32"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "futures-executor"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.3.32"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"futures-core",
|
|
|
|
|
"futures-task",
|
|
|
|
|
"futures-util",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "futures-io"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.3.32"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "futures-macro"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.3.32"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "futures-task"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.3.32"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "futures-util"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.3.32"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-macro",
|
|
|
|
|
"futures-task",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
"slab",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gdk"
|
|
|
|
|
version = "0.18.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"cairo-rs",
|
|
|
|
|
"gdk-pixbuf",
|
|
|
|
|
"gdk-sys",
|
|
|
|
|
"gio",
|
|
|
|
|
"glib",
|
|
|
|
|
"libc",
|
|
|
|
|
"pango",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gdk-pixbuf"
|
|
|
|
|
version = "0.18.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"gdk-pixbuf-sys",
|
|
|
|
|
"gio",
|
|
|
|
|
"glib",
|
|
|
|
|
"libc",
|
|
|
|
|
"once_cell",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gdk-pixbuf-sys"
|
|
|
|
|
version = "0.18.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"gio-sys",
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"system-deps",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gdk-sys"
|
|
|
|
|
version = "0.18.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"cairo-sys-rs",
|
|
|
|
|
"gdk-pixbuf-sys",
|
|
|
|
|
"gio-sys",
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"pango-sys",
|
|
|
|
|
"pkg-config",
|
|
|
|
|
"system-deps",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gdkwayland-sys"
|
|
|
|
|
version = "0.18.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"gdk-sys",
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"pkg-config",
|
|
|
|
|
"system-deps",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gdkx11"
|
|
|
|
|
version = "0.18.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"gdk",
|
|
|
|
|
"gdkx11-sys",
|
|
|
|
|
"gio",
|
|
|
|
|
"glib",
|
|
|
|
|
"libc",
|
|
|
|
|
"x11",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gdkx11-sys"
|
|
|
|
|
version = "0.18.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"gdk-sys",
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"system-deps",
|
|
|
|
|
"x11",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "generic-array"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.14.7"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"typenum",
|
|
|
|
|
"version_check",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "getopts"
|
|
|
|
|
version = "0.2.24"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"unicode-width",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "getrandom"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.2.17"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"libc",
|
2026-04-04 16:24:21 +02:00
|
|
|
"wasi",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "getrandom"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.4.2"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"libc",
|
|
|
|
|
"r-efi",
|
|
|
|
|
"wasip2",
|
2026-03-20 11:13:00 +01:00
|
|
|
"wasip3",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "ghash"
|
|
|
|
|
version = "0.5.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"opaque-debug",
|
|
|
|
|
"polyval",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gio"
|
|
|
|
|
version = "0.18.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"futures-channel",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-io",
|
|
|
|
|
"futures-util",
|
|
|
|
|
"gio-sys",
|
|
|
|
|
"glib",
|
|
|
|
|
"libc",
|
|
|
|
|
"once_cell",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
"smallvec",
|
|
|
|
|
"thiserror 1.0.69",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gio-sys"
|
|
|
|
|
version = "0.18.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"system-deps",
|
|
|
|
|
"winapi",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "glib"
|
|
|
|
|
version = "0.18.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
|
|
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"futures-channel",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-executor",
|
|
|
|
|
"futures-task",
|
|
|
|
|
"futures-util",
|
|
|
|
|
"gio-sys",
|
|
|
|
|
"glib-macros",
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"memchr",
|
|
|
|
|
"once_cell",
|
|
|
|
|
"smallvec",
|
|
|
|
|
"thiserror 1.0.69",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "glib-macros"
|
|
|
|
|
version = "0.18.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"heck 0.4.1",
|
|
|
|
|
"proc-macro-crate 2.0.2",
|
|
|
|
|
"proc-macro-error",
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "glib-sys"
|
|
|
|
|
version = "0.18.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
"system-deps",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gobject-sys"
|
|
|
|
|
version = "0.18.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"system-deps",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gtk"
|
|
|
|
|
version = "0.18.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"atk",
|
|
|
|
|
"cairo-rs",
|
|
|
|
|
"field-offset",
|
|
|
|
|
"futures-channel",
|
|
|
|
|
"gdk",
|
|
|
|
|
"gdk-pixbuf",
|
|
|
|
|
"gio",
|
|
|
|
|
"glib",
|
|
|
|
|
"gtk-sys",
|
|
|
|
|
"gtk3-macros",
|
|
|
|
|
"libc",
|
|
|
|
|
"pango",
|
|
|
|
|
"pkg-config",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "gtk-sys"
|
|
|
|
|
version = "0.18.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414"
|
|
|
|
|
dependencies = [
|
2021-05-30 00:47:54 +02:00
|
|
|
"atk-sys",
|
|
|
|
|
"cairo-sys-rs",
|
|
|
|
|
"gdk-pixbuf-sys",
|
|
|
|
|
"gdk-sys",
|
|
|
|
|
"gio-sys",
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"pango-sys",
|
|
|
|
|
"system-deps",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "gtk3-macros"
|
|
|
|
|
version = "0.18.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro-crate 1.3.1",
|
|
|
|
|
"proc-macro-error",
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "half"
|
|
|
|
|
version = "1.8.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "hashbrown"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.15.5"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"foldhash 0.1.5",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "hashbrown"
|
|
|
|
|
version = "0.16.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"allocator-api2",
|
|
|
|
|
"equivalent",
|
2026-03-20 11:13:00 +01:00
|
|
|
"foldhash 0.2.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[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"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "hermit-abi"
|
|
|
|
|
version = "0.5.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "hex"
|
|
|
|
|
version = "0.4.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "hkdf"
|
|
|
|
|
version = "0.12.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"hmac",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "hmac"
|
|
|
|
|
version = "0.12.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"digest 0.10.7",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "html5ever"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.38.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "1054432bae2f14e0061e33d23402fbaa67a921d319d56adc6bcf887ddad1cbc2"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"log",
|
|
|
|
|
"markup5ever",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "http"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.4.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"bytes",
|
|
|
|
|
"itoa",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "httparse"
|
|
|
|
|
version = "1.10.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "hybrid-array"
|
|
|
|
|
version = "0.4.10"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"typenum",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "iana-time-zone"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.1.65"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"android_system_properties",
|
|
|
|
|
"core-foundation-sys",
|
|
|
|
|
"iana-time-zone-haiku",
|
|
|
|
|
"js-sys",
|
|
|
|
|
"log",
|
|
|
|
|
"wasm-bindgen",
|
|
|
|
|
"windows-core 0.62.2",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "iana-time-zone-haiku"
|
|
|
|
|
version = "0.1.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"cc",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "icu_collections"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "2.2.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"displaydoc",
|
|
|
|
|
"potential_utf",
|
2026-04-04 16:24:21 +02:00
|
|
|
"utf8_iter",
|
2025-10-27 20:36:37 +01:00
|
|
|
"yoke",
|
|
|
|
|
"zerofrom",
|
|
|
|
|
"zerovec",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "icu_locale_core"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "2.2.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"displaydoc",
|
|
|
|
|
"litemap",
|
|
|
|
|
"tinystr",
|
|
|
|
|
"writeable",
|
|
|
|
|
"zerovec",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "icu_normalizer"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "2.2.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"icu_collections",
|
|
|
|
|
"icu_normalizer_data",
|
|
|
|
|
"icu_properties",
|
|
|
|
|
"icu_provider",
|
|
|
|
|
"smallvec",
|
|
|
|
|
"zerovec",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "icu_normalizer_data"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "2.2.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "icu_properties"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "2.2.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"icu_collections",
|
|
|
|
|
"icu_locale_core",
|
|
|
|
|
"icu_properties_data",
|
|
|
|
|
"icu_provider",
|
|
|
|
|
"zerotrie",
|
|
|
|
|
"zerovec",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "icu_properties_data"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "2.2.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "icu_provider"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "2.2.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"displaydoc",
|
|
|
|
|
"icu_locale_core",
|
|
|
|
|
"writeable",
|
|
|
|
|
"yoke",
|
|
|
|
|
"zerofrom",
|
|
|
|
|
"zerotrie",
|
|
|
|
|
"zerovec",
|
|
|
|
|
]
|
|
|
|
|
|
2026-03-20 11:13:00 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "id-arena"
|
|
|
|
|
version = "2.3.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "idna"
|
|
|
|
|
version = "1.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"idna_adapter",
|
|
|
|
|
"smallvec",
|
|
|
|
|
"utf8_iter",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "idna_adapter"
|
|
|
|
|
version = "1.2.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"icu_normalizer",
|
|
|
|
|
"icu_properties",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-29 16:39:44 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "image"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.25.10"
|
2025-10-29 16:39:44 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
|
2025-10-29 16:39:44 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"bytemuck",
|
|
|
|
|
"byteorder-lite",
|
|
|
|
|
"moxcms",
|
|
|
|
|
"num-traits",
|
2026-03-20 11:13:00 +01:00
|
|
|
"png 0.18.1",
|
2025-10-29 16:39:44 +01:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "indexmap"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "2.13.1"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"equivalent",
|
2026-03-20 11:13:00 +01:00
|
|
|
"hashbrown 0.16.1",
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_core",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "inout"
|
|
|
|
|
version = "0.1.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"generic-array",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[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",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "itoa"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.0.18"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "javascriptcore-rs"
|
|
|
|
|
version = "1.1.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 1.3.2",
|
|
|
|
|
"glib",
|
|
|
|
|
"javascriptcore-rs-sys",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "javascriptcore-rs-sys"
|
|
|
|
|
version = "1.1.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"system-deps",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "jni"
|
|
|
|
|
version = "0.21.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"cesu8",
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"combine",
|
2026-04-04 16:24:21 +02:00
|
|
|
"jni-sys 0.3.1",
|
2025-10-27 20:36:37 +01:00
|
|
|
"log",
|
|
|
|
|
"thiserror 1.0.69",
|
|
|
|
|
"walkdir",
|
|
|
|
|
"windows-sys 0.45.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "jni-sys"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.3.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"jni-sys 0.4.1",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "jni-sys"
|
|
|
|
|
version = "0.4.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"jni-sys-macros",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "jni-sys-macros"
|
|
|
|
|
version = "0.4.1"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"quote",
|
|
|
|
|
"syn 2.0.117",
|
|
|
|
|
]
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "js-sys"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.3.94"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"once_cell",
|
|
|
|
|
"wasm-bindgen",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "keyboard-types"
|
|
|
|
|
version = "0.7.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
|
|
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-29 16:01:41 +01:00
|
|
|
"serde",
|
|
|
|
|
"unicode-segmentation",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "lazy_static"
|
|
|
|
|
version = "1.5.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
|
|
|
2026-03-20 11:13:00 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "leb128fmt"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "libappindicator"
|
|
|
|
|
version = "0.9.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"glib",
|
|
|
|
|
"gtk",
|
|
|
|
|
"gtk-sys",
|
|
|
|
|
"libappindicator-sys",
|
|
|
|
|
"log",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "libappindicator-sys"
|
|
|
|
|
version = "0.9.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"gtk-sys",
|
|
|
|
|
"libloading",
|
|
|
|
|
"once_cell",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "libc"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.2.184"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "libdbus-sys"
|
|
|
|
|
version = "0.2.7"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "328c4789d42200f1eeec05bd86c9c13c7f091d2ba9a6ea35acdf51f31bc0f043"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"pkg-config",
|
|
|
|
|
]
|
2025-10-27 20:36:37 +01:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "libloading"
|
|
|
|
|
version = "0.7.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"winapi",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "libredox"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.1.15"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "libxdo"
|
|
|
|
|
version = "0.6.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "00333b8756a3d28e78def82067a377de7fa61b24909000aeaa2b446a948d14db"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"libxdo-sys",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "libxdo-sys"
|
|
|
|
|
version = "0.11.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "db23b9e7e2b7831bbd8aac0bbeeeb7b68cbebc162b227e7052e8e55829a09212"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
"x11",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "litemap"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.8.2"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "lock_api"
|
|
|
|
|
version = "0.4.14"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"scopeguard",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "log"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.4.29"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "lru"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.16.3"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"hashbrown 0.16.1",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "markup5ever"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.38.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "8983d30f2915feeaaab2d6babdd6bc7e9ed1a00b66b5e6d74df19aa9c0e91862"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"log",
|
|
|
|
|
"tendril",
|
2026-04-04 16:24:21 +02:00
|
|
|
"web_atoms",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "memchr"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "2.8.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "memoffset"
|
|
|
|
|
version = "0.9.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"autocfg",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "miniz_oxide"
|
|
|
|
|
version = "0.8.9"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"adler2",
|
|
|
|
|
"simd-adler32",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "mio"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.2.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
"log",
|
2026-04-04 16:24:21 +02:00
|
|
|
"wasi",
|
2025-10-27 20:36:37 +01:00
|
|
|
"windows-sys 0.61.2",
|
|
|
|
|
]
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2025-10-29 16:39:44 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "moxcms"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.8.1"
|
2025-10-29 16:39:44 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
|
2025-10-29 16:39:44 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"num-traits",
|
|
|
|
|
"pxfm",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "muda"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.17.2"
|
2025-10-29 16:01:41 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "7c9fec5a4e89860383d778d10563a605838f8f0b2f9303868937e5ff32e86177"
|
2025-10-29 16:01:41 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"crossbeam-channel",
|
|
|
|
|
"dpi",
|
|
|
|
|
"gtk",
|
|
|
|
|
"keyboard-types",
|
|
|
|
|
"libxdo",
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-app-kit",
|
|
|
|
|
"objc2-core-foundation",
|
|
|
|
|
"objc2-foundation",
|
|
|
|
|
"once_cell",
|
2025-10-29 16:39:44 +01:00
|
|
|
"png 0.17.16",
|
2026-03-20 11:13:00 +01:00
|
|
|
"thiserror 2.0.18",
|
2025-10-29 16:01:41 +01:00
|
|
|
"windows-sys 0.60.2",
|
|
|
|
|
]
|
|
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "ndk"
|
|
|
|
|
version = "0.9.0"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2026-04-04 16:24:21 +02:00
|
|
|
"jni-sys 0.3.1",
|
2025-10-27 20:36:37 +01:00
|
|
|
"log",
|
|
|
|
|
"ndk-sys",
|
|
|
|
|
"num_enum",
|
|
|
|
|
"raw-window-handle",
|
|
|
|
|
"thiserror 1.0.69",
|
2021-09-05 19:05:30 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "ndk-sys"
|
|
|
|
|
version = "0.6.0+11769913"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"jni-sys 0.3.1",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "new_debug_unreachable"
|
|
|
|
|
version = "1.0.6"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "num-bigint"
|
|
|
|
|
version = "0.4.6"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"num-integer",
|
|
|
|
|
"num-traits",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "num-conv"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.2.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "num-integer"
|
|
|
|
|
version = "0.1.46"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"num-traits",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-22 22:55:38 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "num-traits"
|
|
|
|
|
version = "0.2.19"
|
2025-10-22 22:55:38 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
2025-10-22 22:55:38 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"autocfg",
|
2025-10-22 22:55:38 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "num_cpus"
|
|
|
|
|
version = "1.17.0"
|
2025-10-22 22:55:38 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"hermit-abi",
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
2025-10-22 22:55:38 +02:00
|
|
|
|
2022-09-05 19:19:19 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "num_enum"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.7.6"
|
2022-09-05 19:19:19 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
|
2022-09-05 19:19:19 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"num_enum_derive",
|
|
|
|
|
"rustversion",
|
2024-01-11 01:32:18 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "num_enum_derive"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.7.6"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
|
2024-01-11 01:32:18 +01:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"proc-macro-crate 3.5.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2022-09-05 19:19:19 +02:00
|
|
|
]
|
|
|
|
|
|
2023-03-01 13:18:18 +01:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "num_threads"
|
|
|
|
|
version = "0.1.7"
|
2023-03-01 13:18:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
2023-03-01 13:18:18 +01:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"libc",
|
2024-01-11 01:32:18 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "objc2"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.6.4"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
2024-01-11 01:32:18 +01:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"objc2-encode",
|
|
|
|
|
"objc2-exception-helper",
|
2024-01-11 01:32:18 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "objc2-app-kit"
|
|
|
|
|
version = "0.3.2"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
|
2024-01-11 01:32:18 +01:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"objc2",
|
|
|
|
|
"objc2-core-foundation",
|
|
|
|
|
"objc2-foundation",
|
2024-01-11 01:32:18 +01:00
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "objc2-cloud-kit"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 2.11.0",
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-foundation",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "objc2-core-data"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-foundation",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "objc2-core-foundation"
|
|
|
|
|
version = "0.3.2"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
2024-01-11 01:32:18 +01:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"dispatch2",
|
|
|
|
|
"objc2",
|
2023-03-01 13:18:18 +01:00
|
|
|
]
|
|
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "objc2-core-graphics"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
|
|
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2026-04-04 16:24:21 +02:00
|
|
|
"dispatch2",
|
|
|
|
|
"objc2",
|
2025-10-29 16:01:41 +01:00
|
|
|
"objc2-core-foundation",
|
2026-04-04 16:24:21 +02:00
|
|
|
"objc2-io-surface",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "objc2-core-image"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-foundation",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "objc2-core-location"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-foundation",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "objc2-core-text"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 2.11.0",
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-core-foundation",
|
|
|
|
|
"objc2-core-graphics",
|
2025-10-29 16:01:41 +01:00
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "objc2-encode"
|
|
|
|
|
version = "4.1.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "objc2-exception-helper"
|
|
|
|
|
version = "0.1.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"cc",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "objc2-foundation"
|
|
|
|
|
version = "0.3.2"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-29 16:01:41 +01:00
|
|
|
"block2",
|
2025-10-27 20:36:37 +01:00
|
|
|
"objc2",
|
|
|
|
|
"objc2-core-foundation",
|
2021-09-05 19:05:30 +02:00
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "objc2-io-surface"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 2.11.0",
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-core-foundation",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "objc2-quartz-core"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 2.11.0",
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-core-foundation",
|
|
|
|
|
"objc2-foundation",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "objc2-ui-kit"
|
|
|
|
|
version = "0.3.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
|
|
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2026-04-04 16:24:21 +02:00
|
|
|
"block2",
|
2025-10-27 20:36:37 +01:00
|
|
|
"objc2",
|
2026-04-04 16:24:21 +02:00
|
|
|
"objc2-cloud-kit",
|
|
|
|
|
"objc2-core-data",
|
2025-10-27 20:36:37 +01:00
|
|
|
"objc2-core-foundation",
|
2026-04-04 16:24:21 +02:00
|
|
|
"objc2-core-graphics",
|
|
|
|
|
"objc2-core-image",
|
|
|
|
|
"objc2-core-location",
|
|
|
|
|
"objc2-core-text",
|
|
|
|
|
"objc2-foundation",
|
|
|
|
|
"objc2-quartz-core",
|
|
|
|
|
"objc2-user-notifications",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "objc2-user-notifications"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"objc2",
|
2025-10-27 20:36:37 +01:00
|
|
|
"objc2-foundation",
|
|
|
|
|
]
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "objc2-web-kit"
|
|
|
|
|
version = "0.3.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f"
|
|
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"block2",
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-app-kit",
|
|
|
|
|
"objc2-core-foundation",
|
|
|
|
|
"objc2-foundation",
|
|
|
|
|
]
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "once_cell"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.21.4"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
2021-09-05 19:05:30 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "opaque-debug"
|
|
|
|
|
version = "0.3.1"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "open"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "5.3.3"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"is-wsl",
|
|
|
|
|
"libc",
|
|
|
|
|
"pathdiff",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2023-03-01 13:18:18 +01:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "option-ext"
|
|
|
|
|
version = "0.2.0"
|
2023-03-01 13:18:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
2023-03-01 13:18:18 +01:00
|
|
|
|
2022-01-02 15:10:33 +01:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "pango"
|
|
|
|
|
version = "0.18.3"
|
2022-01-02 15:10:33 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
|
2022-01-02 15:10:33 +01:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"gio",
|
|
|
|
|
"glib",
|
|
|
|
|
"libc",
|
|
|
|
|
"once_cell",
|
|
|
|
|
"pango-sys",
|
2022-01-02 15:10:33 +01:00
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "pango-sys"
|
|
|
|
|
version = "0.18.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
2021-05-30 00:47:54 +02:00
|
|
|
"libc",
|
2025-10-27 20:36:37 +01:00
|
|
|
"system-deps",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "parking_lot"
|
|
|
|
|
version = "0.12.5"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"lock_api",
|
|
|
|
|
"parking_lot_core",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2024-07-10 20:15:10 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "parking_lot_core"
|
|
|
|
|
version = "0.9.12"
|
2024-07-10 20:15:10 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"libc",
|
|
|
|
|
"redox_syscall",
|
|
|
|
|
"smallvec",
|
|
|
|
|
"windows-link 0.2.1",
|
|
|
|
|
]
|
2024-07-10 20:15:10 +02:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "pathdiff"
|
|
|
|
|
version = "0.2.3"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "percent-encoding"
|
|
|
|
|
version = "2.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "phf"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.13.1"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"phf_macros",
|
2026-04-04 16:24:21 +02:00
|
|
|
"phf_shared",
|
|
|
|
|
"serde",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "phf_codegen"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.13.1"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"phf_generator",
|
|
|
|
|
"phf_shared",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "phf_generator"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.13.1"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"fastrand",
|
|
|
|
|
"phf_shared",
|
2022-05-12 15:17:25 +02:00
|
|
|
]
|
|
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "phf_macros"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.13.1"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"phf_generator",
|
|
|
|
|
"phf_shared",
|
2025-10-27 20:36:37 +01:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-04-04 16:24:21 +02:00
|
|
|
"syn 2.0.117",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "phf_shared"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.13.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"siphasher",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2021-07-19 03:03:27 +00:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "pin-project-lite"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.2.17"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
2024-01-11 01:32:18 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "pkcs8"
|
|
|
|
|
version = "0.10.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"der",
|
|
|
|
|
"spki",
|
|
|
|
|
]
|
2021-09-05 19:05:30 +02:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "pkg-config"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "0.3.32"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "png"
|
|
|
|
|
version = "0.17.16"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 1.3.2",
|
|
|
|
|
"crc32fast",
|
|
|
|
|
"fdeflate",
|
|
|
|
|
"flate2",
|
|
|
|
|
"miniz_oxide",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-29 16:39:44 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "png"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.18.1"
|
2025-10-29 16:39:44 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
2025-10-29 16:39:44 +01:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-29 16:39:44 +01:00
|
|
|
"crc32fast",
|
|
|
|
|
"fdeflate",
|
|
|
|
|
"flate2",
|
|
|
|
|
"miniz_oxide",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "poly1305"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.8.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"cpufeatures 0.2.17",
|
2021-05-30 00:47:54 +02:00
|
|
|
"opaque-debug",
|
|
|
|
|
"universal-hash",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "polyval"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.6.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"cfg-if",
|
2026-04-04 16:24:21 +02:00
|
|
|
"cpufeatures 0.2.17",
|
2021-05-30 00:47:54 +02:00
|
|
|
"opaque-debug",
|
|
|
|
|
"universal-hash",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "potential_utf"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.1.5"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"zerovec",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "powerfmt"
|
|
|
|
|
version = "0.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "ppv-lite86"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "0.2.21"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
2024-11-17 13:39:23 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"zerocopy",
|
|
|
|
|
]
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "precomputed-hash"
|
|
|
|
|
version = "0.1.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
|
|
|
|
2026-03-20 11:13:00 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "prettyplease"
|
|
|
|
|
version = "0.2.37"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"syn 2.0.117",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01: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",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "proc-macro-crate"
|
|
|
|
|
version = "2.0.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"toml_datetime 0.6.3",
|
|
|
|
|
"toml_edit 0.20.2",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "proc-macro-crate"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "3.5.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"toml_edit 0.25.10+spec-1.1.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "proc-macro-error"
|
|
|
|
|
version = "1.0.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro-error-attr",
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"syn 1.0.109",
|
|
|
|
|
"version_check",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "proc-macro-error-attr"
|
|
|
|
|
version = "1.0.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"version_check",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "proc-macro2"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.0.106"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2023-03-01 13:18:18 +01:00
|
|
|
"unicode-ident",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-29 16:39:44 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "pxfm"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.1.28"
|
2025-10-29 16:39:44 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d"
|
2025-10-29 16:39:44 +01:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "quote"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.0.45"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-22 22:55:38 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "r-efi"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "6.0.0"
|
2025-10-22 22:55:38 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
2025-10-22 22:55:38 +02:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "rand"
|
2022-02-16 21:28:30 +01:00
|
|
|
version = "0.8.5"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-16 21:28:30 +01:00
|
|
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
2026-04-04 16:24:21 +02:00
|
|
|
"rand_chacha",
|
|
|
|
|
"rand_core",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rand_chacha"
|
2021-10-22 11:27:57 +02:00
|
|
|
version = "0.3.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-10-22 11:27:57 +02:00
|
|
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"ppv-lite86",
|
2026-04-04 16:24:21 +02:00
|
|
|
"rand_core",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rand_core"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.6.4"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"getrandom 0.2.17",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "raw-window-handle"
|
|
|
|
|
version = "0.6.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "redox_syscall"
|
|
|
|
|
version = "0.5.18"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "redox_users"
|
|
|
|
|
version = "0.5.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"getrandom 0.2.17",
|
2025-10-27 20:36:37 +01:00
|
|
|
"libredox",
|
2026-03-20 11:13:00 +01:00
|
|
|
"thiserror 2.0.18",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "ring"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "0.17.14"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"cc",
|
2024-07-10 20:15:10 +02:00
|
|
|
"cfg-if",
|
2026-03-20 11:13:00 +01:00
|
|
|
"getrandom 0.2.17",
|
2021-09-05 19:05:30 +02:00
|
|
|
"libc",
|
|
|
|
|
"untrusted",
|
2024-11-17 13:39:23 +01:00
|
|
|
"windows-sys 0.52.0",
|
2021-09-05 19:05:30 +02:00
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "rustc-hash"
|
|
|
|
|
version = "2.1.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
|
|
|
|
2021-07-12 03:04:34 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rustc_version"
|
2024-11-17 13:39:23 +01:00
|
|
|
version = "0.4.1"
|
2021-07-12 03:04:34 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-17 13:39:23 +01:00
|
|
|
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
2021-07-12 03:04:34 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"semver",
|
|
|
|
|
]
|
|
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "rustls"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.23.37"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"log",
|
2024-07-10 20:15:10 +02:00
|
|
|
"once_cell",
|
2021-09-05 19:05:30 +02:00
|
|
|
"ring",
|
2024-01-11 01:32:18 +01:00
|
|
|
"rustls-pki-types",
|
|
|
|
|
"rustls-webpki",
|
|
|
|
|
"subtle",
|
|
|
|
|
"zeroize",
|
2021-09-05 19:05:30 +02:00
|
|
|
]
|
|
|
|
|
|
2023-12-03 02:11:40 +01:00
|
|
|
[[package]]
|
2024-01-11 01:32:18 +01:00
|
|
|
name = "rustls-pki-types"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.14.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
2025-10-22 22:55:38 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"zeroize",
|
|
|
|
|
]
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
2024-01-11 01:32:18 +01:00
|
|
|
name = "rustls-webpki"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.103.10"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"ring",
|
2024-01-11 01:32:18 +01:00
|
|
|
"rustls-pki-types",
|
2021-09-05 19:05:30 +02:00
|
|
|
"untrusted",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "rustversion"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "1.0.22"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
2024-01-11 01:32:18 +01:00
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "same-file"
|
|
|
|
|
version = "1.0.6"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"winapi-util",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "scopeguard"
|
|
|
|
|
version = "1.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "selectors"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.36.1"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "c5d9c0c92a92d33f08817311cf3f2c29a3538a8240e94a6a3c622ce652d7e00c"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"bitflags 2.11.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"cssparser",
|
2026-04-04 16:24:21 +02:00
|
|
|
"derive_more",
|
2025-10-27 20:36:37 +01:00
|
|
|
"log",
|
2026-04-04 16:24:21 +02:00
|
|
|
"new_debug_unreachable",
|
|
|
|
|
"phf",
|
|
|
|
|
"phf_codegen",
|
2025-10-27 20:36:37 +01:00
|
|
|
"precomputed-hash",
|
2026-04-04 16:24:21 +02:00
|
|
|
"rustc-hash",
|
2025-10-27 20:36:37 +01:00
|
|
|
"servo_arc",
|
|
|
|
|
"smallvec",
|
|
|
|
|
]
|
|
|
|
|
|
2021-07-12 03:04:34 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "semver"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.0.28"
|
2021-07-12 03:04:34 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
2021-07-12 03:04:34 +00:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "1.0.228"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 01:22:02 +01:00
|
|
|
"serde_core",
|
2021-05-30 00:47:54 +02:00
|
|
|
"serde_derive",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "serde_cbor"
|
2021-08-23 10:32:10 +00:00
|
|
|
version = "0.11.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-08-23 10:32:10 +00:00
|
|
|
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"half",
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 01:22:02 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde_core"
|
|
|
|
|
version = "1.0.228"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"serde_derive",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde_derive"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "1.0.228"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "serde_json"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.0.149"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"itoa",
|
2024-11-17 13:39:23 +01:00
|
|
|
"memchr",
|
2021-05-30 00:47:54 +02:00
|
|
|
"serde",
|
2025-10-27 01:22:02 +01:00
|
|
|
"serde_core",
|
2026-03-20 11:13:00 +01:00
|
|
|
"zmij",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde_spanned"
|
|
|
|
|
version = "0.6.9"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2023-03-01 13:18:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde_spanned"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.1.1"
|
2023-03-01 13:18:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
2023-03-01 13:18:18 +01:00
|
|
|
dependencies = [
|
2025-10-27 01:22:02 +01:00
|
|
|
"serde_core",
|
2023-03-01 13:18:18 +01:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "servo_arc"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.4.3"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"stable_deref_trait",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "sha2"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "0.10.9"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2021-09-15 16:06:10 +02:00
|
|
|
"cfg-if",
|
2026-04-04 16:24:21 +02:00
|
|
|
"cpufeatures 0.2.17",
|
2024-01-11 01:32:18 +01:00
|
|
|
"digest 0.10.7",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "sha2"
|
|
|
|
|
version = "0.11.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"cpufeatures 0.3.0",
|
|
|
|
|
"digest 0.11.2",
|
|
|
|
|
]
|
|
|
|
|
|
2024-11-17 13:39:23 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "shlex"
|
|
|
|
|
version = "1.3.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
|
|
|
2021-12-13 03:06:20 +00:00
|
|
|
[[package]]
|
2024-01-11 01:32:18 +01:00
|
|
|
name = "signature"
|
|
|
|
|
version = "2.2.0"
|
2021-12-13 03:06:20 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
|
2021-12-13 03:06:20 +00:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"rand_core",
|
2021-12-13 03:06:20 +00:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 01:22:02 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "simd-adler32"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.3.9"
|
2025-10-27 01:22:02 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
2025-10-27 01:22:02 +01:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "simplelog"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.12.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"log",
|
|
|
|
|
"termcolor",
|
2024-01-11 01:32:18 +01:00
|
|
|
"time",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "siphasher"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.0.2"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "slab"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.4.12"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "smallvec"
|
|
|
|
|
version = "1.15.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "soup3"
|
|
|
|
|
version = "0.5.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"futures-channel",
|
|
|
|
|
"gio",
|
|
|
|
|
"glib",
|
|
|
|
|
"libc",
|
|
|
|
|
"soup3-sys",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "soup3-sys"
|
|
|
|
|
version = "0.5.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"gio-sys",
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"system-deps",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "spki"
|
|
|
|
|
version = "0.7.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"base64ct",
|
|
|
|
|
"der",
|
|
|
|
|
]
|
2021-09-05 19:05:30 +02:00
|
|
|
|
2022-11-03 14:46:35 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "spmc"
|
|
|
|
|
version = "0.3.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "02a8428da277a8e3a15271d79943e80ccc2ef254e78813a166a08d65e4c3ece5"
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "sqlite"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "0.37.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "f66e9c01a11936154f3910dbba732c01f8b591543bc4d6672bddee79fd9c4783"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"sqlite3-sys",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "sqlite3-src"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "0.7.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "e5b6d3c860886b0a33e69e421796a5f4a27f23597a182c2450f6d7ace5103120"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"cc",
|
|
|
|
|
"pkg-config",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "sqlite3-sys"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "0.18.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "a7781d97adc13a1d5081127a9ee29afad8427f3757bd984daf814d8265267039"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"sqlite3-src",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "stable_deref_trait"
|
|
|
|
|
version = "1.2.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "string_cache"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.9.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"new_debug_unreachable",
|
|
|
|
|
"parking_lot",
|
2026-04-04 16:24:21 +02:00
|
|
|
"phf_shared",
|
2025-10-27 20:36:37 +01:00
|
|
|
"precomputed-hash",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "string_cache_codegen"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.6.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"phf_generator",
|
|
|
|
|
"phf_shared",
|
2021-05-30 00:47:54 +02:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "subtle"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "2.6.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "syn"
|
2023-03-01 13:18:18 +01:00
|
|
|
version = "1.0.109"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-01 13:18:18 +01:00
|
|
|
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
2023-03-01 13:18:18 +01:00
|
|
|
"unicode-ident",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2024-01-11 01:32:18 +01:00
|
|
|
name = "syn"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "2.0.117"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-11 01:32:18 +01:00
|
|
|
"unicode-ident",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "synstructure"
|
|
|
|
|
version = "0.13.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "system-deps"
|
2025-10-27 20:36:37 +01:00
|
|
|
version = "6.2.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"cfg-expr",
|
|
|
|
|
"heck 0.5.0",
|
2021-05-30 00:47:54 +02:00
|
|
|
"pkg-config",
|
2025-10-27 20:36:37 +01:00
|
|
|
"toml 0.8.2",
|
2021-05-30 00:47:54 +02:00
|
|
|
"version-compare",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "tao"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.35.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "1cf65722394c2ac443e80120064987f8914ee1d4e4e36e63cdf10f2990f01159"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"block2",
|
|
|
|
|
"core-foundation",
|
|
|
|
|
"core-graphics",
|
|
|
|
|
"crossbeam-channel",
|
2026-04-04 16:24:21 +02:00
|
|
|
"dbus",
|
2026-03-20 11:13:00 +01:00
|
|
|
"dispatch2",
|
2025-10-27 20:36:37 +01:00
|
|
|
"dlopen2",
|
|
|
|
|
"dpi",
|
|
|
|
|
"gdkwayland-sys",
|
|
|
|
|
"gdkx11-sys",
|
|
|
|
|
"gtk",
|
|
|
|
|
"jni",
|
|
|
|
|
"libc",
|
|
|
|
|
"log",
|
|
|
|
|
"ndk",
|
|
|
|
|
"ndk-sys",
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-app-kit",
|
|
|
|
|
"objc2-foundation",
|
2026-04-04 16:24:21 +02:00
|
|
|
"objc2-ui-kit",
|
2025-10-27 20:36:37 +01:00
|
|
|
"once_cell",
|
|
|
|
|
"parking_lot",
|
2026-04-04 16:24:21 +02:00
|
|
|
"percent-encoding",
|
2025-10-27 20:36:37 +01:00
|
|
|
"raw-window-handle",
|
|
|
|
|
"tao-macros",
|
|
|
|
|
"unicode-segmentation",
|
|
|
|
|
"url",
|
|
|
|
|
"windows",
|
|
|
|
|
"windows-core 0.61.2",
|
|
|
|
|
"windows-version",
|
|
|
|
|
"x11-dl",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "tao-macros"
|
|
|
|
|
version = "0.1.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "target-lexicon"
|
|
|
|
|
version = "0.12.16"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "tendril"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.5.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"new_debug_unreachable",
|
2025-10-27 20:36:37 +01:00
|
|
|
"utf-8",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "termcolor"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "1.4.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"winapi-util",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "thiserror"
|
|
|
|
|
version = "1.0.69"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"thiserror-impl 1.0.69",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "thiserror"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "2.0.18"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"thiserror-impl 2.0.18",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "thiserror-impl"
|
2024-11-17 13:39:23 +01:00
|
|
|
version = "1.0.69"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 20:36:37 +01:00
|
|
|
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "thiserror-impl"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "2.0.18"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "thread-priority"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "3.0.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "2210811179577da3d54eb69ab0b50490ee40491a25d95b8c6011ba40771cb721"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2022-02-16 21:28:30 +01:00
|
|
|
"cfg-if",
|
2021-05-30 00:47:54 +02:00
|
|
|
"libc",
|
2021-12-06 03:04:51 +00:00
|
|
|
"log",
|
2023-12-03 02:11:40 +01:00
|
|
|
"rustversion",
|
2025-10-27 01:22:02 +01:00
|
|
|
"windows",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "time"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.3.47"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
2022-05-12 15:17:25 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"deranged",
|
2022-05-12 15:17:25 +02:00
|
|
|
"itoa",
|
|
|
|
|
"libc",
|
2024-07-10 20:15:10 +02:00
|
|
|
"num-conv",
|
2022-05-12 15:17:25 +02:00
|
|
|
"num_threads",
|
2024-01-11 01:32:18 +01:00
|
|
|
"powerfmt",
|
2026-03-20 11:13:00 +01:00
|
|
|
"serde_core",
|
2024-01-11 01:32:18 +01:00
|
|
|
"time-core",
|
2022-05-12 15:17:25 +02:00
|
|
|
"time-macros",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "time-core"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.1.8"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
2024-01-11 01:32:18 +01:00
|
|
|
|
2022-05-12 15:17:25 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "time-macros"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.2.27"
|
2022-05-12 15:17:25 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
2024-01-11 01:32:18 +01:00
|
|
|
dependencies = [
|
2024-07-10 20:15:10 +02:00
|
|
|
"num-conv",
|
2024-01-11 01:32:18 +01:00
|
|
|
"time-core",
|
|
|
|
|
]
|
2022-05-12 15:17:25 +02:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "tinyfiledialogs"
|
2022-04-01 13:03:32 +02:00
|
|
|
version = "3.9.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-04-01 13:03:32 +02:00
|
|
|
checksum = "e25fa0bc43a6566e2cc6d7ac96df3fa5a57beba34445bead1b368ba8fe9ca568"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"cc",
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "tinystr"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.8.3"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"displaydoc",
|
|
|
|
|
"zerovec",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "toml"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.5.11"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "toml"
|
|
|
|
|
version = "0.8.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_spanned 0.6.9",
|
|
|
|
|
"toml_datetime 0.6.3",
|
|
|
|
|
"toml_edit 0.20.2",
|
|
|
|
|
]
|
|
|
|
|
|
2023-03-01 13:18:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "toml"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.1.2+spec-1.1.0"
|
2023-03-01 13:18:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
|
2023-03-01 13:18:18 +01:00
|
|
|
dependencies = [
|
2025-10-27 01:22:02 +01:00
|
|
|
"indexmap",
|
|
|
|
|
"serde_core",
|
2026-04-04 16:24:21 +02:00
|
|
|
"serde_spanned 1.1.1",
|
|
|
|
|
"toml_datetime 1.1.1+spec-1.1.0",
|
2025-10-27 01:22:02 +01:00
|
|
|
"toml_parser",
|
|
|
|
|
"toml_writer",
|
2026-04-04 16:24:21 +02:00
|
|
|
"winnow 1.0.1",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "toml_datetime"
|
|
|
|
|
version = "0.6.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
2023-03-01 13:18:18 +01:00
|
|
|
]
|
|
|
|
|
|
2026-03-20 11:13:00 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "toml_datetime"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.1.1+spec-1.1.0"
|
2023-03-01 13:18:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
2023-03-01 13:18:18 +01:00
|
|
|
dependencies = [
|
2025-10-27 01:22:02 +01:00
|
|
|
"serde_core",
|
2023-03-01 13:18:18 +01:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "toml_edit"
|
|
|
|
|
version = "0.19.15"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"indexmap",
|
|
|
|
|
"toml_datetime 0.6.3",
|
|
|
|
|
"winnow 0.5.40",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "toml_edit"
|
|
|
|
|
version = "0.20.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"indexmap",
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_spanned 0.6.9",
|
|
|
|
|
"toml_datetime 0.6.3",
|
|
|
|
|
"winnow 0.5.40",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "toml_edit"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.25.10+spec-1.1.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "a82418ca169e235e6c399a84e395ab6debeb3bc90edc959bf0f48647c6a32d1b"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"indexmap",
|
2026-04-04 16:24:21 +02:00
|
|
|
"toml_datetime 1.1.1+spec-1.1.0",
|
2025-10-27 20:36:37 +01:00
|
|
|
"toml_parser",
|
2026-04-04 16:24:21 +02:00
|
|
|
"winnow 1.0.1",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
2023-03-01 13:18:18 +01:00
|
|
|
[[package]]
|
2025-10-27 01:22:02 +01:00
|
|
|
name = "toml_parser"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.1.2+spec-1.1.0"
|
2023-03-01 13:18:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
2023-03-01 13:18:18 +01:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"winnow 1.0.1",
|
2023-03-01 13:18:18 +01:00
|
|
|
]
|
|
|
|
|
|
2025-10-22 22:55:38 +02:00
|
|
|
[[package]]
|
2025-10-27 01:22:02 +01:00
|
|
|
name = "toml_writer"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.1.1+spec-1.1.0"
|
2025-10-22 22:55:38 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
2025-10-22 22:55:38 +02:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "tray-icon"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.22.0"
|
2025-10-29 16:01:41 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "93e1484378c343c5a9b291188fa58917c7184967683f8cfe4a05461986970553"
|
2025-10-29 16:01:41 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"crossbeam-channel",
|
|
|
|
|
"dirs",
|
|
|
|
|
"libappindicator",
|
|
|
|
|
"muda",
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-app-kit",
|
|
|
|
|
"objc2-core-foundation",
|
|
|
|
|
"objc2-core-graphics",
|
|
|
|
|
"objc2-foundation",
|
|
|
|
|
"once_cell",
|
2026-04-04 16:24:21 +02:00
|
|
|
"png 0.18.1",
|
2026-03-20 11:13:00 +01:00
|
|
|
"thiserror 2.0.18",
|
2025-10-29 16:01:41 +01:00
|
|
|
"windows-sys 0.60.2",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "typenum"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "1.19.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2023-03-01 13:18:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "unicode-ident"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.0.24"
|
2023-03-01 13:18:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
2023-03-01 13:18:18 +01:00
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
2024-11-17 13:39:23 +01:00
|
|
|
name = "unicode-segmentation"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.13.2"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
2021-09-05 19:05:30 +02:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2024-11-17 13:39:23 +01:00
|
|
|
name = "unicode-width"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "0.2.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
2024-11-17 13:39:23 +01:00
|
|
|
name = "unicode-xid"
|
|
|
|
|
version = "0.2.6"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-17 13:39:23 +01:00
|
|
|
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "universal-hash"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.5.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-04-04 16:24:21 +02:00
|
|
|
"crypto-common 0.1.7",
|
2021-05-30 00:47:54 +02:00
|
|
|
"subtle",
|
|
|
|
|
]
|
|
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "untrusted"
|
2024-01-11 01:32:18 +01:00
|
|
|
version = "0.9.0"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-11 01:32:18 +01:00
|
|
|
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
2021-09-05 19:05:30 +02:00
|
|
|
|
2025-10-27 01:22:02 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "unty"
|
|
|
|
|
version = "0.0.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "ureq"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "3.3.0"
|
2024-11-17 13:39:23 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"base64",
|
2022-01-02 15:10:33 +01:00
|
|
|
"flate2",
|
2021-09-05 19:05:30 +02:00
|
|
|
"log",
|
2025-10-22 22:55:38 +02:00
|
|
|
"percent-encoding",
|
2021-09-05 19:05:30 +02:00
|
|
|
"rustls",
|
2024-01-11 01:32:18 +01:00
|
|
|
"rustls-pki-types",
|
2025-10-22 22:55:38 +02:00
|
|
|
"ureq-proto",
|
2026-04-04 16:24:21 +02:00
|
|
|
"utf8-zero",
|
2025-10-27 01:22:02 +01:00
|
|
|
"webpki-roots",
|
2021-09-05 19:05:30 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-22 22:55:38 +02:00
|
|
|
name = "ureq-proto"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.6.0"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
2025-10-22 22:55:38 +02:00
|
|
|
"base64",
|
|
|
|
|
"http",
|
|
|
|
|
"httparse",
|
|
|
|
|
"log",
|
2021-09-05 19:05:30 +02:00
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "url"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "2.5.8"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"form_urlencoded",
|
|
|
|
|
"idna",
|
|
|
|
|
"percent-encoding",
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2024-11-17 13:39:23 +01:00
|
|
|
[[package]]
|
2025-10-22 22:55:38 +02:00
|
|
|
name = "utf-8"
|
|
|
|
|
version = "0.7.6"
|
2024-11-17 13:39:23 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
2024-11-17 13:39:23 +01:00
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "utf8-zero"
|
|
|
|
|
version = "0.8.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "utf8_iter"
|
|
|
|
|
version = "1.0.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "uuid"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.23.0"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"getrandom 0.4.2",
|
2025-10-22 22:55:38 +02:00
|
|
|
"js-sys",
|
2026-03-20 11:13:00 +01:00
|
|
|
"serde_core",
|
2025-10-22 22:55:38 +02:00
|
|
|
"wasm-bindgen",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "version-compare"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.2.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "version_check"
|
2024-11-17 13:39:23 +01:00
|
|
|
version = "0.9.5"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-17 13:39:23 +01:00
|
|
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
2021-05-30 00:47:54 +02:00
|
|
|
|
2025-10-27 01:22:02 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "virtue"
|
|
|
|
|
version = "0.0.18"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "walkdir"
|
|
|
|
|
version = "2.5.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"same-file",
|
|
|
|
|
"winapi-util",
|
|
|
|
|
]
|
|
|
|
|
|
2022-04-01 13:03:32 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "wasi"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "0.11.1+wasi-snapshot-preview1"
|
2022-04-01 13:03:32 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2025-10-27 01:22:02 +01:00
|
|
|
name = "wasip2"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.0.2+wasi-0.2.9"
|
2025-10-22 22:55:38 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"wit-bindgen",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasip3"
|
|
|
|
|
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
2025-10-22 22:55:38 +02:00
|
|
|
dependencies = [
|
2025-10-27 01:22:02 +01:00
|
|
|
"wit-bindgen",
|
2025-10-22 22:55:38 +02:00
|
|
|
]
|
2022-04-01 13:03:32 +02:00
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-bindgen"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.2.117"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
2021-09-15 16:06:10 +02:00
|
|
|
"cfg-if",
|
2024-11-17 13:39:23 +01:00
|
|
|
"once_cell",
|
2025-10-22 22:55:38 +02:00
|
|
|
"rustversion",
|
2021-09-05 19:05:30 +02:00
|
|
|
"wasm-bindgen-macro",
|
2025-10-27 01:22:02 +01:00
|
|
|
"wasm-bindgen-shared",
|
2021-09-05 19:05:30 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-bindgen-macro"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.2.117"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"quote",
|
|
|
|
|
"wasm-bindgen-macro-support",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-bindgen-macro-support"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.2.117"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
2025-10-27 22:44:24 +01:00
|
|
|
"bumpalo",
|
2021-09-05 19:05:30 +02:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2021-09-05 19:05:30 +02:00
|
|
|
"wasm-bindgen-shared",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-bindgen-shared"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.2.117"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
|
2025-10-22 22:55:38 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"unicode-ident",
|
|
|
|
|
]
|
2021-09-05 19:05:30 +02:00
|
|
|
|
2026-03-20 11:13:00 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-encoder"
|
|
|
|
|
version = "0.244.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"leb128fmt",
|
|
|
|
|
"wasmparser",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-metadata"
|
|
|
|
|
version = "0.244.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"anyhow",
|
|
|
|
|
"indexmap",
|
|
|
|
|
"wasm-encoder",
|
|
|
|
|
"wasmparser",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasmparser"
|
|
|
|
|
version = "0.244.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 2.11.0",
|
|
|
|
|
"hashbrown 0.15.5",
|
|
|
|
|
"indexmap",
|
|
|
|
|
"semver",
|
|
|
|
|
]
|
|
|
|
|
|
2026-04-04 16:24:21 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "web_atoms"
|
|
|
|
|
version = "0.2.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "57a9779e9f04d2ac1ce317aee707aa2f6b773afba7b931222bff6983843b1576"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"phf",
|
|
|
|
|
"phf_codegen",
|
|
|
|
|
"string_cache",
|
|
|
|
|
"string_cache_codegen",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "webkit2gtk"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "2.0.2"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"bitflags 1.3.2",
|
|
|
|
|
"cairo-rs",
|
|
|
|
|
"gdk",
|
|
|
|
|
"gdk-sys",
|
|
|
|
|
"gio",
|
|
|
|
|
"gio-sys",
|
|
|
|
|
"glib",
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"gtk",
|
|
|
|
|
"gtk-sys",
|
|
|
|
|
"javascriptcore-rs",
|
|
|
|
|
"libc",
|
|
|
|
|
"once_cell",
|
|
|
|
|
"soup3",
|
|
|
|
|
"webkit2gtk-sys",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "webkit2gtk-sys"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "2.0.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2024-07-10 20:15:10 +02:00
|
|
|
"bitflags 1.3.2",
|
2021-05-30 00:47:54 +02:00
|
|
|
"cairo-sys-rs",
|
|
|
|
|
"gdk-sys",
|
|
|
|
|
"gio-sys",
|
|
|
|
|
"glib-sys",
|
|
|
|
|
"gobject-sys",
|
|
|
|
|
"gtk-sys",
|
|
|
|
|
"javascriptcore-rs-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"pkg-config",
|
2025-10-27 20:36:37 +01:00
|
|
|
"soup3-sys",
|
|
|
|
|
"system-deps",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2021-09-05 19:05:30 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "webpki-roots"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.0.6"
|
2021-09-05 19:05:30 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
|
2021-09-05 19:05:30 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"rustls-pki-types",
|
2021-09-05 19:05:30 +02:00
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
2025-10-27 20:36:37 +01:00
|
|
|
name = "webview2-com"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.38.2"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"webview2-com-macros",
|
|
|
|
|
"webview2-com-sys",
|
|
|
|
|
"windows",
|
|
|
|
|
"windows-core 0.61.2",
|
|
|
|
|
"windows-implement",
|
|
|
|
|
"windows-interface",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "webview2-com-macros"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.8.1"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "webview2-com-sys"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.38.2"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"thiserror 2.0.18",
|
2025-10-27 20:36:37 +01:00
|
|
|
"windows",
|
|
|
|
|
"windows-core 0.61.2",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2023-06-08 00:07:15 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "widestring"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "1.2.1"
|
2023-06-08 00:07:15 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
|
2023-06-08 00:07:15 +02:00
|
|
|
|
2021-05-30 00:47:54 +02: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"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "0.1.11"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2025-10-27 01:22:02 +01:00
|
|
|
"windows-sys 0.61.2",
|
2021-05-30 00:47:54 +02: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"
|
|
|
|
|
|
2025-10-27 01:22:02 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows"
|
|
|
|
|
version = "0.61.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-collections",
|
|
|
|
|
"windows-core 0.61.2",
|
|
|
|
|
"windows-future",
|
|
|
|
|
"windows-link 0.1.3",
|
|
|
|
|
"windows-numerics",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-collections"
|
|
|
|
|
version = "0.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-core 0.61.2",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-core"
|
2025-10-22 22:55:38 +02:00
|
|
|
version = "0.61.2"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-22 22:55:38 +02:00
|
|
|
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
2024-01-11 01:32:18 +01:00
|
|
|
dependencies = [
|
2025-10-22 22:55:38 +02:00
|
|
|
"windows-implement",
|
|
|
|
|
"windows-interface",
|
2025-10-27 01:22:02 +01:00
|
|
|
"windows-link 0.1.3",
|
|
|
|
|
"windows-result 0.3.4",
|
|
|
|
|
"windows-strings 0.4.2",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-core"
|
|
|
|
|
version = "0.62.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-implement",
|
|
|
|
|
"windows-interface",
|
|
|
|
|
"windows-link 0.2.1",
|
|
|
|
|
"windows-result 0.4.1",
|
|
|
|
|
"windows-strings 0.5.1",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-future"
|
|
|
|
|
version = "0.2.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-core 0.61.2",
|
|
|
|
|
"windows-link 0.1.3",
|
|
|
|
|
"windows-threading",
|
2025-10-22 22:55:38 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-implement"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "0.60.2"
|
2025-10-22 22:55:38 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
2025-10-22 22:55:38 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-22 22:55:38 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-interface"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "0.59.3"
|
2025-10-22 22:55:38 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
2025-10-22 22:55:38 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-22 22:55:38 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-link"
|
|
|
|
|
version = "0.1.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
|
|
|
|
2025-10-27 01:22:02 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-link"
|
|
|
|
|
version = "0.2.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-numerics"
|
|
|
|
|
version = "0.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-core 0.61.2",
|
|
|
|
|
"windows-link 0.1.3",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-22 22:55:38 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-result"
|
|
|
|
|
version = "0.3.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
|
|
|
dependencies = [
|
2025-10-27 01:22:02 +01:00
|
|
|
"windows-link 0.1.3",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-result"
|
|
|
|
|
version = "0.4.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-link 0.2.1",
|
2024-01-11 01:32:18 +01:00
|
|
|
]
|
|
|
|
|
|
2023-06-08 00:07:15 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-service"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "0.8.0"
|
2023-06-08 00:07:15 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "193cae8e647981c35bc947fdd57ba7928b1fa0d4a79305f6dd2dc55221ac35ac"
|
2023-06-08 00:07:15 +02:00
|
|
|
dependencies = [
|
2026-03-20 11:13:00 +01:00
|
|
|
"bitflags 2.11.0",
|
2023-06-08 00:07:15 +02:00
|
|
|
"widestring",
|
2025-10-27 01:22:02 +01:00
|
|
|
"windows-sys 0.59.0",
|
2023-06-08 00:07:15 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-22 22:55:38 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-strings"
|
|
|
|
|
version = "0.4.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
|
|
|
dependencies = [
|
2025-10-27 01:22:02 +01:00
|
|
|
"windows-link 0.1.3",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-strings"
|
|
|
|
|
version = "0.5.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-link 0.2.1",
|
2025-10-22 22:55:38 +02:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01: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",
|
|
|
|
|
]
|
|
|
|
|
|
2023-01-30 14:40:59 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-sys"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.52.0"
|
2023-12-03 02:11:40 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2023-12-03 02:11:40 +01:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"windows-targets 0.52.6",
|
2023-12-03 02:11:40 +01:00
|
|
|
]
|
|
|
|
|
|
2024-11-17 13:39:23 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-sys"
|
|
|
|
|
version = "0.59.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"windows-targets 0.52.6",
|
2024-11-17 13:39:23 +01:00
|
|
|
]
|
|
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-sys"
|
|
|
|
|
version = "0.60.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-targets 0.53.5",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 01:22:02 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-sys"
|
|
|
|
|
version = "0.61.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-link 0.2.1",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01: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",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-targets"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.52.6"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
2024-01-11 01:32:18 +01:00
|
|
|
dependencies = [
|
2025-10-27 20:36:37 +01:00
|
|
|
"windows_aarch64_gnullvm 0.52.6",
|
|
|
|
|
"windows_aarch64_msvc 0.52.6",
|
|
|
|
|
"windows_i686_gnu 0.52.6",
|
2025-10-29 16:01:41 +01:00
|
|
|
"windows_i686_gnullvm 0.52.6",
|
2025-10-27 20:36:37 +01:00
|
|
|
"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-11 01:32:18 +01:00
|
|
|
]
|
|
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-targets"
|
|
|
|
|
version = "0.53.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-link 0.2.1",
|
|
|
|
|
"windows_aarch64_gnullvm 0.53.1",
|
|
|
|
|
"windows_aarch64_msvc 0.53.1",
|
|
|
|
|
"windows_i686_gnu 0.53.1",
|
|
|
|
|
"windows_i686_gnullvm 0.53.1",
|
|
|
|
|
"windows_i686_msvc 0.53.1",
|
|
|
|
|
"windows_x86_64_gnu 0.53.1",
|
|
|
|
|
"windows_x86_64_gnullvm 0.53.1",
|
|
|
|
|
"windows_x86_64_msvc 0.53.1",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 01:22:02 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-threading"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-link 0.1.3",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-version"
|
|
|
|
|
version = "0.1.7"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-link 0.2.1",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_gnullvm"
|
|
|
|
|
version = "0.42.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
|
|
|
|
2023-01-30 14:40:59 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_gnullvm"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.52.6"
|
2023-01-30 14:40:59 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
2023-01-30 14:40:59 +01:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_gnullvm"
|
|
|
|
|
version = "0.53.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
|
version = "0.42.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
|
|
|
|
2023-12-03 02:11:40 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_msvc"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.52.6"
|
2023-12-03 02:11:40 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
2022-05-12 14:50:31 +02:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
|
version = "0.53.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
|
version = "0.42.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
|
|
|
|
2023-01-30 14:40:59 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_gnu"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.52.6"
|
2022-05-12 14:50:31 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2022-05-12 14:50:31 +02:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
|
version = "0.53.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
|
|
|
|
2023-01-30 14:40:59 +01:00
|
|
|
[[package]]
|
2024-07-10 20:15:10 +02:00
|
|
|
name = "windows_i686_gnullvm"
|
|
|
|
|
version = "0.52.6"
|
2023-01-30 14:40:59 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
2023-01-30 14:40:59 +01:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_gnullvm"
|
|
|
|
|
version = "0.53.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
|
version = "0.42.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
|
|
|
|
2023-12-03 02:11:40 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_msvc"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.52.6"
|
2023-12-03 02:11:40 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
2022-05-12 14:50:31 +02:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
|
version = "0.53.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
|
version = "0.42.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
|
|
|
|
2023-01-30 14:40:59 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnu"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.52.6"
|
2023-01-30 14:40:59 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
2023-01-30 14:40:59 +01:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
|
version = "0.53.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnullvm"
|
|
|
|
|
version = "0.42.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
|
|
|
|
2023-12-03 02:11:40 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnullvm"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.52.6"
|
2023-12-03 02:11:40 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
2022-05-12 14:50:31 +02:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnullvm"
|
|
|
|
|
version = "0.53.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
|
version = "0.42.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
|
|
|
|
2023-01-30 14:40:59 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_msvc"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "0.52.6"
|
2023-01-30 14:40:59 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2024-01-11 01:32:18 +01:00
|
|
|
|
2025-10-29 16:01:41 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
|
version = "0.53.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "winnow"
|
|
|
|
|
version = "0.5.40"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"memchr",
|
|
|
|
|
]
|
|
|
|
|
|
2026-03-20 11:13:00 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "winnow"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "1.0.1"
|
2026-03-20 11:13:00 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"memchr",
|
|
|
|
|
]
|
2023-03-01 13:18:18 +01:00
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "winres"
|
2021-10-04 03:03:50 +00:00
|
|
|
version = "0.1.12"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-10-04 03:03:50 +00:00
|
|
|
checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
2024-01-11 01:32:18 +01:00
|
|
|
"toml 0.5.11",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
|
|
|
|
|
2024-11-17 13:39:23 +01:00
|
|
|
[[package]]
|
2025-10-27 01:22:02 +01:00
|
|
|
name = "wit-bindgen"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "0.51.0"
|
2024-11-17 13:39:23 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"wit-bindgen-rust-macro",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wit-bindgen-core"
|
|
|
|
|
version = "0.51.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"anyhow",
|
|
|
|
|
"heck 0.5.0",
|
|
|
|
|
"wit-parser",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wit-bindgen-rust"
|
|
|
|
|
version = "0.51.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"anyhow",
|
|
|
|
|
"heck 0.5.0",
|
|
|
|
|
"indexmap",
|
|
|
|
|
"prettyplease",
|
|
|
|
|
"syn 2.0.117",
|
|
|
|
|
"wasm-metadata",
|
|
|
|
|
"wit-bindgen-core",
|
|
|
|
|
"wit-component",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wit-bindgen-rust-macro"
|
|
|
|
|
version = "0.51.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"anyhow",
|
|
|
|
|
"prettyplease",
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"syn 2.0.117",
|
|
|
|
|
"wit-bindgen-core",
|
|
|
|
|
"wit-bindgen-rust",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wit-component"
|
|
|
|
|
version = "0.244.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"anyhow",
|
|
|
|
|
"bitflags 2.11.0",
|
|
|
|
|
"indexmap",
|
|
|
|
|
"log",
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_derive",
|
|
|
|
|
"serde_json",
|
|
|
|
|
"wasm-encoder",
|
|
|
|
|
"wasm-metadata",
|
|
|
|
|
"wasmparser",
|
|
|
|
|
"wit-parser",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wit-parser"
|
|
|
|
|
version = "0.244.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"anyhow",
|
|
|
|
|
"id-arena",
|
|
|
|
|
"indexmap",
|
|
|
|
|
"log",
|
|
|
|
|
"semver",
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_derive",
|
|
|
|
|
"serde_json",
|
|
|
|
|
"unicode-xid",
|
|
|
|
|
"wasmparser",
|
|
|
|
|
]
|
2024-11-17 13:39:23 +01:00
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "writeable"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.6.3"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wry"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.55.0"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "3013fd6116aac351dd2e18f349b28b2cfef3a5ff3253a9d0ce2d7193bb1b4429"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"base64",
|
|
|
|
|
"block2",
|
|
|
|
|
"cookie",
|
|
|
|
|
"crossbeam-channel",
|
|
|
|
|
"dirs",
|
2026-04-04 16:24:21 +02:00
|
|
|
"dom_query",
|
2025-10-27 20:36:37 +01:00
|
|
|
"dpi",
|
|
|
|
|
"dunce",
|
|
|
|
|
"gdkx11",
|
|
|
|
|
"gtk",
|
|
|
|
|
"http",
|
|
|
|
|
"javascriptcore-rs",
|
|
|
|
|
"jni",
|
|
|
|
|
"libc",
|
|
|
|
|
"ndk",
|
|
|
|
|
"objc2",
|
|
|
|
|
"objc2-app-kit",
|
|
|
|
|
"objc2-core-foundation",
|
|
|
|
|
"objc2-foundation",
|
|
|
|
|
"objc2-ui-kit",
|
|
|
|
|
"objc2-web-kit",
|
|
|
|
|
"once_cell",
|
|
|
|
|
"percent-encoding",
|
|
|
|
|
"raw-window-handle",
|
2026-04-04 16:24:21 +02:00
|
|
|
"sha2 0.10.9",
|
2025-10-27 20:36:37 +01:00
|
|
|
"soup3",
|
|
|
|
|
"tao-macros",
|
2026-03-20 11:13:00 +01:00
|
|
|
"thiserror 2.0.18",
|
2025-10-27 20:36:37 +01:00
|
|
|
"url",
|
|
|
|
|
"webkit2gtk",
|
|
|
|
|
"webkit2gtk-sys",
|
|
|
|
|
"webview2-com",
|
|
|
|
|
"windows",
|
|
|
|
|
"windows-core 0.61.2",
|
|
|
|
|
"windows-version",
|
|
|
|
|
"x11-dl",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "x11"
|
|
|
|
|
version = "2.21.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
"pkg-config",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[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",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "x25519-dalek"
|
2024-07-10 20:15:10 +02:00
|
|
|
version = "2.0.1"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-07-10 20:15:10 +02:00
|
|
|
checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"curve25519-dalek",
|
2026-04-04 16:24:21 +02:00
|
|
|
"rand_core",
|
2024-01-11 01:32:18 +01:00
|
|
|
"serde",
|
2021-05-30 00:47:54 +02:00
|
|
|
"zeroize",
|
|
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "yoke"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.8.2"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"stable_deref_trait",
|
|
|
|
|
"yoke-derive",
|
|
|
|
|
"zerofrom",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "yoke-derive"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.8.2"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
"synstructure",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-11 01:32:18 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "zerocopy"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.8.48"
|
2024-01-11 01:32:18 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
2024-01-11 01:32:18 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"zerocopy-derive",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "zerocopy-derive"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.8.48"
|
2024-11-17 13:39:23 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
2024-11-17 13:39:23 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2024-01-11 01:32:18 +01:00
|
|
|
]
|
|
|
|
|
|
2025-10-27 20:36:37 +01:00
|
|
|
[[package]]
|
|
|
|
|
name = "zerofrom"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.1.7"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"zerofrom-derive",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "zerofrom-derive"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.1.7"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
"synstructure",
|
|
|
|
|
]
|
|
|
|
|
|
2021-05-30 00:47:54 +02:00
|
|
|
[[package]]
|
|
|
|
|
name = "zeroize"
|
2025-10-27 01:22:02 +01:00
|
|
|
version = "1.8.2"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025-10-27 01:22:02 +01:00
|
|
|
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"zeroize_derive",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "zeroize_derive"
|
2026-03-20 11:13:00 +01:00
|
|
|
version = "1.4.3"
|
2021-05-30 00:47:54 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-03-20 11:13:00 +01:00
|
|
|
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
2021-05-30 00:47:54 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2021-05-30 00:47:54 +02:00
|
|
|
]
|
2025-10-27 20:36:37 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "zerotrie"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.2.4"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"displaydoc",
|
|
|
|
|
"yoke",
|
|
|
|
|
"zerofrom",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "zerovec"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.11.6"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"yoke",
|
|
|
|
|
"zerofrom",
|
|
|
|
|
"zerovec-derive",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "zerovec-derive"
|
2026-04-04 16:24:21 +02:00
|
|
|
version = "0.11.3"
|
2025-10-27 20:36:37 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2026-04-04 16:24:21 +02:00
|
|
|
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
2025-10-27 20:36:37 +01:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2026-03-20 11:13:00 +01:00
|
|
|
"syn 2.0.117",
|
2025-10-27 20:36:37 +01:00
|
|
|
]
|
2026-03-20 11:13:00 +01:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "zmij"
|
|
|
|
|
version = "1.0.21"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|