fractal/Cargo.lock

5050 lines
118 KiB
Plaintext
Raw Normal View History

2021-02-04 20:10:12 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-03-23 11:30:47 +00:00
version = 3
2021-06-22 09:04:40 +00:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "adler32"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
2021-02-23 15:10:14 +00:00
[[package]]
name = "aead"
2021-09-07 10:39:10 +00:00
version = "0.4.3"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-07 10:39:10 +00:00
checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
2021-02-23 15:10:14 +00:00
dependencies = [
2021-05-21 14:18:16 +00:00
"generic-array",
"rand_core 0.6.3",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "aes"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfe0133578c0986e1fe3dfcd4af1cc5b2dd6c3dbf534d69916ce16a2701d40ba"
dependencies = [
"cfg-if 1.0.0",
"cipher 0.4.3",
"cpufeatures",
]
2021-05-28 09:04:33 +00:00
[[package]]
name = "ahash"
2021-10-21 12:46:04 +00:00
version = "0.7.6"
2021-05-28 09:04:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 12:46:04 +00:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-08-13 20:58:17 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"getrandom 0.2.7",
2021-08-13 20:58:17 +00:00
"once_cell",
"version_check",
]
2021-05-28 09:04:33 +00:00
2021-02-04 20:10:12 +00:00
[[package]]
name = "aho-corasick"
version = "0.7.19"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
2021-02-04 20:10:12 +00:00
dependencies = [
"memchr",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "ammonia"
version = "3.2.1"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b477377562f3086b7778d241786e9406b883ccfaa03557c0fe0924b9349f13a"
2021-04-20 17:20:16 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"html5ever 0.26.0",
2021-04-20 17:20:16 +00:00
"maplit",
2022-07-20 08:43:02 +00:00
"once_cell",
2021-04-20 17:20:16 +00:00
"tendril",
"url",
]
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "anyhow"
version = "1.0.65"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98161a4e3e2184da77bb14f02184cdd111e83bbbcc9979dfee3c44b9a85f5602"
2021-02-04 20:10:12 +00:00
2021-11-24 14:28:23 +00:00
[[package]]
name = "anymap2"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c"
[[package]]
name = "arrayref"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
[[package]]
name = "arrayvec"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
dependencies = [
"serde",
]
[[package]]
name = "ashpd"
2022-07-20 08:43:02 +00:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "6dcc8ed0b5211687437636d8c95f6a608f4281d142101b3b5d314b38bfadd40f"
dependencies = [
2022-02-14 20:53:11 +00:00
"enumflags2",
"futures",
"gdk4-wayland",
"gdk4-x11",
"gtk4",
"libc",
"pipewire",
2022-03-02 10:07:23 +00:00
"rand 0.8.5",
"serde",
"serde_repr",
"tracing",
2022-02-14 20:53:11 +00:00
"zbus",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "assign"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f093eed78becd229346bf859eec0aa4dd7ddde0757287b2b4107a1f09c80002"
[[package]]
name = "async-broadcast"
2022-07-20 08:43:02 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "6d26004fe83b2d1cd3a97609b21e39f9a31535822210fe83205d2ce48866ea61"
dependencies = [
"event-listener",
"futures-core",
2022-07-20 08:43:02 +00:00
"parking_lot 0.12.1",
]
[[package]]
name = "async-channel"
version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
[[package]]
name = "async-executor"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
dependencies = [
"async-task",
"concurrent-queue",
"fastrand",
"futures-lite",
"once_cell",
"slab",
]
[[package]]
name = "async-io"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83e21f3a490c72b3b0cf44962180e60045de2925d8dff97918f7ee43c8f637c7"
dependencies = [
"autocfg",
"concurrent-queue",
"futures-lite",
"libc",
"log",
"once_cell",
"parking",
"polling",
2021-04-28 13:23:59 +00:00
"slab",
2021-04-20 17:06:36 +00:00
"socket2",
"waker-fn",
"winapi",
]
[[package]]
name = "async-lock"
2022-03-02 10:07:23 +00:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "e97a171d191782fba31bb902b14ad94e24a68145032b7eedf871ab0bc0d077b6"
dependencies = [
"event-listener",
]
2022-05-07 14:39:18 +00:00
[[package]]
name = "async-once-cell"
2022-05-27 15:15:32 +00:00
version = "0.3.1"
2022-05-07 14:39:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 15:15:32 +00:00
checksum = "72faff1fdc615a0199d7bf71e6f389af54d46a66e9beb5d76c39e48eda93ecce"
2022-05-07 14:39:18 +00:00
[[package]]
name = "async-recursion"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7d78656ba01f1b93024b7c3a0467f1608e4be67d725749fdcd7d2c7678fd7a2"
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
]
2021-09-20 10:23:06 +00:00
[[package]]
name = "async-stream"
2022-05-07 14:39:18 +00:00
version = "0.3.3"
2021-09-20 10:23:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 14:39:18 +00:00
checksum = "dad5c83079eae9969be7fadefe640a1c566901f05ff91ab221de4b6f68d9507e"
2021-09-20 10:23:06 +00:00
dependencies = [
"async-stream-impl",
"futures-core",
]
[[package]]
name = "async-stream-impl"
2022-05-07 14:39:18 +00:00
version = "0.3.3"
2021-09-20 10:23:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 14:39:18 +00:00
checksum = "10f203db73a71dfa2fb6dd22763990fa26f3d2625a6da2da900d23b87d26be27"
2021-09-20 10:23:06 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-09-20 10:23:06 +00:00
]
[[package]]
name = "async-task"
2022-07-20 08:43:02 +00:00
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
2021-02-23 15:10:14 +00:00
[[package]]
name = "async-trait"
2022-07-20 08:43:02 +00:00
version = "0.1.57"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "76464446b8bc32758d7e88ee1a804d9914cd9b1cb264c029899680b0be29826f"
2021-02-23 15:10:14 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "atomic"
2022-01-19 22:16:01 +00:00
version = "0.5.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "b88d82667eca772c4aa12f0f1348b3ae643424c8876448f3f7bd5787032e234c"
2021-02-23 15:10:14 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "autocfg"
2022-03-02 10:07:23 +00:00
version = "1.1.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-02-04 20:10:12 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "backoff"
version = "0.4.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
2021-02-23 15:10:14 +00:00
dependencies = [
"futures-core",
2022-07-20 08:43:02 +00:00
"getrandom 0.2.7",
2021-02-23 15:10:14 +00:00
"instant",
"pin-project-lite",
2022-03-02 10:07:23 +00:00
"rand 0.8.5",
2021-02-23 15:10:14 +00:00
"tokio",
]
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "base64ct"
version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea2b2456fd614d856680dcd9fcc660a51a820fa09daef2e49772b56a193c8474"
[[package]]
name = "bindgen"
2022-01-19 22:16:01 +00:00
version = "0.59.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
dependencies = [
"bitflags",
"cexpr",
"clang-sys",
"clap",
"env_logger",
"lazy_static",
"lazycell",
"log",
"peeking_take_while",
"proc-macro2 1.0.43",
"quote 1.0.21",
"regex",
"rustc-hash",
"shlex",
"which",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "blake3"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a08e53fc5a564bb15bfe6fae56bd71522205f1f91893f9c0116edad6496c183f"
dependencies = [
"arrayref",
2022-07-20 08:43:02 +00:00
"arrayvec",
"cc",
"cfg-if 1.0.0",
"constant_time_eq",
"digest 0.10.3",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
2021-02-23 15:10:14 +00:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
2021-05-21 14:18:16 +00:00
"generic-array",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "block-buffer"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
dependencies = [
"generic-array",
]
2021-11-24 14:28:23 +00:00
[[package]]
name = "block-padding"
version = "0.3.2"
2021-11-24 14:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a90ec2df9600c28a01c56c4784c9207a96d2451833aeceb8cc97e4c9548bb78"
dependencies = [
"generic-array",
]
2021-11-24 14:28:23 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "bumpalo"
version = "3.11.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
2021-02-23 15:10:14 +00:00
2021-06-22 09:04:40 +00:00
[[package]]
name = "bytemuck"
version = "1.12.1"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da"
2021-06-22 09:04:40 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
2022-07-20 08:43:02 +00:00
version = "1.2.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
2021-02-23 15:10:14 +00:00
[[package]]
name = "cache-padded"
2022-01-19 22:16:01 +00:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
2021-02-04 20:10:12 +00:00
[[package]]
name = "cairo-rs"
2022-07-20 08:43:02 +00:00
version = "0.15.12"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc"
2021-02-04 20:10:12 +00:00
dependencies = [
"bitflags",
"cairo-sys-rs",
"glib",
"libc",
"thiserror",
]
[[package]]
name = "cairo-sys-rs"
version = "0.15.1"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
2021-02-04 20:10:12 +00:00
dependencies = [
"glib-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "cbc"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
dependencies = [
"cipher 0.4.3",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "cc"
2022-03-02 10:07:23 +00:00
version = "1.0.73"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2021-03-23 11:30:47 +00:00
[[package]]
name = "cexpr"
2022-01-19 22:16:01 +00:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
dependencies = [
2022-07-20 08:43:02 +00:00
"nom",
2021-03-23 11:30:47 +00:00
]
2021-02-04 20:10:12 +00:00
2021-09-30 13:20:04 +00:00
[[package]]
name = "cfg-expr"
2022-07-20 08:43:02 +00:00
version = "0.10.3"
2021-09-30 13:20:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db"
2021-09-30 13:20:04 +00:00
dependencies = [
"smallvec",
]
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2021-02-04 20:10:12 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2021-02-23 15:10:14 +00:00
[[package]]
name = "chacha20"
2022-07-20 08:43:02 +00:00
version = "0.8.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6"
2021-02-23 15:10:14 +00:00
dependencies = [
2021-06-22 09:04:40 +00:00
"cfg-if 1.0.0",
"cipher 0.3.0",
2021-09-20 10:23:06 +00:00
"cpufeatures",
2021-02-23 15:10:14 +00:00
"zeroize",
]
[[package]]
name = "chacha20poly1305"
2022-07-20 08:43:02 +00:00
version = "0.9.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5"
2021-02-23 15:10:14 +00:00
dependencies = [
"aead",
"chacha20",
"cipher 0.3.0",
2021-02-23 15:10:14 +00:00
"poly1305",
"zeroize",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "checked_int_cast"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17cc5e6b5ab06331c33589842070416baa137e8b0eb912b008cfd4a78ada7919"
[[package]]
name = "chrono"
version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
dependencies = [
"iana-time-zone",
"num-integer",
"num-traits",
"winapi",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "cipher"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [
"generic-array",
]
[[package]]
name = "cipher"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
dependencies = [
"crypto-common",
"inout",
]
[[package]]
name = "clang-sys"
2022-07-20 08:43:02 +00:00
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b"
dependencies = [
"glob",
"libc",
"libloading",
]
[[package]]
name = "clap"
2022-01-19 22:16:01 +00:00
version = "2.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
2022-01-19 22:16:01 +00:00
"ansi_term",
"atty",
"bitflags",
2022-07-20 08:43:02 +00:00
"strsim 0.8.0",
"textwrap",
"unicode-width",
"vec_map",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
[[package]]
name = "concurrent-queue"
2022-07-20 08:43:02 +00:00
version = "1.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
dependencies = [
"cache-padded",
]
[[package]]
name = "const-oid"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3"
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "cookie-factory"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "396de984970346b0d9e93d1415082923c679e5ae5c3ee3dcbd104f5610af126b"
2021-02-23 15:10:14 +00:00
[[package]]
name = "core-foundation"
2022-03-02 10:07:23 +00:00
version = "0.9.3"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
2021-02-23 15:10:14 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2021-10-21 12:46:04 +00:00
version = "0.8.3"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 12:46:04 +00:00
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2021-02-23 15:10:14 +00:00
2021-09-07 10:39:10 +00:00
[[package]]
name = "cpufeatures"
version = "0.2.5"
2021-09-07 10:39:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2021-09-07 10:39:10 +00:00
dependencies = [
"libc",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "crc32fast"
2022-03-02 10:07:23 +00:00
version = "1.3.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
2021-02-23 15:10:14 +00:00
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "crossbeam-channel"
2022-07-20 08:43:02 +00:00
version = "0.5.6"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
2021-06-22 09:04:40 +00:00
dependencies = [
"cfg-if 1.0.0",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2022-07-20 08:43:02 +00:00
version = "0.8.2"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
2021-06-22 09:04:40 +00:00
dependencies = [
"cfg-if 1.0.0",
"crossbeam-epoch",
"crossbeam-utils",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "crossbeam-epoch"
2022-07-20 08:43:02 +00:00
version = "0.9.10"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"autocfg",
"cfg-if 1.0.0",
2021-02-23 15:10:14 +00:00
"crossbeam-utils",
"memoffset",
2022-07-20 08:43:02 +00:00
"once_cell",
2021-02-23 15:10:14 +00:00
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2022-07-20 08:43:02 +00:00
version = "0.8.11"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
2022-07-20 08:43:02 +00:00
"once_cell",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "crypto-common"
2022-07-20 08:43:02 +00:00
version = "0.1.6"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2021-02-23 15:10:14 +00:00
dependencies = [
2021-05-21 14:18:16 +00:00
"generic-array",
2022-03-02 10:07:23 +00:00
"typenum",
2021-02-23 15:10:14 +00:00
]
2022-05-07 14:39:18 +00:00
[[package]]
name = "ctr"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d14f329cfbaf5d0e06b5e87fff7e265d2673c5ea7d2c27691a2c107db1442a0"
dependencies = [
"cipher 0.4.3",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "curve25519-dalek"
2022-07-20 08:43:02 +00:00
version = "3.2.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "90f9d052967f590a76e62eb387bd0bbb1b000182c3cefe5364db6b7211651bc0"
2021-02-23 15:10:14 +00:00
dependencies = [
2021-06-22 09:04:40 +00:00
"byteorder",
"digest 0.9.0",
2021-06-22 09:04:40 +00:00
"rand_core 0.5.1",
"serde",
2021-06-22 09:04:40 +00:00
"subtle",
"zeroize",
2021-02-23 15:10:14 +00:00
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "darling"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4529658bdda7fd6769b8614be250cdcfc3aeb0ee72fe66f9e41e5e5eb73eac02"
dependencies = [
"darling_core",
"darling_macro",
2022-07-20 08:43:02 +00:00
]
[[package]]
name = "darling_core"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "649c91bc01e8b1eac09fb91e8dbc7d517684ca6be8ebc75bb9cafc894f9fdb6f"
dependencies = [
"fnv",
"ident_case",
"proc-macro2 1.0.43",
"quote 1.0.21",
2022-07-20 08:43:02 +00:00
"strsim 0.10.0",
"syn 1.0.99",
2022-07-20 08:43:02 +00:00
]
[[package]]
name = "darling_macro"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc69c5bfcbd2fc09a0f38451d2daf0e372e367986a83906d1b0dbc88134fb5"
dependencies = [
"darling_core",
"quote 1.0.21",
"syn 1.0.99",
2022-07-20 08:43:02 +00:00
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "dashmap"
version = "5.4.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
2022-07-20 08:43:02 +00:00
"hashbrown 0.12.3",
"lock_api",
"once_cell",
2022-07-20 08:43:02 +00:00
"parking_lot_core 0.9.3",
2021-02-23 15:10:14 +00:00
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "deflate"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174"
dependencies = [
"adler32",
"byteorder",
]
[[package]]
name = "der"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c"
dependencies = [
2022-07-20 08:43:02 +00:00
"const-oid",
2021-06-22 09:04:40 +00:00
]
[[package]]
name = "derivative"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2022-07-20 08:43:02 +00:00
]
[[package]]
name = "derive_builder"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3"
dependencies = [
"derive_builder_macro",
2022-07-20 08:43:02 +00:00
]
[[package]]
name = "derive_builder_core"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4"
dependencies = [
"darling",
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2022-07-20 08:43:02 +00:00
]
[[package]]
name = "derive_builder_macro"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68"
dependencies = [
"derive_builder_core",
"syn 1.0.99",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
2021-05-21 14:18:16 +00:00
"generic-array",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "digest"
2022-03-02 10:07:23 +00:00
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
dependencies = [
"block-buffer 0.10.3",
"crypto-common",
"subtle",
]
[[package]]
2022-07-20 08:43:02 +00:00
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
2022-07-20 08:43:02 +00:00
"dirs-sys",
]
[[package]]
2022-07-20 08:43:02 +00:00
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
]
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
2022-07-20 08:43:02 +00:00
[[package]]
name = "displaydoc"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886"
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2022-07-20 08:43:02 +00:00
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "ed25519"
2022-07-20 08:43:02 +00:00
version = "1.5.2"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "1e9c280362032ea4203659fc489832d0204ef09f247a0506f170dafcac08c369"
2021-06-22 09:04:40 +00:00
dependencies = [
"serde",
2021-06-22 09:04:40 +00:00
"signature",
]
[[package]]
name = "ed25519-dalek"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d"
dependencies = [
"curve25519-dalek",
"ed25519",
"rand 0.7.3",
"serde",
"serde_bytes",
"sha2 0.9.9",
2021-06-22 09:04:40 +00:00
"zeroize",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "either"
version = "1.8.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
2021-02-04 20:10:12 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "encoding_rs"
2022-07-20 08:43:02 +00:00
version = "0.8.31"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "enumflags2"
2022-07-20 08:43:02 +00:00
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "e75d4cd21b95383444831539909fbb14b9dc3fdceb2a6f5d36577329a1f55ccb"
dependencies = [
2022-02-14 20:53:11 +00:00
"enumflags2_derive",
"serde",
]
[[package]]
name = "enumflags2_derive"
2022-07-20 08:43:02 +00:00
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "f58dc3c5e468259f19f2d46304a6b28f1c3d034442e14b322d2b850e36f6d5ae"
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
]
[[package]]
name = "env_logger"
2022-01-19 22:16:01 +00:00
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
]
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2021-09-20 10:23:06 +00:00
[[package]]
name = "event-listener"
2022-07-20 08:43:02 +00:00
version = "2.5.3"
2021-09-20 10:23:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2021-09-20 10:23:06 +00:00
[[package]]
name = "fastrand"
2022-07-20 08:43:02 +00:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
dependencies = [
"instant",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "field-offset"
2021-05-18 15:14:08 +00:00
version = "0.3.4"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-18 15:14:08 +00:00
checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92"
2021-02-04 20:10:12 +00:00
dependencies = [
"memoffset",
2021-10-21 12:46:04 +00:00
"rustc_version",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form_urlencoded"
version = "1.1.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2021-02-23 15:10:14 +00:00
dependencies = [
"percent-encoding",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "fractal"
2022-09-24 17:21:32 +00:00
version = "5.0.0-alpha1"
2021-02-04 20:10:12 +00:00
dependencies = [
"ashpd",
"async-stream",
2021-04-27 10:25:31 +00:00
"futures",
"geo-uri",
2021-02-04 20:10:12 +00:00
"gettext-rs",
"gst-plugin-gtk4",
"gstreamer",
"gstreamer-base",
"gstreamer-player",
"gstreamer-video",
2021-02-04 20:10:12 +00:00
"gtk-macros",
"gtk4",
2021-04-20 17:20:16 +00:00
"html2pango",
"image",
"indexmap",
2021-02-12 23:11:59 +00:00
"libadwaita",
2022-02-14 20:53:11 +00:00
"libsecret",
"libshumate",
2021-02-04 20:10:12 +00:00
"log",
2021-02-23 15:10:14 +00:00
"matrix-sdk",
"mime",
"mime_guess",
"num_enum",
2021-02-04 20:10:12 +00:00
"once_cell",
"pulldown-cmark",
"qrcode",
2022-03-02 10:07:23 +00:00
"rand 0.8.5",
"regex",
"rqrr",
2022-03-29 13:45:13 +00:00
"ruma",
"secular",
"serde",
2021-02-23 15:10:14 +00:00
"serde_json",
2021-04-22 10:22:03 +00:00
"sourceview5",
2022-03-16 16:16:34 +00:00
"thiserror",
2021-02-23 15:10:14 +00:00
"tokio",
"tracing-subscriber",
"url",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "fragile"
2022-07-20 08:43:02 +00:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "85dcb89d2b10c5f6133de2efd8c11959ce9dbb46a2f7a4cab208c4eeda6ce1ab"
2021-02-23 15:10:14 +00:00
[[package]]
name = "fs2"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
dependencies = [
"libc",
"winapi",
]
[[package]]
2022-07-20 08:43:02 +00:00
name = "fs_extra"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
2021-04-20 17:20:16 +00:00
[[package]]
name = "futf"
2022-03-02 10:07:23 +00:00
version = "0.1.5"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
2021-04-20 17:20:16 +00:00
dependencies = [
"mac",
"new_debug_unreachable",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "futures"
version = "0.3.24"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f21eda599937fba36daeb58a22e8f5cee2d14c4a17b5b7739c7c8e5e3b8230c"
2021-02-23 15:10:14 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "futures-channel"
version = "0.3.24"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30bdd20c28fadd505d0fd6712cdfcb0d4b5648baf45faef7f852afb2399bb050"
2021-02-04 20:10:12 +00:00
dependencies = [
"futures-core",
2021-02-23 15:10:14 +00:00
"futures-sink",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "futures-core"
version = "0.3.24"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
2021-02-04 20:10:12 +00:00
[[package]]
name = "futures-executor"
version = "0.3.24"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ff63c23854bee61b6e9cd331d523909f238fc7636290b96826e9cfa5faa00ab"
2021-02-04 20:10:12 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.24"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbf4d2a7a308fd4578637c0b17c7e1c7ba127b8f6ba00b29f717e9655d85eb68"
2021-02-04 20:10:12 +00:00
[[package]]
name = "futures-lite"
2021-06-03 17:22:29 +00:00
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-03 17:22:29 +00:00
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "futures-macro"
version = "0.3.24"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42cd15d1c7456c04dbdf7e88bcd69760d74f3a798d6444e16974b505b0e62f17"
2021-02-23 15:10:14 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
]
[[package]]
name = "futures-signals"
version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3acc659ba666cff13fdf65242d16428f2f11935b688f82e4024ad39667a5132"
dependencies = [
"discard",
"futures-channel",
"futures-core",
"futures-util",
"pin-project",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "futures-sink"
version = "0.3.24"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
2021-02-23 15:10:14 +00:00
2021-02-04 20:10:12 +00:00
[[package]]
name = "futures-task"
version = "0.3.24"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6508c467c73851293f390476d4491cf4d227dbabcd4170f3bb6044959b294f1"
2021-02-04 20:10:12 +00:00
[[package]]
name = "futures-util"
version = "0.3.24"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44fb6cb1be61cc1d2e43b262516aafcf63b241cffdb1d3fa115f91d9c7b09c90"
2021-02-04 20:10:12 +00:00
dependencies = [
2021-02-23 15:10:14 +00:00
"futures-channel",
2021-02-04 20:10:12 +00:00
"futures-core",
2021-02-23 15:10:14 +00:00
"futures-io",
"futures-macro",
"futures-sink",
2021-02-04 20:10:12 +00:00
"futures-task",
2021-02-23 15:10:14 +00:00
"memchr",
2021-02-04 20:10:12 +00:00
"pin-project-lite",
"pin-utils",
"slab",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "g2gen"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fc100b16c63808c5c388cd23ff94c5a35cf28ea459f336323f7948a39480555"
dependencies = [
"g2poly",
"proc-macro2 0.4.30",
"quote 0.6.13",
"syn 0.15.44",
]
[[package]]
name = "g2p"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf09bc632629cbe5420b330e45bcc8f80403e74ba1027d213258914fd5c62755"
dependencies = [
"g2gen",
"g2poly",
]
[[package]]
name = "g2poly"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e837767888fca507f07e89c90e0b350da7bbb89170f67a4655dc9bdc4cca457b"
2021-02-04 20:10:12 +00:00
[[package]]
name = "gdk-pixbuf"
2022-07-20 08:43:02 +00:00
version = "0.15.11"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a"
2021-02-04 20:10:12 +00:00
dependencies = [
"bitflags",
2021-02-04 20:10:12 +00:00
"gdk-pixbuf-sys",
"gio",
"glib",
"libc",
]
[[package]]
name = "gdk-pixbuf-sys"
2022-07-20 08:43:02 +00:00
version = "0.15.10"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7"
2021-02-04 20:10:12 +00:00
dependencies = [
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "gdk4"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "4fabb7cf843c26b085a5d68abb95d0c0bf27a9ae2eeff9c4adb503a1eb580876"
2021-02-04 20:10:12 +00:00
dependencies = [
"bitflags",
"cairo-rs",
"gdk-pixbuf",
"gdk4-sys",
"gio",
"glib",
"libc",
"pango",
]
[[package]]
name = "gdk4-sys"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "efe7dcb44f5c00aeabff3f69abfc5673de46559070f89bd3fbb7b66485d9cef2"
2021-02-04 20:10:12 +00:00
dependencies = [
"cairo-sys-rs",
"gdk-pixbuf-sys",
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
"pango-sys",
"pkg-config",
2022-07-20 08:43:02 +00:00
"system-deps",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "gdk4-wayland"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "cf81f00824c5f9862764c18ef061efe12b9c4f10614f74d3eaf1f18852c335e2"
dependencies = [
"gdk4",
"gdk4-wayland-sys",
"gio",
"glib",
"libc",
]
[[package]]
name = "gdk4-wayland-sys"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "41f2375ec73e2ec6815cdf1da330ff2e020b46fab9057d1e06f44909f1789898"
dependencies = [
"glib-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
]
[[package]]
name = "gdk4-x11"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "be84e388c6b74cce3f9232904ce87ae1857ee3a41a20d9d8a16ae8792799b27c"
dependencies = [
"gdk4",
"gdk4-x11-sys",
"gio",
"glib",
"libc",
]
[[package]]
name = "gdk4-x11-sys"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "3f85f9dabcc847c0733246822bebb476dcbb93f5a964d561b46b69f00fdbbf44"
dependencies = [
"gdk4-sys",
"glib-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "generic-array"
version = "0.14.6"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
2021-02-23 15:10:14 +00:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "geo-uri"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75b28b0f9cef67676b9380cd7a918678a10d2c6bb64e5b6ac2f6a1bd41249b9"
dependencies = [
2022-10-05 14:09:12 +00:00
"derive_builder",
"thiserror",
]
[[package]]
name = "getopts"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
dependencies = [
"unicode-width",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if 1.0.0",
"js-sys",
2021-04-20 17:20:16 +00:00
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
"wasm-bindgen",
2021-04-20 17:20:16 +00:00
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "getrandom"
2022-07-20 08:43:02 +00:00
version = "0.2.7"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
2021-02-23 15:10:14 +00:00
"js-sys",
"libc",
2022-07-20 08:43:02 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
2021-02-23 15:10:14 +00:00
"wasm-bindgen",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "gettext-rs"
2021-06-29 07:38:00 +00:00
version = "0.7.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-29 07:38:00 +00:00
checksum = "e49ea8a8fad198aaa1f9655a2524b64b70eb06b2f3ff37da407566c93054f364"
2021-02-04 20:10:12 +00:00
dependencies = [
"gettext-sys",
"locale_config",
]
[[package]]
name = "gettext-sys"
2022-07-20 08:43:02 +00:00
version = "0.21.3"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "c63ce2e00f56a206778276704bbe38564c8695249fdc8f354b4ef71c57c3839d"
2021-02-04 20:10:12 +00:00
dependencies = [
"cc",
2021-08-13 20:58:17 +00:00
"temp-dir",
2021-02-04 20:10:12 +00:00
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "gif"
2022-07-20 08:43:02 +00:00
version = "0.11.4"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06"
2021-06-22 09:04:40 +00:00
dependencies = [
"color_quant",
"weezl",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "gio"
2022-07-20 08:43:02 +00:00
version = "0.15.12"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b"
2021-02-04 20:10:12 +00:00
dependencies = [
"bitflags",
"futures-channel",
"futures-core",
"futures-io",
"gio-sys",
"glib",
"libc",
"once_cell",
"thiserror",
]
[[package]]
name = "gio-sys"
2022-07-20 08:43:02 +00:00
version = "0.15.10"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d"
2021-02-04 20:10:12 +00:00
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
2021-02-04 20:10:12 +00:00
"winapi",
]
[[package]]
name = "glib"
2022-07-20 08:43:02 +00:00
version = "0.15.12"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d"
2021-02-04 20:10:12 +00:00
dependencies = [
"bitflags",
"futures-channel",
"futures-core",
"futures-executor",
"futures-task",
"glib-macros",
"glib-sys",
"gobject-sys",
"libc",
"once_cell",
"smallvec",
"thiserror",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "glib-macros"
2022-07-20 08:43:02 +00:00
version = "0.15.11"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "25a68131a662b04931e71891fb14aaf65ee4b44d08e8abc10f49e77418c86c64"
2021-02-04 20:10:12 +00:00
dependencies = [
"anyhow",
2022-07-20 08:43:02 +00:00
"heck",
2022-02-14 20:53:11 +00:00
"proc-macro-crate",
2021-02-04 20:10:12 +00:00
"proc-macro-error",
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "glib-sys"
2022-07-20 08:43:02 +00:00
version = "0.15.10"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
2021-02-04 20:10:12 +00:00
dependencies = [
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2021-02-04 20:10:12 +00:00
[[package]]
name = "gobject-sys"
2022-07-20 08:43:02 +00:00
version = "0.15.10"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
2021-02-04 20:10:12 +00:00
dependencies = [
"glib-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "graphene-rs"
version = "0.15.1"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c54f9fbbeefdb62c99f892dfca35f83991e2cb5b46a8dc2a715e58612f85570"
2021-02-04 20:10:12 +00:00
dependencies = [
"glib",
"graphene-sys",
"libc",
]
[[package]]
name = "graphene-sys"
2022-07-20 08:43:02 +00:00
version = "0.15.10"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "fa691fc7337ba1df599afb55c3bcb85c04f1b3f17362570e9bb0ff0d1bc3028a"
2021-02-04 20:10:12 +00:00
dependencies = [
"glib-sys",
"libc",
"pkg-config",
2022-07-20 08:43:02 +00:00
"system-deps",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "gsk4"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "05e9020d333280b3aa38d496495bfa9b50712eebf1ad63f0ec5bcddb5eb61be4"
2021-02-04 20:10:12 +00:00
dependencies = [
"bitflags",
"cairo-rs",
"gdk4",
"glib",
"graphene-rs",
"gsk4-sys",
"libc",
"pango",
]
[[package]]
name = "gsk4-sys"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "7add39ccf60078508c838643a2dcc91f045c46ed63b5ea6ab701b2e25bda3fea"
2021-02-04 20:10:12 +00:00
dependencies = [
"cairo-sys-rs",
"gdk4-sys",
"glib-sys",
"gobject-sys",
"graphene-sys",
"libc",
"pango-sys",
2022-07-20 08:43:02 +00:00
"system-deps",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "gst-plugin-gtk4"
2022-03-02 10:07:23 +00:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "e62e047edb1932887c20105c681203d138ebeb61b83b9e0b368cdec1d0fbc0cc"
dependencies = [
"fragile",
"gst-plugin-version-helper",
"gstreamer",
"gstreamer-base",
"gstreamer-video",
"gtk4",
"once_cell",
]
[[package]]
name = "gst-plugin-version-helper"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a6a4dd1cb931cc6b49af354a68f21b3aee46b5b07370215d942f3a71542123f"
dependencies = [
"chrono",
]
[[package]]
name = "gstreamer"
2022-07-20 08:43:02 +00:00
version = "0.18.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "d66363bacf5e4f6eb281564adc2902e44c52ae5c45082423e7439e9012b75456"
dependencies = [
"bitflags",
"cfg-if 1.0.0",
"futures-channel",
"futures-core",
"futures-util",
"glib",
"gstreamer-sys",
"libc",
"muldiv",
"num-integer",
2022-07-20 08:43:02 +00:00
"num-rational 0.4.1",
"once_cell",
"option-operations",
"paste",
"pretty-hex",
"thiserror",
]
[[package]]
name = "gstreamer-base"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "224f35f36582407caf58ded74854526beeecc23d0cf64b8d1c3e00584ed6863f"
dependencies = [
"bitflags",
"cfg-if 1.0.0",
"glib",
"gstreamer",
"gstreamer-base-sys",
"libc",
]
[[package]]
name = "gstreamer-base-sys"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a083493c3c340e71fa7c66eebda016e9fafc03eb1b4804cf9b2bad61994b078e"
dependencies = [
"glib-sys",
"gobject-sys",
"gstreamer-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
]
[[package]]
name = "gstreamer-player"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f14ee02352ba73cadebe640bfb33f12fe8d03cbcad816a102d55a0251fb99bb"
dependencies = [
"bitflags",
"glib",
"gstreamer",
"gstreamer-player-sys",
"gstreamer-video",
"libc",
"once_cell",
]
[[package]]
name = "gstreamer-player-sys"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f9b674b39a4d0e18710f6e3d2b109f1793d8028ee4e39da3909b55b4529d399"
dependencies = [
"glib-sys",
"gobject-sys",
"gstreamer-sys",
"gstreamer-video-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
]
[[package]]
name = "gstreamer-sys"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3517a65d3c2e6f8905b456eba5d53bda158d664863aef960b44f651cb7d33e2"
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
]
[[package]]
name = "gstreamer-video"
2022-07-20 08:43:02 +00:00
version = "0.18.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "9418adfc72dafa1ad9eb106527ce4804887d101027c4528ec28c7d29cc899519"
dependencies = [
"bitflags",
"cfg-if 1.0.0",
"futures-channel",
"glib",
"gstreamer",
"gstreamer-base",
"gstreamer-video-sys",
"libc",
"once_cell",
]
[[package]]
name = "gstreamer-video-sys"
2022-03-02 10:07:23 +00:00
version = "0.18.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "33331b1675e73b5b000c796354278eca7fdde9327015971d9f41afe28b96e0dc"
dependencies = [
"glib-sys",
"gobject-sys",
"gstreamer-base-sys",
"gstreamer-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "gtk-macros"
2021-06-29 07:38:00 +00:00
version = "0.3.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-29 07:38:00 +00:00
checksum = "da5bf7748fd4cd0b2490df8debcc911809dbcbee4ece9531b96c29a9c729de5a"
2021-02-04 20:10:12 +00:00
[[package]]
name = "gtk4"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "c64f0c2a3d80e899dc3febddad5bac193ffcf74a0fd7e31037f30dd34d6f7396"
2021-02-04 20:10:12 +00:00
dependencies = [
"bitflags",
"cairo-rs",
"field-offset",
"futures-channel",
"gdk-pixbuf",
"gdk4",
"gio",
"glib",
"graphene-rs",
"gsk4",
"gtk4-macros",
"gtk4-sys",
"libc",
"once_cell",
"pango",
]
[[package]]
name = "gtk4-macros"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "fafbcc920af4eb677d7d164853e7040b9de5a22379c596f570190c675d45f7a7"
2021-02-04 20:10:12 +00:00
dependencies = [
"anyhow",
2022-02-14 20:53:11 +00:00
"proc-macro-crate",
2021-02-04 20:10:12 +00:00
"proc-macro-error",
"proc-macro2 1.0.43",
2022-07-20 08:43:02 +00:00
"quick-xml",
"quote 1.0.21",
"syn 1.0.99",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "gtk4-sys"
2022-07-20 08:43:02 +00:00
version = "0.4.8"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "5bc8006eea634b7c72da3ff79e24606e45f21b3b832a3c5a1f543f5f97eb0f63"
2021-02-04 20:10:12 +00:00
dependencies = [
"cairo-sys-rs",
"gdk-pixbuf-sys",
"gdk4-sys",
"gio-sys",
"glib-sys",
"gobject-sys",
"graphene-sys",
"gsk4-sys",
"libc",
"pango-sys",
2022-07-20 08:43:02 +00:00
"system-deps",
2021-02-04 20:10:12 +00:00
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "h2"
version = "0.3.14"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca32592cf21ac7ccab1825cd87f6c9b3d9022c44d086172ed0966bec8af30be"
2021-02-23 15:10:14 +00:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util 0.7.4",
2021-02-23 15:10:14 +00:00
"tracing",
]
[[package]]
name = "hashbrown"
2021-08-13 20:58:17 +00:00
version = "0.11.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 20:58:17 +00:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2021-05-28 09:04:33 +00:00
dependencies = [
"ahash",
]
2021-02-23 15:10:14 +00:00
2022-07-20 08:43:02 +00:00
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
dependencies = [
"ahash",
]
2022-02-03 16:20:49 +00:00
[[package]]
name = "headers"
version = "0.3.8"
2022-02-03 16:20:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584"
2022-02-03 16:20:49 +00:00
dependencies = [
"base64",
"bitflags",
"bytes",
"headers-core",
"http",
"httpdate",
"mime",
"sha1 0.10.4",
2022-02-03 16:20:49 +00:00
]
[[package]]
name = "headers-core"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
dependencies = [
"http",
]
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
2021-02-04 20:10:12 +00:00
[[package]]
name = "hermit-abi"
2021-06-29 07:38:00 +00:00
version = "0.1.19"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-29 07:38:00 +00:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2021-02-04 20:10:12 +00:00
dependencies = [
"libc",
]
[[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.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
dependencies = [
"hmac",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "hmac"
2022-03-02 10:07:23 +00:00
version = "0.12.1"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
2021-06-22 09:04:40 +00:00
dependencies = [
2022-03-02 10:07:23 +00:00
"digest 0.10.3",
2021-02-23 15:10:14 +00:00
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "html2pango"
version = "0.5.0"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e22f189d26bf7cf4652dbe49da86f3a27628f745469365f1d2575ea8caf54eaf"
2021-04-20 17:20:16 +00:00
dependencies = [
"ammonia",
"anyhow",
"html5ever 0.26.0",
2021-04-20 17:20:16 +00:00
"linkify",
"maplit",
"markup5ever_rcdom",
"once_cell",
2021-04-20 17:20:16 +00:00
"regex",
]
[[package]]
name = "html5ever"
2022-07-20 08:43:02 +00:00
version = "0.25.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
dependencies = [
"log",
"mac",
"markup5ever 0.10.1",
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2022-07-20 08:43:02 +00:00
]
[[package]]
name = "html5ever"
version = "0.26.0"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
2021-04-20 17:20:16 +00:00
dependencies = [
"log",
"mac",
2022-07-20 08:43:02 +00:00
"markup5ever 0.11.0",
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-04-20 17:20:16 +00:00
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "http"
2022-07-20 08:43:02 +00:00
version = "0.2.8"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
2021-02-23 15:10:14 +00:00
dependencies = [
"bytes",
"fnv",
2022-03-10 14:41:47 +00:00
"itoa",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "http-body"
2022-07-20 08:43:02 +00:00
version = "0.4.5"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2021-02-23 15:10:14 +00:00
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
version = "1.8.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2021-02-23 15:10:14 +00:00
[[package]]
name = "httpdate"
2022-01-19 22:16:01 +00:00
version = "1.0.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-02-23 15:10:14 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2021-02-23 15:10:14 +00:00
[[package]]
name = "hyper"
2022-07-20 08:43:02 +00:00
version = "0.14.20"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "02c929dc5c39e335a03c405292728118860721b10190d98c2a0f0efd5baafbac"
2021-02-23 15:10:14 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
2022-03-10 14:41:47 +00:00
"itoa",
2021-06-03 17:22:29 +00:00
"pin-project-lite",
2021-04-20 17:06:36 +00:00
"socket2",
2021-02-23 15:10:14 +00:00
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
]
[[package]]
name = "iana-time-zone"
version = "0.1.47"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c495f162af0bf17656d0014a0eded5f3cd2f365fdd204548c2869db89359dc7"
dependencies = [
"android_system_properties",
"core-foundation-sys",
"js-sys",
"once_cell",
"wasm-bindgen",
"winapi",
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2021-02-23 15:10:14 +00:00
[[package]]
name = "idna"
version = "0.3.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
2021-02-23 15:10:14 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "image"
version = "0.23.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1"
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"gif",
"jpeg-decoder",
"num-iter",
"num-rational 0.3.2",
2021-06-22 09:04:40 +00:00
"num-traits",
"png",
"scoped_threadpool",
"tiff",
]
2022-05-07 14:39:18 +00:00
[[package]]
name = "indexed_db_futures"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d26ac735f676c52305becf53264b91cea9866a8de61ccbf464405b377b9cbca9"
2022-05-07 14:39:18 +00:00
dependencies = [
"cfg-if 1.0.0",
"js-sys",
"uuid 0.8.2",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "indexmap"
2022-07-20 08:43:02 +00:00
version = "1.9.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2021-02-23 15:10:14 +00:00
dependencies = [
"autocfg",
2022-07-20 08:43:02 +00:00
"hashbrown 0.12.3",
"serde",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "inout"
2022-07-20 08:43:02 +00:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"block-padding",
"generic-array",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "instant"
2021-10-21 12:46:04 +00:00
version = "0.1.12"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 12:46:04 +00:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
2021-02-23 15:10:14 +00:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "ipnet"
2022-07-20 08:43:02 +00:00
version = "2.5.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2021-02-23 15:10:14 +00:00
2021-02-12 23:11:59 +00:00
[[package]]
name = "itertools"
2022-01-19 22:16:01 +00:00
version = "0.10.3"
2021-02-12 23:11:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
2021-02-12 23:11:59 +00:00
dependencies = [
"either",
]
2022-01-19 22:16:01 +00:00
[[package]]
name = "itoa"
version = "1.0.3"
2022-01-19 22:16:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754"
2022-01-19 22:16:01 +00:00
2021-06-22 09:04:40 +00:00
[[package]]
name = "jpeg-decoder"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2"
dependencies = [
"rayon",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "js-sys"
version = "0.3.60"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
2021-02-23 15:10:14 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "js_int"
2022-07-20 08:43:02 +00:00
version = "0.2.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "d937f95470b270ce8b8950207715d71aa8e153c0d44c6684d59397ed4949160a"
2021-02-23 15:10:14 +00:00
dependencies = [
"serde",
]
2022-05-07 14:39:18 +00:00
[[package]]
name = "js_option"
2022-07-20 08:43:02 +00:00
version = "0.1.1"
2022-05-07 14:39:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "68421373957a1593a767013698dbf206e2b221eefe97a44d98d18672ff38423c"
2022-05-07 14:39:18 +00:00
dependencies = [
"serde",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2021-02-12 23:11:59 +00:00
[[package]]
name = "libadwaita"
2022-09-28 13:24:18 +00:00
version = "0.2.0-alpha.3"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 13:24:18 +00:00
checksum = "73815fa30ca62d1db2713fe87cfd1cea41cad076ccdece6bb8328032db152f47"
2021-02-12 23:11:59 +00:00
dependencies = [
2022-09-28 13:24:18 +00:00
"bitflags",
2022-07-22 09:25:51 +00:00
"futures-channel",
2021-02-12 23:11:59 +00:00
"gdk-pixbuf",
"gdk4",
"gio",
"glib",
"gtk4",
"libadwaita-sys",
"libc",
2021-09-30 13:20:04 +00:00
"once_cell",
2021-02-12 23:11:59 +00:00
"pango",
]
[[package]]
name = "libadwaita-sys"
2022-09-28 13:24:18 +00:00
version = "0.2.0-alpha.3"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-28 13:24:18 +00:00
checksum = "b91960ec236b6fecdace0491ae1e4aac938d1c6adffd5939f811f3ed6592a59e"
dependencies = [
"gdk4-sys",
"gio-sys",
"glib-sys",
"gobject-sys",
"gtk4-sys",
"libc",
2022-09-28 13:24:18 +00:00
"pango-sys",
2022-07-20 08:43:02 +00:00
"system-deps",
]
[[package]]
name = "libc"
version = "0.2.132"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
[[package]]
name = "libloading"
2022-01-19 22:16:01 +00:00
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
dependencies = [
"cfg-if 1.0.0",
"winapi",
]
2022-02-14 20:53:11 +00:00
[[package]]
name = "libsecret"
2022-04-06 08:05:22 +00:00
version = "0.1.4"
2022-02-14 20:53:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-06 08:05:22 +00:00
checksum = "d4af5a2342942fa42d706a424e9f9914287fb8317132750fd73a241140ac38c1"
2022-02-14 20:53:11 +00:00
dependencies = [
"bitflags",
"gio",
"glib",
"libc",
"libsecret-sys",
"once_cell",
]
[[package]]
name = "libsecret-sys"
2022-07-20 08:43:02 +00:00
version = "0.1.4"
2022-02-14 20:53:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "b630bef24b542dc1609a14c56b9267c147dbef1ee7ad08fb1a852a07c17d492d"
2022-02-14 20:53:11 +00:00
dependencies = [
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
"pkg-config",
2022-07-20 08:43:02 +00:00
"system-deps",
2022-02-14 20:53:11 +00:00
]
[[package]]
name = "libshumate"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98d639cc071d690528a31b989faf3dce5f283914fab6c63c73d374e25ebd3a70"
dependencies = [
"gdk-pixbuf",
"gdk4",
"gio",
"glib",
"gtk4",
"libc",
"libshumate-sys",
"once_cell",
]
[[package]]
name = "libshumate-sys"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a96fd7b69b23af97452a1b09ecc3eb012e6585f3ce18dc774a8a20b95ae9e57"
dependencies = [
"gdk-pixbuf-sys",
"gdk4-sys",
"gio-sys",
"glib-sys",
"gobject-sys",
"gtk4-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
]
[[package]]
name = "libspa"
2022-07-20 08:43:02 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "a8bb02bbc8d550e2f0a31989c61e1ac3c883bab2edee49ffcb5d5ca18266786d"
2021-02-12 23:11:59 +00:00
dependencies = [
"bitflags",
"cc",
"cookie-factory",
"errno",
2021-02-12 23:11:59 +00:00
"libc",
"libspa-sys",
2022-07-20 08:43:02 +00:00
"nom",
"system-deps",
2021-02-12 23:11:59 +00:00
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "libspa-sys"
2022-07-20 08:43:02 +00:00
version = "0.5.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "9e8d2e38d6cdd10d7d78eb0cb409c127cf16da2c296d9623375551e309616d4d"
dependencies = [
"bindgen",
2022-07-20 08:43:02 +00:00
"system-deps",
]
2021-02-04 20:10:12 +00:00
2021-04-20 17:20:16 +00:00
[[package]]
name = "linkify"
version = "0.9.0"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96dd5884008358112bc66093362197c7248ece00d46624e2cf71e50029f8cff5"
2021-04-20 17:20:16 +00:00
dependencies = [
"memchr",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "locale_config"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d2c35b16f4483f6c26f0e4e9550717a2f6575bcd6f12a53ff0c490a94a6934"
dependencies = [
"lazy_static",
"objc",
"objc-foundation",
"regex",
"winapi",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "lock_api"
version = "0.4.8"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f80bf5aacaf25cbfc8210d1cfb718f2bf3b11c4c54e5afe36c236853a8ec390"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"autocfg",
2021-02-23 15:10:14 +00:00
"scopeguard",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "log"
2022-07-20 08:43:02 +00:00
version = "0.4.17"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2021-02-04 20:10:12 +00:00
dependencies = [
"cfg-if 1.0.0",
2021-02-04 20:10:12 +00:00
]
2021-05-28 09:04:33 +00:00
[[package]]
name = "lru"
2021-08-13 20:58:17 +00:00
version = "0.6.6"
2021-05-28 09:04:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 20:58:17 +00:00
checksum = "7ea2d928b485416e8908cff2d97d621db22b27f7b3b6729e438bcf42c671ba91"
2021-05-28 09:04:33 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"hashbrown 0.11.2",
2021-05-28 09:04:33 +00:00
]
[[package]]
name = "lru"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936d98d2ddd79c18641c6709e7bb09981449694e402d1a0f0f657ea8d61f4a51"
dependencies = [
2022-07-20 08:43:02 +00:00
"hashbrown 0.12.3",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
2021-02-04 20:10:12 +00:00
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
dependencies = [
"libc",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "maplit"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
2021-04-20 17:20:16 +00:00
[[package]]
name = "markup5ever"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
dependencies = [
"log",
2022-07-20 08:43:02 +00:00
"phf 0.8.0",
"phf_codegen 0.8.0",
"string_cache",
"string_cache_codegen",
"tendril",
]
[[package]]
name = "markup5ever"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
dependencies = [
"log",
"phf 0.10.1",
"phf_codegen 0.10.0",
2021-04-20 17:20:16 +00:00
"string_cache",
"string_cache_codegen",
"tendril",
]
[[package]]
name = "markup5ever_rcdom"
version = "0.2.0"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9521dd6750f8e80ee6c53d65e2e4656d7de37064f3a7a5d2d11d05df93839c2"
2021-04-20 17:20:16 +00:00
dependencies = [
"html5ever 0.26.0",
"markup5ever 0.11.0",
2021-04-20 17:20:16 +00:00
"tendril",
"xml5ever",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "matrix-sdk"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37a075b2690bc305ca02755a868cfa9f9779cfc2353f7184f3cf1a0a405ecdb2"
2021-02-23 15:10:14 +00:00
dependencies = [
2021-11-24 14:28:23 +00:00
"anymap2",
2022-05-07 14:39:18 +00:00
"async-once-cell",
2021-09-20 10:23:06 +00:00
"async-stream",
2022-05-07 14:39:18 +00:00
"async-trait",
2021-02-23 15:10:14 +00:00
"backoff",
2021-05-06 22:24:54 +00:00
"bytes",
2021-02-23 15:10:14 +00:00
"dashmap",
"derive_builder",
2021-09-20 10:23:06 +00:00
"event-listener",
2021-11-24 14:28:23 +00:00
"futures-core",
"futures-signals",
2021-11-24 14:28:23 +00:00
"futures-util",
2021-02-23 15:10:14 +00:00
"http",
"matrix-sdk-base",
"matrix-sdk-common",
2022-05-07 14:39:18 +00:00
"matrix-sdk-indexeddb",
2022-03-10 14:41:47 +00:00
"matrix-sdk-sled",
2021-02-23 15:10:14 +00:00
"mime",
2022-02-03 16:20:49 +00:00
"rand 0.8.5",
2021-02-23 15:10:14 +00:00
"reqwest",
2021-06-03 17:22:29 +00:00
"ruma",
2021-09-20 10:23:06 +00:00
"serde",
2021-02-23 15:10:14 +00:00
"serde_json",
"thiserror",
"tokio",
2022-02-03 16:20:49 +00:00
"tokio-stream",
2021-02-23 15:10:14 +00:00
"tracing",
"url",
2022-02-03 16:20:49 +00:00
"warp",
2022-05-07 14:39:18 +00:00
"wasm-timer",
2021-02-23 15:10:14 +00:00
"zeroize",
]
[[package]]
name = "matrix-sdk-base"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de51f1662779739e7a74677f37cdf744a2c82dfb7618e89d5e18967a4540181b"
2021-02-23 15:10:14 +00:00
dependencies = [
"async-stream",
2022-05-07 14:39:18 +00:00
"async-trait",
2021-02-23 15:10:14 +00:00
"dashmap",
"futures-channel",
2021-11-24 14:28:23 +00:00
"futures-core",
"futures-signals",
2021-11-24 14:28:23 +00:00
"futures-util",
"lru 0.8.0",
2021-02-23 15:10:14 +00:00
"matrix-sdk-common",
"matrix-sdk-crypto",
2022-05-27 15:15:32 +00:00
"once_cell",
2021-06-03 17:22:29 +00:00
"ruma",
2021-02-23 15:10:14 +00:00
"serde",
"serde_json",
"thiserror",
"tracing",
"zeroize",
]
[[package]]
name = "matrix-sdk-common"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b85a6a743cc9dcf9385e61a26db78276078beddd27f3762d9d82baa2030695f1"
2021-02-23 15:10:14 +00:00
dependencies = [
2021-11-24 14:28:23 +00:00
"async-lock",
2022-07-20 08:43:02 +00:00
"futures-core",
2021-11-24 14:28:23 +00:00
"futures-util",
2021-02-23 15:10:14 +00:00
"instant",
"ruma",
"serde",
"tokio",
"wasm-bindgen-futures",
2022-07-20 08:43:02 +00:00
"wasm-timer",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "matrix-sdk-crypto"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68fa699e8dd54578a4b92e3fcd18a50da8e415a0c042da1706b0330fc2d8f949"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-05-13 10:18:52 +00:00
"aes",
2022-05-07 14:39:18 +00:00
"async-trait",
2021-02-23 15:10:14 +00:00
"atomic",
"base64",
"byteorder",
2022-05-13 10:18:52 +00:00
"ctr",
2021-02-23 15:10:14 +00:00
"dashmap",
2022-07-20 08:43:02 +00:00
"event-listener",
2021-11-24 14:28:23 +00:00
"futures-util",
2022-02-14 20:53:11 +00:00
"hmac",
2021-02-23 15:10:14 +00:00
"matrix-sdk-common",
2022-05-13 10:18:52 +00:00
"matrix-sdk-qrcode",
2021-02-23 15:10:14 +00:00
"pbkdf2",
2022-03-02 10:07:23 +00:00
"rand 0.8.5",
2021-06-03 17:22:29 +00:00
"ruma",
2021-02-23 15:10:14 +00:00
"serde",
"serde_json",
"sha2 0.10.5",
2021-02-23 15:10:14 +00:00
"thiserror",
2022-07-20 08:43:02 +00:00
"tokio",
2021-02-23 15:10:14 +00:00
"tracing",
"vodozemac",
2021-02-23 15:10:14 +00:00
"zeroize",
]
2022-05-07 14:39:18 +00:00
[[package]]
name = "matrix-sdk-indexeddb"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7847d36bba832bc787214323bc042b71dca7fdf2aee9f0e3eb573b64f2f7eb7f"
2022-05-07 14:39:18 +00:00
dependencies = [
"anyhow",
"async-trait",
"base64",
"dashmap",
"derive_builder",
2022-05-07 14:39:18 +00:00
"futures-util",
2022-07-20 08:43:02 +00:00
"getrandom 0.2.7",
2022-05-07 14:39:18 +00:00
"indexed_db_futures",
2022-07-20 08:43:02 +00:00
"js-sys",
2022-05-07 14:39:18 +00:00
"matrix-sdk-base",
"matrix-sdk-crypto",
"matrix-sdk-store-encryption",
"ruma",
"serde",
"serde_json",
"thiserror",
"tracing",
"wasm-bindgen",
"web-sys",
]
2022-05-13 10:18:52 +00:00
[[package]]
name = "matrix-sdk-qrcode"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d517e51c23cb47139e25452289c3c57b3005565c066a98d196eac8d8d2d2959"
2022-05-13 10:18:52 +00:00
dependencies = [
"base64",
"byteorder",
"qrcode",
"ruma-common",
"thiserror",
"vodozemac",
]
2022-03-10 14:41:47 +00:00
[[package]]
name = "matrix-sdk-sled"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ded5a703ad8a82b8edfde808228711315c8761a5fbf7ac2b98ab4951dadd066"
2022-03-10 14:41:47 +00:00
dependencies = [
"async-stream",
2022-05-07 14:39:18 +00:00
"async-trait",
2022-03-10 14:41:47 +00:00
"dashmap",
"derive_builder",
2022-07-20 08:43:02 +00:00
"fs_extra",
2022-03-10 14:41:47 +00:00
"futures-core",
"futures-util",
"matrix-sdk-base",
"matrix-sdk-common",
"matrix-sdk-crypto",
"matrix-sdk-store-encryption",
2022-05-07 14:39:18 +00:00
"ruma",
2022-03-10 14:41:47 +00:00
"serde",
"serde_json",
"sled",
"thiserror",
"tokio",
"tracing",
]
[[package]]
name = "matrix-sdk-store-encryption"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ddee75c3cca58f3a323283dc4e849d19d52988903f907ed0fb53dcad5d6fd25"
dependencies = [
"blake3",
"chacha20poly1305",
"displaydoc",
"hmac",
"pbkdf2",
"rand 0.8.5",
"serde",
"serde_json",
"sha2 0.10.5",
"thiserror",
"zeroize",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "memchr"
2022-07-20 08:43:02 +00:00
version = "2.5.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-02-04 20:10:12 +00:00
[[package]]
name = "memoffset"
2022-01-19 22:16:01 +00:00
version = "0.6.5"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2021-02-04 20:10:12 +00:00
dependencies = [
"autocfg",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
[[package]]
name = "mime_guess"
2022-03-02 10:07:23 +00:00
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
2022-01-19 22:16:01 +00:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2021-06-22 09:04:40 +00:00
[[package]]
name = "miniz_oxide"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
dependencies = [
"adler32",
]
[[package]]
name = "miniz_oxide"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
dependencies = [
"adler",
"autocfg",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "mio"
2022-07-20 08:43:02 +00:00
version = "0.8.4"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
2021-02-23 15:10:14 +00:00
dependencies = [
"libc",
"log",
2022-07-20 08:43:02 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "muldiv"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5136edda114182728ccdedb9f5eda882781f35fa6e80cc360af12a8932507f3"
2021-02-23 15:10:14 +00:00
[[package]]
name = "native-tls"
2022-07-20 08:43:02 +00:00
version = "0.2.10"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "fd7e2f3618557f980e0b17e8856252eee3c97fa12c54dff0ca290fb6266ca4a9"
2021-02-23 15:10:14 +00:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
[[package]]
name = "nix"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce"
dependencies = [
"bitflags",
"cc",
"cfg-if 0.1.10",
"libc",
"void",
]
[[package]]
name = "nix"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
dependencies = [
"bitflags",
"cc",
"cfg-if 1.0.0",
"libc",
"memoffset",
]
[[package]]
name = "nom"
2022-07-20 08:43:02 +00:00
version = "7.1.1"
2022-01-19 22:16:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
2022-01-19 22:16:01 +00:00
dependencies = [
"memchr",
"minimal-lexical",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "num-integer"
2022-07-20 08:43:02 +00:00
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-iter"
2022-07-20 08:43:02 +00:00
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
2022-07-20 08:43:02 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2022-07-20 08:43:02 +00:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "num_cpus"
2022-01-19 22:16:01 +00:00
version = "1.13.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-02-23 15:10:14 +00:00
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "num_enum"
2022-07-20 08:43:02 +00:00
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9"
dependencies = [
"num_enum_derive",
]
[[package]]
name = "num_enum_derive"
2022-07-20 08:43:02 +00:00
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce"
dependencies = [
2022-02-14 20:53:11 +00:00
"proc-macro-crate",
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "objc"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
dependencies = [
"malloc_buf",
]
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
dependencies = [
"block",
"objc",
"objc_id",
]
[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
dependencies = [
"objc",
]
[[package]]
name = "once_cell"
version = "1.15.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
2021-02-04 20:10:12 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "openssl"
2022-07-20 08:43:02 +00:00
version = "0.10.41"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "618febf65336490dfcf20b73f885f5651a0c89c64c2d4a8c3662585a70bf5bd0"
2021-02-23 15:10:14 +00:00
dependencies = [
"bitflags",
"cfg-if 1.0.0",
2021-02-23 15:10:14 +00:00
"foreign-types",
"libc",
"once_cell",
2022-07-20 08:43:02 +00:00
"openssl-macros",
2021-02-23 15:10:14 +00:00
"openssl-sys",
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "openssl-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2022-07-20 08:43:02 +00:00
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "openssl-probe"
2022-01-19 22:16:01 +00:00
version = "0.1.5"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2021-02-23 15:10:14 +00:00
[[package]]
name = "openssl-sys"
2022-07-20 08:43:02 +00:00
version = "0.9.75"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f"
2021-02-23 15:10:14 +00:00
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "option-operations"
2022-07-20 08:43:02 +00:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "42b01597916c91a493b1e8a2fde64fec1764be3259abc1f06efc99c274f150a2"
dependencies = [
"paste",
]
[[package]]
name = "ordered-stream"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44630c059eacfd6e08bdaa51b1db2ce33119caa4ddc1235e923109aa5f25ccb1"
dependencies = [
"futures-core",
"pin-project-lite",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "pango"
2022-07-20 08:43:02 +00:00
version = "0.15.10"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f"
2021-02-04 20:10:12 +00:00
dependencies = [
"bitflags",
"glib",
"libc",
"once_cell",
"pango-sys",
]
[[package]]
name = "pango-sys"
2022-07-20 08:43:02 +00:00
version = "0.15.10"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa"
2021-02-04 20:10:12 +00:00
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
2021-03-23 11:30:47 +00:00
]
[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
2021-02-23 15:10:14 +00:00
[[package]]
name = "parking_lot"
2021-09-07 10:39:10 +00:00
version = "0.11.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-07 10:39:10 +00:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2021-02-23 15:10:14 +00:00
dependencies = [
"instant",
"lock_api",
2022-03-10 14:41:47 +00:00
"parking_lot_core 0.8.5",
]
[[package]]
name = "parking_lot"
2022-07-20 08:43:02 +00:00
version = "0.12.1"
2022-03-10 14:41:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2022-03-10 14:41:47 +00:00
dependencies = [
"lock_api",
2022-07-20 08:43:02 +00:00
"parking_lot_core 0.9.3",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "parking_lot_core"
2021-09-07 10:39:10 +00:00
version = "0.8.5"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-07 10:39:10 +00:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
2021-02-23 15:10:14 +00:00
"instant",
"libc",
"redox_syscall",
"smallvec",
"winapi",
]
2022-03-10 14:41:47 +00:00
[[package]]
name = "parking_lot_core"
2022-07-20 08:43:02 +00:00
version = "0.9.3"
2022-03-10 14:41:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
2022-03-10 14:41:47 +00:00
dependencies = [
"cfg-if 1.0.0",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
[[package]]
name = "password-hash"
2022-07-20 08:43:02 +00:00
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
dependencies = [
"base64ct",
"rand_core 0.6.3",
"subtle",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "paste"
version = "1.0.9"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
2021-02-23 15:10:14 +00:00
[[package]]
name = "pbkdf2"
2022-05-07 14:39:18 +00:00
version = "0.11.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 14:39:18 +00:00
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-03-02 10:07:23 +00:00
"digest 0.10.3",
"hmac",
"password-hash",
"sha2 0.10.5",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
2021-02-23 15:10:14 +00:00
[[package]]
name = "percent-encoding"
version = "2.2.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2021-02-23 15:10:14 +00:00
2021-03-23 11:30:47 +00:00
[[package]]
name = "pest"
version = "2.3.1"
2021-03-23 11:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb779fcf4bb850fbbb0edc96ff6cf34fd90c4b1a112ce042653280d9a7364048"
2021-03-23 11:30:47 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"thiserror",
2021-03-23 11:30:47 +00:00
"ucd-trie",
2021-02-04 20:10:12 +00:00
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "phf"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
dependencies = [
2022-03-02 10:07:23 +00:00
"phf_shared 0.8.0",
2021-04-20 17:20:16 +00:00
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "phf"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
dependencies = [
2022-08-19 11:34:37 +00:00
"phf_macros",
2022-07-20 08:43:02 +00:00
"phf_shared 0.10.0",
2022-08-19 11:34:37 +00:00
"proc-macro-hack",
2022-07-20 08:43:02 +00:00
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "phf_codegen"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
dependencies = [
2022-07-20 08:43:02 +00:00
"phf_generator 0.8.0",
2022-03-02 10:07:23 +00:00
"phf_shared 0.8.0",
2021-04-20 17:20:16 +00:00
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "phf_codegen"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
dependencies = [
"phf_generator 0.10.0",
"phf_shared 0.10.0",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "phf_generator"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
dependencies = [
2022-03-02 10:07:23 +00:00
"phf_shared 0.8.0",
2021-04-20 17:20:16 +00:00
"rand 0.7.3",
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "phf_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
dependencies = [
"phf_shared 0.10.0",
"rand 0.8.5",
]
2022-08-19 11:34:37 +00:00
[[package]]
name = "phf_macros"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
dependencies = [
"phf_generator 0.10.0",
"phf_shared 0.10.0",
"proc-macro-hack",
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "phf_shared"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
dependencies = [
"siphasher",
]
2022-03-02 10:07:23 +00:00
[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher",
]
2022-02-03 16:20:49 +00:00
[[package]]
name = "pin-project"
version = "1.0.12"
2022-02-03 16:20:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
2022-02-03 16:20:49 +00:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.0.12"
2022-02-03 16:20:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
2022-02-03 16:20:49 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2022-02-03 16:20:49 +00:00
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "pin-project-lite"
2022-07-20 08:43:02 +00:00
version = "0.2.9"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2021-02-04 20:10:12 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pipewire"
2022-07-20 08:43:02 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "d80fef8219c37f479f3d62d70167f3daaa90b71a083f7fd88d69e49f05f0ecdc"
dependencies = [
"anyhow",
"bitflags",
"errno",
"libc",
"libspa",
"libspa-sys",
"once_cell",
"pipewire-sys",
"signal",
"thiserror",
]
[[package]]
name = "pipewire-sys"
2022-07-20 08:43:02 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "3f6d4262ea1fd3b01786046d1892cc49e9578d872faf8723d95dc7affc810ee4"
dependencies = [
"bindgen",
"libspa-sys",
2022-07-20 08:43:02 +00:00
"system-deps",
]
[[package]]
name = "pkcs7"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f7364e6d0e236473de91e042395d71e0e64715f99a60620b014a4a4c7d1619b"
dependencies = [
2022-07-20 08:43:02 +00:00
"der",
"spki",
2021-06-22 09:04:40 +00:00
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "pkg-config"
2022-07-20 08:43:02 +00:00
version = "0.3.25"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
2021-02-04 20:10:12 +00:00
2021-06-22 09:04:40 +00:00
[[package]]
name = "png"
version = "0.16.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6"
dependencies = [
"bitflags",
"crc32fast",
"deflate",
"miniz_oxide 0.3.7",
]
[[package]]
name = "polling"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "899b00b9c8ab553c743b3e11e87c5c7d423b2a2de229ba95b24a756344748011"
dependencies = [
"autocfg",
"cfg-if 1.0.0",
"libc",
"log",
2021-06-22 09:04:40 +00:00
"wepoll-ffi",
"winapi",
]
2021-02-04 20:10:12 +00:00
[[package]]
2021-02-23 15:10:14 +00:00
name = "poly1305"
2021-09-07 10:39:10 +00:00
version = "0.7.2"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-07 10:39:10 +00:00
checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede"
2021-02-04 20:10:12 +00:00
dependencies = [
2021-09-20 10:23:06 +00:00
"cpufeatures",
2021-06-22 09:04:40 +00:00
"opaque-debug",
2021-02-23 15:10:14 +00:00
"universal-hash",
2021-02-04 20:10:12 +00:00
]
[[package]]
2021-02-23 15:10:14 +00:00
name = "ppv-lite86"
2022-01-19 22:16:01 +00:00
version = "0.2.16"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2021-02-23 15:10:14 +00:00
2021-04-20 17:20:16 +00:00
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
[[package]]
name = "pretty-hex"
2022-07-20 08:43:02 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "c6fa0831dd7cc608c38a5e323422a0077678fa5744aa2be4ad91c4ece8eec8d5"
[[package]]
name = "proc-macro-crate"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
dependencies = [
"once_cell",
"thiserror",
"toml",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2021-02-04 20:10:12 +00:00
dependencies = [
"proc-macro-error-attr",
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-02-04 20:10:12 +00:00
"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 1.0.43",
"quote 1.0.21",
2021-02-04 20:10:12 +00:00
"version_check",
]
2022-08-19 11:34:37 +00:00
[[package]]
name = "proc-macro-hack"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2021-06-22 09:04:40 +00:00
[[package]]
name = "proc-macro2"
version = "0.4.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
dependencies = [
"unicode-xid 0.1.0",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "proc-macro2"
version = "1.0.43"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
2021-02-04 20:10:12 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"unicode-ident",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "prost"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "399c3c31cdec40583bb68f0b18403400d01ec4289c383aa047560439952c4dd7"
dependencies = [
"bytes",
"prost-derive",
]
[[package]]
name = "prost-derive"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7345d5f0e08c0536d7ac7229952590239e77abf0a0100a1b1d890add6ea96364"
dependencies = [
"anyhow",
"itertools",
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
]
2021-05-21 14:18:16 +00:00
[[package]]
name = "pulldown-cmark"
2022-07-20 08:43:02 +00:00
version = "0.9.2"
2021-05-21 14:18:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63"
2021-05-21 14:18:16 +00:00
dependencies = [
"bitflags",
"getopts",
2021-05-21 14:18:16 +00:00
"memchr",
"unicase",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "qrcode"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16d2f1455f3630c6e5107b4f2b94e74d76dea80736de0981fd27644216cff57f"
dependencies = [
"checked_int_cast",
"image",
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "quick-xml"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
dependencies = [
"memchr",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "quote"
version = "0.6.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
dependencies = [
"proc-macro2 0.4.30",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "quote"
version = "1.0.21"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
2021-02-04 20:10:12 +00:00
dependencies = [
"proc-macro2 1.0.43",
2021-02-04 20:10:12 +00:00
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
2022-03-02 10:07:23 +00:00
"rand_hc",
2021-04-20 17:20:16 +00:00
"rand_pcg",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "rand"
2022-03-02 10:07:23 +00:00
version = "0.8.5"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-02-23 15:10:14 +00:00
dependencies = [
"libc",
2021-06-03 17:22:29 +00:00
"rand_chacha 0.3.1",
2021-06-22 09:04:40 +00:00
"rand_core 0.6.3",
2021-04-20 17:20:16 +00:00
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core 0.5.1",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "rand_chacha"
2021-06-03 17:22:29 +00:00
version = "0.3.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-03 17:22:29 +00:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-02-23 15:10:14 +00:00
dependencies = [
"ppv-lite86",
2021-06-22 09:04:40 +00:00
"rand_core 0.6.3",
2021-04-20 17:20:16 +00:00
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "rand_core"
2021-06-22 09:04:40 +00:00
version = "0.6.3"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-22 09:04:40 +00:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"getrandom 0.2.7",
2021-04-20 17:20:16 +00:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core 0.5.1",
2021-02-23 15:10:14 +00:00
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "rand_pcg"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
dependencies = [
"rand_core 0.5.1",
2021-02-23 15:10:14 +00:00
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "rayon"
2022-07-20 08:43:02 +00:00
version = "1.5.3"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
2021-06-22 09:04:40 +00:00
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2022-07-20 08:43:02 +00:00
version = "1.9.3"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
2021-06-22 09:04:40 +00:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "redox_syscall"
2022-07-20 08:43:02 +00:00
version = "0.2.16"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2021-02-23 15:10:14 +00:00
dependencies = [
"bitflags",
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
"getrandom 0.2.7",
"redox_syscall",
"thiserror",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "regex"
2022-07-20 08:43:02 +00:00
version = "1.6.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2021-02-04 20:10:12 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2022-07-20 08:43:02 +00:00
version = "0.6.27"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2021-02-04 20:10:12 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi",
]
[[package]]
name = "reqwest"
2022-07-20 08:43:02 +00:00
version = "0.11.11"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "b75aa69a3f06bbcc66ede33af2af253c6f7a86b1ca0033f60c580a27074fbf92"
2021-02-23 15:10:14 +00:00
dependencies = [
"base64",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
2022-01-19 22:16:01 +00:00
"h2",
2021-02-23 15:10:14 +00:00
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"native-tls",
"percent-encoding",
"pin-project-lite",
"serde",
2021-10-09 09:15:43 +00:00
"serde_json",
2021-02-23 15:10:14 +00:00
"serde_urlencoded",
"tokio",
"tokio-native-tls",
"tokio-socks",
2022-07-20 08:43:02 +00:00
"tower-service",
2021-02-23 15:10:14 +00:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
]
[[package]]
2021-06-22 09:04:40 +00:00
name = "rqrr"
2021-11-09 11:36:26 +00:00
version = "0.4.0"
2021-05-18 15:14:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-09 11:36:26 +00:00
checksum = "6fa79947f53b20adb909a323d828d0fd744fa9d854792df07913b083bcd4d63b"
2021-06-03 17:22:29 +00:00
dependencies = [
2021-06-22 09:04:40 +00:00
"g2p",
"image",
"lru 0.6.6",
2021-06-03 17:22:29 +00:00
]
[[package]]
name = "ruma"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8dc348e3a4a18abc4e97fffa5e2e623f6edd50ba3a1dd5f47eb249fea713b69f"
2021-02-23 15:10:14 +00:00
dependencies = [
"assign",
"js_int",
"js_option",
2021-02-23 15:10:14 +00:00
"ruma-client-api",
"ruma-common",
"ruma-federation-api",
2022-05-07 14:39:18 +00:00
"ruma-push-gateway-api",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "ruma-client-api"
version = "0.15.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bcfd3a3853ffdd151fc228441dd9c9e3d835ac85560dface7abda50b3888791"
2021-02-23 15:10:14 +00:00
dependencies = [
"assign",
2021-05-06 22:24:54 +00:00
"bytes",
2021-02-23 15:10:14 +00:00
"http",
"js_int",
"maplit",
"percent-encoding",
"ruma-common",
"serde",
"serde_json",
]
[[package]]
name = "ruma-common"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1e629a01f359234798531a99ba83997abd4c15a65b5bcb8354c4171b59c25be"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-03-29 13:45:13 +00:00
"base64",
"bytes",
"form_urlencoded",
2022-07-20 08:43:02 +00:00
"getrandom 0.2.7",
2022-08-19 11:34:37 +00:00
"html5ever 0.25.2",
2022-03-29 13:45:13 +00:00
"http",
"indexmap",
2022-03-29 13:45:13 +00:00
"itoa",
2022-05-07 14:39:18 +00:00
"js-sys",
2021-02-23 15:10:14 +00:00
"js_int",
2022-05-07 14:39:18 +00:00
"js_option",
2022-03-29 13:45:13 +00:00
"percent-encoding",
2022-08-19 11:34:37 +00:00
"phf 0.10.1",
2021-05-21 14:18:16 +00:00
"pulldown-cmark",
2022-03-29 13:45:13 +00:00
"rand 0.8.5",
2022-07-20 08:43:02 +00:00
"regex",
2022-03-29 13:45:13 +00:00
"ruma-identifiers-validation",
"ruma-macros",
2021-02-23 15:10:14 +00:00
"serde",
"serde_json",
2021-08-13 20:58:17 +00:00
"thiserror",
2022-03-29 13:45:13 +00:00
"tracing",
"url",
2022-07-20 08:43:02 +00:00
"uuid 1.1.2",
"wildmatch",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "ruma-federation-api"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f905d12f6144c7a754bd0339fa6893698c03d03a908abb20cc6eeb4ec7f9466"
2021-02-23 15:10:14 +00:00
dependencies = [
"js_int",
"ruma-common",
"serde",
"serde_json",
]
2022-03-10 14:41:47 +00:00
[[package]]
name = "ruma-identifiers-validation"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabac62d16465a87435579c779d74dceabb93b09e44c766af6085050f3cc4275"
2022-03-10 14:41:47 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"js_int",
2022-03-10 14:41:47 +00:00
"thiserror",
2021-10-21 12:46:04 +00:00
]
2021-02-23 15:10:14 +00:00
[[package]]
2022-03-29 13:45:13 +00:00
name = "ruma-macros"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f7cd8cf8771aaca36042fb7659f4647b05e74a2058d843474dde5e51a56cd85"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"once_cell",
2022-02-14 20:53:11 +00:00
"proc-macro-crate",
"proc-macro2 1.0.43",
"quote 1.0.21",
2022-03-29 13:45:13 +00:00
"ruma-identifiers-validation",
2022-07-20 08:43:02 +00:00
"serde",
"syn 1.0.99",
2022-07-20 08:43:02 +00:00
"toml",
2021-02-23 15:10:14 +00:00
]
2022-05-07 14:39:18 +00:00
[[package]]
name = "ruma-push-gateway-api"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9dfd2f65e3377126282d444275a43aa05eecf5950344ebc5a6173abf55ba3636"
2021-06-22 09:04:40 +00:00
dependencies = [
"js_int",
"ruma-common",
"serde",
"serde_json",
2021-06-03 17:22:29 +00:00
]
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2021-02-04 20:10:12 +00:00
[[package]]
name = "rustc_version"
2021-03-23 11:30:47 +00:00
version = "0.3.3"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-23 11:30:47 +00:00
checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
2021-02-04 20:10:12 +00:00
dependencies = [
2021-10-21 12:46:04 +00:00
"semver",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "ryu"
version = "1.0.11"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
2021-02-23 15:10:14 +00:00
[[package]]
name = "schannel"
2022-07-20 08:43:02 +00:00
version = "0.1.20"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
2021-02-23 15:10:14 +00:00
dependencies = [
"lazy_static",
2022-07-20 08:43:02 +00:00
"windows-sys",
2021-02-23 15:10:14 +00:00
]
2022-02-03 16:20:49 +00:00
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2021-06-22 09:04:40 +00:00
[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
2021-02-23 15:10:14 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "secular"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3dc3eccdf599b53eba8a34a1190bd47394948258d1c43dca9cceb2426e25bb5"
dependencies = [
"unicode-normalization",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "security-framework"
version = "2.7.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
2021-02-23 15:10:14 +00:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2022-03-02 10:07:23 +00:00
version = "2.6.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
2021-02-23 15:10:14 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "semver"
2021-03-23 11:30:47 +00:00
version = "0.11.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-23 11:30:47 +00:00
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
2021-02-04 20:10:12 +00:00
dependencies = [
2021-10-21 12:46:04 +00:00
"semver-parser",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "semver-parser"
2021-03-23 11:30:47 +00:00
version = "0.10.2"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-23 11:30:47 +00:00
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
dependencies = [
"pest",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "serde"
version = "1.0.144"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860"
2021-02-23 15:10:14 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_bytes"
version = "0.11.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfc50e8183eeeb6178dcb167ae34a8051d63535023ae38b5d8d12beae193d37b"
dependencies = [
"serde",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "serde_derive"
version = "1.0.144"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00"
2021-02-23 15:10:14 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "serde_json"
version = "1.0.85"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-03-10 14:41:47 +00:00
"itoa",
2021-02-23 15:10:14 +00:00
"ryu",
"serde",
]
[[package]]
name = "serde_repr"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca"
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "serde_urlencoded"
2022-01-19 22:16:01 +00:00
version = "0.7.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2021-02-23 15:10:14 +00:00
dependencies = [
"form_urlencoded",
2022-03-10 14:41:47 +00:00
"itoa",
2021-02-23 15:10:14 +00:00
"ryu",
"serde",
]
2022-02-03 16:20:49 +00:00
[[package]]
name = "sha1"
version = "0.6.1"
2022-02-03 16:20:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
2022-02-03 16:20:49 +00:00
dependencies = [
"sha1_smol",
2022-02-03 16:20:49 +00:00
]
[[package]]
name = "sha1"
version = "0.10.4"
2022-01-19 22:16:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "006769ba83e921b3085caa8334186b00cf92b4cb1a6cf4632fbccc8eff5c7549"
2022-01-19 22:16:01 +00:00
dependencies = [
"cfg-if 1.0.0",
"cpufeatures",
"digest 0.10.3",
2022-01-19 22:16:01 +00:00
]
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
2021-02-23 15:10:14 +00:00
[[package]]
name = "sha2"
2022-01-19 22:16:01 +00:00
version = "0.9.9"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
2021-02-23 15:10:14 +00:00
dependencies = [
"block-buffer 0.9.0",
"cfg-if 1.0.0",
2021-09-20 10:23:06 +00:00
"cpufeatures",
"digest 0.9.0",
2021-05-21 14:18:16 +00:00
"opaque-debug",
2021-02-23 15:10:14 +00:00
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "sha2"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf9db03534dff993187064c4e0c05a5708d2a9728ace9a8959b77bedf415dac5"
dependencies = [
"cfg-if 1.0.0",
"cpufeatures",
2022-03-02 10:07:23 +00:00
"digest 0.10.3",
]
[[package]]
name = "sharded-slab"
2021-10-21 12:46:04 +00:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 12:46:04 +00:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
[[package]]
name = "shlex"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
[[package]]
name = "signal"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f6ce83b159ab6984d2419f495134972b48754d13ff2e3f8c998339942b56ed9"
dependencies = [
"libc",
"nix 0.14.1",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "signature"
version = "1.6.0"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0ea32af43239f0d353a7dd75a22d94c329c8cdaafdcb4c1c1335aa10c298a4a"
2021-06-22 09:04:40 +00:00
2021-04-20 17:20:16 +00:00
[[package]]
name = "siphasher"
2022-07-20 08:43:02 +00:00
version = "0.3.10"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2021-04-20 17:20:16 +00:00
2021-02-04 20:10:12 +00:00
[[package]]
name = "slab"
2022-07-20 08:43:02 +00:00
version = "0.4.7"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
2021-02-04 20:10:12 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "sled"
2021-09-20 10:23:06 +00:00
version = "0.34.7"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-20 10:23:06 +00:00
checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
2021-02-23 15:10:14 +00:00
dependencies = [
"crc32fast",
"crossbeam-epoch",
"crossbeam-utils",
"fs2",
"fxhash",
"libc",
"log",
2022-03-10 14:41:47 +00:00
"parking_lot 0.11.2",
2021-02-23 15:10:14 +00:00
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "smallvec"
2022-07-20 08:43:02 +00:00
version = "1.9.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
2021-02-04 20:10:12 +00:00
[[package]]
name = "socket2"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
dependencies = [
2021-02-23 15:10:14 +00:00
"libc",
"winapi",
]
2021-04-22 10:22:03 +00:00
[[package]]
name = "sourceview5"
2022-07-20 08:43:02 +00:00
version = "0.4.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "2c467112d482de39e310fa7ec5537325d13b4744d8ab9a069b7e51f6eb719364"
2021-04-22 10:22:03 +00:00
dependencies = [
"bitflags",
2022-02-14 20:53:11 +00:00
"futures-channel",
"futures-core",
2021-04-22 10:22:03 +00:00
"gdk-pixbuf",
"gdk4",
"gio",
"glib",
"gtk4",
"libc",
"pango",
"sourceview5-sys",
]
[[package]]
name = "sourceview5-sys"
2022-07-20 08:43:02 +00:00
version = "0.4.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "304ab50228500689437d5a722af97ff5b77376866d655e5326a34069e1bf8d01"
2021-04-22 10:22:03 +00:00
dependencies = [
"gdk-pixbuf-sys",
"gdk4-sys",
"gio-sys",
"glib-sys",
"gobject-sys",
"gtk4-sys",
"libc",
"pango-sys",
2022-07-20 08:43:02 +00:00
"system-deps",
]
[[package]]
name = "spki"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d01ac02a6ccf3e07db148d2be087da624fea0221a16152ed01f0496a6b0a27"
dependencies = [
2022-07-20 08:43:02 +00:00
"der",
2021-06-22 09:04:40 +00:00
]
2021-06-03 17:22:29 +00:00
2021-06-22 09:04:40 +00:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2021-04-20 17:20:16 +00:00
[[package]]
name = "string_cache"
2022-07-20 08:43:02 +00:00
version = "0.8.4"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
2021-04-20 17:20:16 +00:00
dependencies = [
"new_debug_unreachable",
2022-07-20 08:43:02 +00:00
"once_cell",
"parking_lot 0.12.1",
2022-03-02 10:07:23 +00:00
"phf_shared 0.10.0",
2021-04-20 17:20:16 +00:00
"precomputed-hash",
"serde",
]
[[package]]
name = "string_cache_codegen"
2022-07-20 08:43:02 +00:00
version = "0.5.2"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
2021-04-20 17:20:16 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"phf_generator 0.10.0",
"phf_shared 0.10.0",
"proc-macro2 1.0.43",
"quote 1.0.21",
2021-04-20 17:20:16 +00:00
]
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2021-02-04 20:10:12 +00:00
[[package]]
2022-07-20 08:43:02 +00:00
name = "strsim"
version = "0.10.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2021-02-04 20:10:12 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "subtle"
2021-08-13 20:58:17 +00:00
version = "2.4.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 20:58:17 +00:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2021-02-23 15:10:14 +00:00
2021-06-22 09:04:40 +00:00
[[package]]
name = "syn"
version = "0.15.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
dependencies = [
"proc-macro2 0.4.30",
"quote 0.6.13",
"unicode-xid 0.1.0",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "syn"
version = "1.0.99"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
2021-02-04 20:10:12 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
2022-07-20 08:43:02 +00:00
"unicode-ident",
2021-02-04 20:10:12 +00:00
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "synstructure"
2021-10-21 12:46:04 +00:00
version = "0.12.6"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-21 12:46:04 +00:00
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
2021-02-23 15:10:14 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2022-07-20 08:43:02 +00:00
"unicode-xid 0.2.3",
2021-09-30 13:20:04 +00:00
]
2021-10-09 09:15:43 +00:00
[[package]]
name = "system-deps"
2022-03-02 10:07:23 +00:00
version = "6.0.2"
2021-10-09 09:15:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "a1a45a1c4c9015217e12347f2a411b57ce2c4fc543913b14b6fe40483328e709"
2021-10-09 09:15:43 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"cfg-expr",
"heck",
2021-10-09 09:15:43 +00:00
"pkg-config",
"toml",
2022-07-20 08:43:02 +00:00
"version-compare",
2021-10-09 09:15:43 +00:00
]
2021-08-13 20:58:17 +00:00
[[package]]
name = "temp-dir"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af547b166dd1ea4b472165569fc456cfb6818116f854690b0ff205e636523dab"
2021-02-23 15:10:14 +00:00
[[package]]
name = "tempfile"
2022-01-19 22:16:01 +00:00
version = "3.3.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
2022-01-19 22:16:01 +00:00
"fastrand",
2021-02-23 15:10:14 +00:00
"libc",
"redox_syscall",
"remove_dir_all",
"winapi",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "tendril"
2022-07-20 08:43:02 +00:00
version = "0.4.3"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2021-04-20 17:20:16 +00:00
dependencies = [
"futf",
"mac",
"utf-8",
]
[[package]]
name = "termcolor"
2022-07-20 08:43:02 +00:00
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "thiserror"
version = "1.0.37"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
2021-02-04 20:10:12 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.37"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
2021-02-04 20:10:12 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "thread_local"
2022-03-02 10:07:23 +00:00
version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
dependencies = [
"once_cell",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "tiff"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a53f4706d65497df0c4349241deddf35f84cee19c87ed86ea8ca590f4464437"
dependencies = [
"jpeg-decoder",
"miniz_oxide 0.4.4",
"weezl",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "tinyvec"
2022-07-20 08:43:02 +00:00
version = "1.6.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2021-02-23 15:10:14 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.21.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89797afd69d206ccd11fb0ea560a44bbb87731d020670e79416d442919257d42"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"autocfg",
2021-02-23 15:10:14 +00:00
"bytes",
"libc",
"memchr",
"mio",
"num_cpus",
2022-07-20 08:43:02 +00:00
"once_cell",
2021-02-23 15:10:14 +00:00
"pin-project-lite",
2022-03-02 10:07:23 +00:00
"socket2",
2021-06-22 09:04:40 +00:00
"winapi",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "tokio-native-tls"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
dependencies = [
"native-tls",
"tokio",
]
[[package]]
name = "tokio-socks"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0"
dependencies = [
"either",
"futures-util",
"thiserror",
"tokio",
]
2022-02-03 16:20:49 +00:00
[[package]]
name = "tokio-stream"
2022-07-20 08:43:02 +00:00
version = "0.1.9"
2022-02-03 16:20:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "df54d54117d6fdc4e4fea40fe1e4e566b3505700e148a6827e59b34b0d2600d9"
2022-02-03 16:20:49 +00:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "tokio-util"
2022-07-20 08:43:02 +00:00
version = "0.6.10"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
2021-02-23 15:10:14 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"log",
"pin-project-lite",
"tokio",
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "tokio-util"
version = "0.7.4"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
2022-07-20 08:43:02 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "toml"
2022-07-20 08:43:02 +00:00
version = "0.5.9"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
2021-02-04 20:10:12 +00:00
dependencies = [
"serde",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "tower-service"
2022-07-20 08:43:02 +00:00
version = "0.3.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2021-02-23 15:10:14 +00:00
[[package]]
name = "tracing"
2022-07-20 08:43:02 +00:00
version = "0.1.36"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "2fce9567bd60a67d08a16488756721ba392f24f29006402881e43b19aac64307"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
2022-02-03 16:20:49 +00:00
"log",
2021-02-23 15:10:14 +00:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2022-07-20 08:43:02 +00:00
version = "0.1.22"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
2021-02-23 15:10:14 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "tracing-core"
2022-07-20 08:43:02 +00:00
version = "0.1.29"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "5aeea4303076558a00714b823f9ad67d58a3bbda1df83d8827d21193156e22f7"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"once_cell",
2022-03-02 10:07:23 +00:00
"valuable",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "tracing-log"
2022-07-20 08:43:02 +00:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2022-07-20 08:43:02 +00:00
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "60db860322da191b40952ad9affe65ea23e7dd6a5c442c2c42865810c6ab8e6b"
dependencies = [
2022-01-19 22:16:01 +00:00
"ansi_term",
"sharded-slab",
"smallvec",
"thread_local",
"tracing-core",
"tracing-log",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "typenum"
2022-01-19 22:16:01 +00:00
version = "1.15.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2021-02-23 15:10:14 +00:00
2021-03-23 11:30:47 +00:00
[[package]]
name = "ucd-trie"
version = "0.1.5"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
2022-07-20 08:43:02 +00:00
[[package]]
name = "uds_windows"
version = "1.0.2"
2021-03-23 11:30:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d"
dependencies = [
"tempfile",
"winapi",
]
2021-03-23 11:30:47 +00:00
2021-05-03 16:03:22 +00:00
[[package]]
2021-05-21 14:18:16 +00:00
name = "unicase"
version = "2.6.0"
2021-05-03 16:03:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-21 14:18:16 +00:00
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
"version_check",
]
2021-05-03 16:03:22 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "unicode-bidi"
2022-07-20 08:43:02 +00:00
version = "0.3.8"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
[[package]]
name = "unicode-ident"
version = "1.0.3"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
2021-02-23 15:10:14 +00:00
[[package]]
name = "unicode-normalization"
2022-07-20 08:43:02 +00:00
version = "0.1.21"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
2021-02-23 15:10:14 +00:00
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-width"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2021-06-22 09:04:40 +00:00
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
2021-02-04 20:10:12 +00:00
[[package]]
name = "unicode-xid"
2022-07-20 08:43:02 +00:00
version = "0.2.3"
2021-05-18 15:14:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04"
2021-05-18 15:14:08 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "universal-hash"
2021-08-13 20:58:17 +00:00
version = "0.4.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 20:58:17 +00:00
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
2021-02-23 15:10:14 +00:00
dependencies = [
2021-05-21 14:18:16 +00:00
"generic-array",
2021-02-23 15:10:14 +00:00
"subtle",
]
[[package]]
name = "url"
version = "2.3.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2021-02-23 15:10:14 +00:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "utf-8"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2021-02-23 15:10:14 +00:00
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
2022-07-20 08:43:02 +00:00
"getrandom 0.2.7",
2022-05-07 14:39:18 +00:00
]
[[package]]
name = "uuid"
2022-07-20 08:43:02 +00:00
version = "1.1.2"
2022-05-07 14:39:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f"
2022-05-07 14:39:18 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"getrandom 0.2.7",
2021-02-23 15:10:14 +00:00
]
2022-03-02 10:07:23 +00:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2021-02-23 15:10:14 +00:00
[[package]]
name = "vcpkg"
2021-06-22 09:04:40 +00:00
version = "0.2.15"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-22 09:04:40 +00:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2021-02-23 15:10:14 +00:00
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
[[package]]
name = "version-compare"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73"
2021-02-04 20:10:12 +00:00
[[package]]
name = "version_check"
2022-01-19 22:16:01 +00:00
version = "0.9.4"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-19 22:16:01 +00:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-02-04 20:10:12 +00:00
[[package]]
name = "vodozemac"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f20153a1c82ac5f1243b62e80f067ae608facc415c6ef82f88426a61c79886"
dependencies = [
2022-05-13 10:18:52 +00:00
"aes",
2022-07-20 08:43:02 +00:00
"arrayvec",
"base64",
"cbc",
"ed25519-dalek",
"hkdf",
"hmac",
"pkcs7",
"prost",
"rand 0.7.3",
"serde",
"serde_json",
"sha2 0.10.5",
"subtle",
"thiserror",
"x25519-dalek",
"zeroize",
]
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
2021-02-23 15:10:14 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2022-02-03 16:20:49 +00:00
[[package]]
name = "warp"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3cef4e1e9114a4b7f1ac799f16ce71c14de5778500c5450ec6b7b920c55b587e"
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"headers",
"http",
"hyper",
"log",
"mime",
"mime_guess",
"percent-encoding",
"pin-project",
"scoped-tls",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-stream",
2022-07-20 08:43:02 +00:00
"tokio-util 0.6.10",
2022-02-03 16:20:49 +00:00
"tower-service",
"tracing",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2022-07-20 08:43:02 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-02-23 15:10:14 +00:00
[[package]]
name = "wasm-bindgen"
version = "0.2.83"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
2022-05-07 14:39:18 +00:00
"serde",
"serde_json",
2021-02-23 15:10:14 +00:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.83"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
2021-02-23 15:10:14 +00:00
dependencies = [
"bumpalo",
"log",
2022-07-20 08:43:02 +00:00
"once_cell",
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-02-23 15:10:14 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.33"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if 1.0.0",
2021-02-23 15:10:14 +00:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.83"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
2021-02-23 15:10:14 +00:00
dependencies = [
"quote 1.0.21",
2021-02-23 15:10:14 +00:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.83"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
2021-02-23 15:10:14 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-02-23 15:10:14 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.83"
2022-05-07 14:39:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
2022-05-07 14:39:18 +00:00
[[package]]
name = "wasm-timer"
version = "0.2.5"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 14:39:18 +00:00
checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f"
dependencies = [
"futures",
"js-sys",
"parking_lot 0.11.2",
"pin-utils",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "web-sys"
version = "0.3.60"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
2021-02-23 15:10:14 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
2021-06-22 09:04:40 +00:00
name = "weezl"
2022-07-20 08:43:02 +00:00
version = "0.1.7"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
2021-06-22 09:04:40 +00:00
[[package]]
name = "wepoll-ffi"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-22 09:04:40 +00:00
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
dependencies = [
"cc",
]
[[package]]
name = "which"
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
dependencies = [
2022-01-19 22:16:01 +00:00
"either",
"libc",
"once_cell",
]
[[package]]
name = "wildmatch"
2022-07-20 08:43:02 +00:00
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "ee583bdc5ff1cf9db20e9db5bb3ff4c3089a8f6b8b31aff265c9aba85812db86"
2021-02-04 20:10:12 +00: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"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2021-02-04 20:10:12 +00: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"
2021-02-23 15:10:14 +00:00
2022-03-10 14:41:47 +00:00
[[package]]
name = "windows-sys"
2022-07-20 08:43:02 +00:00
version = "0.36.1"
2022-03-10 14:41:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2022-03-10 14:41:47 +00:00
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
2022-07-20 08:43:02 +00:00
version = "0.36.1"
2022-03-10 14:41:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2022-03-10 14:41:47 +00:00
[[package]]
name = "windows_i686_gnu"
2022-07-20 08:43:02 +00:00
version = "0.36.1"
2022-03-10 14:41:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2022-03-10 14:41:47 +00:00
[[package]]
name = "windows_i686_msvc"
2022-07-20 08:43:02 +00:00
version = "0.36.1"
2022-03-10 14:41:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2022-03-10 14:41:47 +00:00
[[package]]
name = "windows_x86_64_gnu"
2022-07-20 08:43:02 +00:00
version = "0.36.1"
2022-03-10 14:41:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2022-03-10 14:41:47 +00:00
[[package]]
name = "windows_x86_64_msvc"
2022-07-20 08:43:02 +00:00
version = "0.36.1"
2022-03-10 14:41:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2022-03-10 14:41:47 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "winreg"
2022-05-07 14:39:18 +00:00
version = "0.10.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-07 14:39:18 +00:00
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2021-02-23 15:10:14 +00:00
dependencies = [
"winapi",
]
[[package]]
name = "x25519-dalek"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2392b6b94a576b4e2bf3c5b2757d63f10ada8020a2e4d08ac849ebcf6ea8e077"
dependencies = [
"curve25519-dalek",
"rand_core 0.5.1",
"serde",
"zeroize",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "xml5ever"
version = "0.17.0"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4034e1d05af98b51ad7214527730626f019682d797ba38b51689212118d8e650"
2021-04-20 17:20:16 +00:00
dependencies = [
"log",
"mac",
"markup5ever 0.11.0",
2021-04-20 17:20:16 +00:00
]
[[package]]
name = "zbus"
2022-07-20 08:43:02 +00:00
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "2d8f1a037b2c4a67d9654dc7bdfa8ff2e80555bbefdd3c1833c1d1b27c963a6b"
dependencies = [
"async-broadcast",
"async-channel",
"async-executor",
"async-io",
"async-lock",
"async-recursion",
"async-task",
"async-trait",
"byteorder",
"derivative",
2022-07-20 08:43:02 +00:00
"dirs",
2022-02-14 20:53:11 +00:00
"enumflags2",
"event-listener",
"futures-core",
"futures-sink",
"futures-util",
"hex",
2022-03-02 10:07:23 +00:00
"lazy_static",
"nix 0.23.1",
"once_cell",
"ordered-stream",
2022-03-02 10:07:23 +00:00
"rand 0.8.5",
"serde",
"serde_repr",
"sha1 0.6.1",
"static_assertions",
2022-07-20 08:43:02 +00:00
"tracing",
"uds_windows",
2022-03-02 10:07:23 +00:00
"winapi",
2022-02-14 20:53:11 +00:00
"zbus_macros",
"zbus_names",
2022-02-14 20:53:11 +00:00
"zvariant",
]
[[package]]
name = "zbus_macros"
2022-07-20 08:43:02 +00:00
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "1f8fb5186d1c87ae88cf234974c240671238b4a679158ad3b94ec465237349a6"
dependencies = [
2022-02-14 20:53:11 +00:00
"proc-macro-crate",
"proc-macro2 1.0.43",
"quote 1.0.21",
"regex",
"syn 1.0.99",
]
[[package]]
name = "zbus_names"
2022-07-20 08:43:02 +00:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "41a408fd8a352695690f53906dc7fd036be924ec51ea5e05666ff42685ed0af5"
dependencies = [
"serde",
"static_assertions",
2022-02-14 20:53:11 +00:00
"zvariant",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "zeroize"
version = "1.3.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4756f7db3f7b5574938c3eb1c117038b8e07f95ee6718c0efad4ac21508f1efd"
2021-02-23 15:10:14 +00:00
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
2022-03-02 10:07:23 +00:00
version = "1.3.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-02 10:07:23 +00:00
checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17"
2021-02-23 15:10:14 +00:00
dependencies = [
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
2021-02-23 15:10:14 +00:00
"synstructure",
]
[[package]]
name = "zvariant"
2022-07-20 08:43:02 +00:00
version = "3.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "1bd68e4e6432ef19df47d7e90e2e72b5e7e3d778e0ae3baddf12b951265cc758"
dependencies = [
"byteorder",
2022-02-14 20:53:11 +00:00
"enumflags2",
"libc",
"serde",
"static_assertions",
2022-02-14 20:53:11 +00:00
"zvariant_derive",
]
[[package]]
name = "zvariant_derive"
2022-07-20 08:43:02 +00:00
version = "3.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-20 08:43:02 +00:00
checksum = "08e977eaa3af652f63d479ce50d924254ad76722a6289ec1a1eac3231ca30430"
dependencies = [
2022-02-14 20:53:11 +00:00
"proc-macro-crate",
"proc-macro2 1.0.43",
"quote 1.0.21",
"syn 1.0.99",
]