fractal/Cargo.lock

6784 lines
156 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
[[package]]
name = "addr2line"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
dependencies = [
"gimli",
]
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"
2021-02-23 15:10:14 +00:00
[[package]]
name = "aead"
2023-10-01 09:48:45 +00:00
version = "0.5.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-10-01 09:48:45 +00:00
"crypto-common",
2021-05-21 14:18:16 +00:00
"generic-array",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "aes"
2023-06-22 08:21:40 +00:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2"
dependencies = [
"cfg-if",
2023-10-01 09:48:45 +00:00
"cipher",
"cpufeatures",
2023-01-07 09:37:55 +00:00
"zeroize",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "aes-gcm"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"ghash",
"subtle",
]
2021-05-28 09:04:33 +00:00
[[package]]
name = "ahash"
2023-03-26 10:52:21 +00:00
version = "0.8.3"
2021-05-28 09:04:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
2021-08-13 20:58:17 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"cfg-if",
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 = "1.0.3"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86b8f9420f797f2d9e935edf629310eb938a0d839f984e25327f3c7eed22300c"
2021-02-04 20:10:12 +00:00
dependencies = [
"memchr",
]
2023-06-22 08:21:40 +00:00
[[package]]
name = "allocator-api2"
version = "0.2.16"
2023-06-22 08:21:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
2023-06-22 08:21:40 +00:00
2021-04-20 17:20:16 +00:00
[[package]]
name = "ammonia"
version = "3.3.0"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170"
2021-04-20 17:20:16 +00:00
dependencies = [
"html5ever",
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",
]
2023-06-22 08:21:40 +00:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "anyhow"
version = "1.0.72"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
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"
2023-03-26 10:52:21 +00:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
[[package]]
name = "arrayvec"
2023-06-22 08:21:40 +00:00
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
dependencies = [
"serde",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "as_variant"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f38fa22307249f86fb7fad906fcae77f2564caeb56d7209103c551cd1cf4798f"
[[package]]
name = "ashpd"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3affe251686bd936a0afb74b9693e8bf2f193d51da1b9a45d3f1303a9bd2cc7"
dependencies = [
2022-02-14 20:53:11 +00:00
"enumflags2",
"futures-channel",
"futures-util",
"libc",
"once_cell",
"pipewire",
"rand",
"serde",
"serde_repr",
"tokio",
"tracing",
"url",
2023-01-07 09:37:55 +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"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b"
dependencies = [
2023-10-01 09:48:45 +00:00
"event-listener 2.5.3",
"futures-core",
]
[[package]]
name = "async-channel"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
dependencies = [
"concurrent-queue",
2023-10-01 09:48:45 +00:00
"event-listener 2.5.3",
"futures-core",
]
[[package]]
name = "async-compression"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b74f44609f0f91493e3082d3734d98497e094777144380ea4db9f9905dd5b6"
dependencies = [
"flate2",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
]
[[package]]
name = "async-executor"
2023-04-14 06:42:23 +00:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
dependencies = [
"async-lock",
"async-task",
"concurrent-queue",
"fastrand 1.9.0",
"futures-lite",
"slab",
]
[[package]]
name = "async-global-executor"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
dependencies = [
"async-channel",
"async-executor",
"async-io",
"async-lock",
"blocking",
"futures-lite",
"once_cell",
]
[[package]]
name = "async-io"
2023-03-26 10:52:21 +00:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
dependencies = [
"async-lock",
"autocfg",
2023-03-26 10:52:21 +00:00
"cfg-if",
"concurrent-queue",
"futures-lite",
"log",
"parking",
"polling",
"rustix 0.37.25",
2021-04-28 13:23:59 +00:00
"slab",
"socket2 0.4.9",
"waker-fn",
]
[[package]]
name = "async-lock"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
dependencies = [
2023-10-01 09:48:45 +00:00
"event-listener 2.5.3",
]
[[package]]
name = "async-once-cell"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9338790e78aa95a416786ec8389546c4b6a1dfc3dc36071ed9518a9413a542eb"
[[package]]
name = "async-process"
2023-04-14 06:42:23 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9"
dependencies = [
"async-io",
"async-lock",
"autocfg",
"blocking",
"cfg-if",
2023-10-01 09:48:45 +00:00
"event-listener 2.5.3",
"futures-lite",
"rustix 0.37.25",
"signal-hook",
"windows-sys",
]
[[package]]
name = "async-recursion"
2023-03-26 10:52:21 +00:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba"
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
]
[[package]]
name = "async-rx"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a30de4e5329a0947e389f738a6ca0d0b938fea5cb7baaeae7d72e243614468a2"
dependencies = [
"futures-core",
"pin-project-lite",
]
[[package]]
name = "async-std"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
dependencies = [
"async-channel",
"async-global-executor",
"async-io",
"async-lock",
"async-process",
"crossbeam-utils",
"futures-channel",
"futures-core",
"futures-io",
"futures-lite",
2023-10-01 09:48:45 +00:00
"gloo-timers 0.2.6",
"kv-log-macro",
"log",
"memchr",
"once_cell",
"pin-project-lite",
"pin-utils",
"slab",
"wasm-bindgen-futures",
]
2021-09-20 10:23:06 +00:00
[[package]]
name = "async-stream"
2023-04-14 06:42:23 +00:00
version = "0.3.5"
2021-09-20 10:23:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
2021-09-20 10:23:06 +00:00
dependencies = [
"async-stream-impl",
"futures-core",
"pin-project-lite",
2021-09-20 10:23:06 +00:00
]
[[package]]
name = "async-stream-impl"
2023-04-14 06:42:23 +00:00
version = "0.3.5"
2021-09-20 10:23:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
2021-09-20 10:23:06 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2021-09-20 10:23:06 +00:00
]
[[package]]
name = "async-task"
2023-03-26 10:52:21 +00:00
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
2021-02-23 15:10:14 +00:00
[[package]]
name = "async-trait"
version = "0.1.73"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "async_cell"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "834eee9ce518130a3b4d5af09ecc43e9d6b57ee76613f227a1ddd6b77c7a62bc"
[[package]]
name = "atomic-waker"
2023-04-14 06:42:23 +00:00
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
[[package]]
name = "atomic_refcell"
2023-04-25 07:55:47 +00:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-25 07:55:47 +00:00
checksum = "79d6dc922a2792b006573f60b2648076355daeae5ce9cb59507e5908c9625d31"
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",
"getrandom",
2021-02-23 15:10:14 +00:00
"instant",
"pin-project-lite",
"rand",
2021-02-23 15:10:14 +00:00
"tokio",
]
[[package]]
name = "backtrace"
version = "0.3.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "base16ct"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "base64"
2023-10-01 09:48:45 +00:00
version = "0.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2"
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "bindgen"
version = "0.64.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4"
dependencies = [
"bitflags 1.3.2",
"cexpr",
"clang-sys",
"lazy_static",
"lazycell",
"peeking_take_while",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"regex",
"rustc-hash",
"shlex",
"syn 1.0.109",
]
[[package]]
name = "bit_field"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
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 = "bitflags"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
2023-02-16 11:38:50 +00:00
[[package]]
name = "bitmaps"
2023-03-30 13:03:39 +00:00
version = "3.2.0"
2023-02-16 11:38:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-30 13:03:39 +00:00
checksum = "703642b98a00b3b90513279a8ede3fcfa479c126c5fb46e78f3051522f021403"
2023-02-16 11:38:50 +00:00
[[package]]
name = "blake3"
2023-10-01 09:48:45 +00:00
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "0231f06152bf547e9c2b5194f247cd97aacf6dcd8b15d8e5ec0663f64580da87"
dependencies = [
"arrayref",
2022-07-20 08:43:02 +00:00
"arrayvec",
"cc",
"cfg-if",
"constant_time_eq",
]
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"
[[package]]
name = "block-buffer"
2023-03-26 10:52:21 +00:00
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
2021-11-24 14:28:23 +00:00
[[package]]
name = "block-padding"
2023-04-14 06:42:23 +00:00
version = "0.3.3"
2021-11-24 14:28:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
dependencies = [
"generic-array",
]
2021-11-24 14:28:23 +00:00
[[package]]
name = "blocking"
2023-04-14 06:42:23 +00:00
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
dependencies = [
"async-channel",
"async-lock",
"async-task",
"atomic-waker",
"fastrand 1.9.0",
"futures-lite",
2023-04-14 06:42:23 +00:00
"log",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "bs58"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896"
dependencies = [
"tinyvec",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "bumpalo"
version = "3.13.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
2021-02-23 15:10:14 +00:00
2021-06-22 09:04:40 +00:00
[[package]]
name = "bytemuck"
version = "1.13.1"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
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"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
[[package]]
name = "bytesize"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38fcc2979eff34a4b84e1cf9a1e3da42a7d44b3b690a40cdcb23e3d556cfb2e5"
2021-02-04 20:10:12 +00:00
[[package]]
name = "cairo-rs"
version = "0.18.0"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d859b656775a6b1dd078d3e5924884e6ea88aa649a7fdde03d5b2ec56ffcc10b"
2021-02-04 20:10:12 +00:00
dependencies = [
"bitflags 2.4.0",
2021-02-04 20:10:12 +00:00
"cairo-sys-rs",
"glib",
"libc",
"once_cell",
2021-02-04 20:10:12 +00:00
"thiserror",
]
[[package]]
name = "cairo-sys-rs"
version = "0.18.0"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd4d115132e01c0165e3bf5f56aedee8980b0b96ede4eb000b693c05a8adb8ff"
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 = [
2023-10-01 09:48:45 +00:00
"cipher",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "cc"
version = "1.0.82"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01"
dependencies = [
"libc",
]
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"
version = "0.15.4"
2021-09-30 13:20:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9"
2021-09-30 13:20:04 +00:00
dependencies = [
"smallvec",
2023-04-25 07:55:47 +00:00
"target-lexicon",
2021-09-30 13:20:04 +00:00
]
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"
[[package]]
name = "cfg-vis"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3a2c3bf5fc10fe2ca157564fbe08a4cb2b0a7d2ff3fe2f9683e65d5e7c7859c"
dependencies = [
2023-10-01 09:48:45 +00:00
"proc-macro-crate 1.3.1",
"proc-macro2",
"quote",
"syn 1.0.109",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "chacha20"
2023-10-01 09:48:45 +00:00
version = "0.9.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if",
2023-10-01 09:48:45 +00:00
"cipher",
2021-09-20 10:23:06 +00:00
"cpufeatures",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "chacha20poly1305"
2023-10-01 09:48:45 +00:00
version = "0.10.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
2021-02-23 15:10:14 +00:00
dependencies = [
"aead",
"chacha20",
2023-10-01 09:48:45 +00:00
"cipher",
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"
2023-06-22 08:21:40 +00:00
version = "0.4.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
dependencies = [
2023-06-22 08:21:40 +00:00
"android-tzdata",
"iana-time-zone",
"js-sys",
"num-traits",
2023-10-01 09:48:45 +00:00
"serde",
"time 0.1.45",
"wasm-bindgen",
"winapi",
]
[[package]]
name = "cipher"
2023-03-26 10:52:21 +00:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
2023-01-07 09:37:55 +00:00
"zeroize",
]
[[package]]
name = "clang-sys"
2023-04-14 06:42:23 +00:00
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
dependencies = [
"glob",
"libc",
]
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"
2023-04-14 06:42:23 +00:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "const-oid"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"
[[package]]
name = "const_panic"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6051f239ecec86fde3410901ab7860d458d160371533842974fc61f96d15879b"
[[package]]
name = "constant_time_eq"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
2023-10-01 09:48:45 +00:00
[[package]]
name = "cookie"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24"
dependencies = [
"aes-gcm",
"base64 0.21.4",
"hkdf",
"rand",
"sha2",
"subtle",
"time 0.3.25",
"version_check",
]
[[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"
2023-04-14 06:42:23 +00:00
version = "0.8.4"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2021-02-23 15:10:14 +00:00
2021-09-07 10:39:10 +00:00
[[package]]
name = "cpufeatures"
version = "0.2.9"
2021-09-07 10:39:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
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",
2021-02-23 15:10:14 +00:00
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "crossbeam-channel"
2023-04-14 06:42:23 +00:00
version = "0.5.8"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
2021-06-22 09:04:40 +00:00
dependencies = [
"cfg-if",
2021-06-22 09:04:40 +00:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.3"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
2021-06-22 09:04:40 +00:00
dependencies = [
"cfg-if",
2021-06-22 09:04:40 +00:00
"crossbeam-epoch",
"crossbeam-utils",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "crossbeam-epoch"
2023-06-22 08:21:40 +00:00
version = "0.9.15"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"autocfg",
"cfg-if",
2021-02-23 15:10:14 +00:00
"crossbeam-utils",
2023-06-22 08:21:40 +00:00
"memoffset 0.9.0",
2021-02-23 15:10:14 +00:00
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2023-06-22 08:21:40 +00:00
version = "0.8.16"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
2023-10-01 09:48:45 +00:00
[[package]]
name = "crypto-bigint"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124"
dependencies = [
"generic-array",
"rand_core",
"subtle",
"zeroize",
]
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",
"rand_core",
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.2"
2022-05-07 14:39:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
2022-05-07 14:39:18 +00:00
dependencies = [
2023-10-01 09:48:45 +00:00
"cipher",
2022-05-07 14:39:18 +00:00
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "curve25519-dalek"
2023-10-01 09:48:45 +00:00
version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
"curve25519-dalek-derive",
"digest",
"fiat-crypto",
"platforms",
"rustc_version",
"serde",
2021-06-22 09:04:40 +00:00
"subtle",
"zeroize",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "curve25519-dalek-derive"
version = "0.1.0"
2023-10-01 09:48:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83fdaf97f4804dcebfa5862639bc9ce4121e82140bec2a987ac5140294865b5b"
dependencies = [
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "darling"
2023-03-26 10:52:21 +00:00
version = "0.14.4"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
2022-07-20 08:43:02 +00:00
dependencies = [
2023-10-01 09:48:45 +00:00
"darling_core 0.14.4",
"darling_macro 0.14.4",
]
[[package]]
name = "darling"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e"
dependencies = [
"darling_core 0.20.3",
"darling_macro 0.20.3",
2022-07-20 08:43:02 +00:00
]
[[package]]
name = "darling_core"
2023-03-26 10:52:21 +00:00
version = "0.14.4"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
2022-07-20 08:43:02 +00:00
dependencies = [
"fnv",
"ident_case",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"strsim",
"syn 1.0.109",
2022-07-20 08:43:02 +00:00
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "darling_core"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn 2.0.38",
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "darling_macro"
2023-03-26 10:52:21 +00:00
version = "0.14.4"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
2022-07-20 08:43:02 +00:00
dependencies = [
2023-10-01 09:48:45 +00:00
"darling_core 0.14.4",
2023-03-26 10:52:21 +00:00
"quote",
"syn 1.0.109",
2022-07-20 08:43:02 +00:00
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "darling_macro"
version = "0.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
dependencies = [
"darling_core 0.20.3",
"quote",
"syn 2.0.38",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "dashmap"
version = "5.5.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if",
2023-10-23 16:01:41 +00:00
"hashbrown 0.14.2",
2022-07-20 08:43:02 +00:00
"lock_api",
"once_cell",
"parking_lot_core",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "data-encoding"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
[[package]]
name = "deadpool"
2023-10-01 09:48:45 +00:00
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490"
dependencies = [
"async-trait",
"deadpool-runtime",
"num_cpus",
"tokio",
]
[[package]]
name = "deadpool-runtime"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
dependencies = [
"tokio",
]
[[package]]
name = "deadpool-sqlite"
2023-10-01 09:48:45 +00:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "4e4378b597d51ce5586885f99c9c9dfd15bf39638c032b74739355cf11fc6ed3"
dependencies = [
"deadpool",
"deadpool-sync",
"rusqlite",
]
[[package]]
name = "deadpool-sync"
2023-10-01 09:48:45 +00:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "f8db70494c13cae4ce67b4b4dafdaf828cf0df7237ab5b9e2fcabee4965d0a0a"
dependencies = [
2023-10-01 09:48:45 +00:00
"deadpool-runtime",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "der"
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
dependencies = [
2022-07-20 08:43:02 +00:00
"const-oid",
"der_derive",
"flagset",
2023-10-01 09:48:45 +00:00
"pem-rfc7468",
"zeroize",
]
[[package]]
name = "der_derive"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fe87ce4529967e0ba1dcf8450bab64d97dfd5010a6256187ffe2e43e6f0e049"
dependencies = [
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
]
[[package]]
name = "deranged"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946"
dependencies = [
"serde",
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 = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"syn 1.0.109",
2022-07-20 08:43:02 +00:00
]
[[package]]
name = "derive_builder"
2023-03-26 10:52:21 +00:00
version = "0.12.0"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8"
2022-07-20 08:43:02 +00:00
dependencies = [
"derive_builder_macro",
2022-07-20 08:43:02 +00:00
]
[[package]]
name = "derive_builder_core"
2023-03-26 10:52:21 +00:00
version = "0.12.0"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f"
2022-07-20 08:43:02 +00:00
dependencies = [
2023-10-01 09:48:45 +00:00
"darling 0.14.4",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"syn 1.0.109",
2022-07-20 08:43:02 +00:00
]
[[package]]
name = "derive_builder_macro"
2023-03-26 10:52:21 +00:00
version = "0.12.0"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
2022-07-20 08:43:02 +00:00
dependencies = [
"derive_builder_core",
"syn 1.0.109",
]
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
2023-10-01 09:48:45 +00:00
"const-oid",
"crypto-common",
"subtle",
]
2023-03-26 10:52:21 +00:00
[[package]]
name = "dirs"
version = "5.0.1"
2023-03-26 10:52:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
2023-03-26 10:52:21 +00:00
dependencies = [
2023-04-25 07:55:47 +00:00
"dirs-sys",
2022-07-20 08:43:02 +00:00
]
2023-03-26 10:52:21 +00:00
[[package]]
name = "dirs-sys"
version = "0.4.1"
2023-03-26 10:52:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
2023-03-26 10:52:21 +00:00
dependencies = [
"libc",
"option-ext",
2023-03-26 10:52:21 +00:00
"redox_users",
"windows-sys",
2023-03-26 10:52:21 +00:00
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "displaydoc"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
2022-07-20 08:43:02 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2022-07-20 08:43:02 +00:00
]
2022-10-23 16:53:37 +00:00
[[package]]
name = "djb_hash"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8cf7d61e627a3b49af8f24f47e57f3788cdd7a0e4f17cd79fda5ada87f08578"
2023-10-01 09:48:45 +00:00
[[package]]
name = "dyn-clone"
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23d2f3407d9a573d666de4b5bdf10569d73ca9478087346697dcbae6244bfbcd"
[[package]]
name = "ecdsa"
version = "0.16.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4"
dependencies = [
"der",
"digest",
"elliptic-curve",
"rfc6979",
"signature",
"spki",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "ed25519"
version = "2.2.1"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fb04eee5d9d907f29e80ee6b0e78f7e2c82342c63e3580d8c4f69d9d5aad963"
2021-06-22 09:04:40 +00:00
dependencies = [
"pkcs8",
"serde",
2021-06-22 09:04:40 +00:00
"signature",
]
[[package]]
name = "ed25519-dalek"
2023-10-01 09:48:45 +00:00
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7277392b266383ef8396db7fdeb1e77b6c52fed775f5df15bb24f35b72156980"
2021-06-22 09:04:40 +00:00
dependencies = [
"curve25519-dalek",
"ed25519",
"rand_core",
2021-06-22 09:04:40 +00:00
"serde",
"sha2",
2021-06-22 09:04:40 +00:00
"zeroize",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "either"
version = "1.9.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2021-02-04 20:10:12 +00:00
2023-10-01 09:48:45 +00:00
[[package]]
name = "elliptic-curve"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b"
dependencies = [
"base16ct",
"crypto-bigint",
"digest",
"ff",
"generic-array",
"group",
"hkdf",
"pem-rfc7468",
"pkcs8",
"rand_core",
"sec1",
"subtle",
"zeroize",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "encoding_rs"
version = "0.8.32"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "enumflags2"
2023-04-25 07:55:47 +00:00
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-25 07:55:47 +00:00
checksum = "c041f5090df68b32bcd905365fd51769c8b9d553fe87fde0b683534f10c01bd2"
dependencies = [
2022-02-14 20:53:11 +00:00
"enumflags2_derive",
"serde",
]
[[package]]
name = "enumflags2_derive"
2023-04-25 07:55:47 +00:00
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-25 07:55:47 +00:00
checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745"
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
]
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]]
name = "errno"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f"
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys",
]
[[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
2023-10-01 09:48:45 +00:00
[[package]]
name = "event-listener"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29e56284f00d94c1bc7fd3c77027b4623c88c1f53d8d2394c6199f2921dea325"
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
[[package]]
name = "exr"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1e481eb11a482815d3e9d618db8c42a93207134662873809335a92327440c18"
dependencies = [
"bit_field",
"flume",
"half",
"lebe",
2023-06-22 08:21:40 +00:00
"miniz_oxide",
2023-03-26 10:52:21 +00:00
"rayon-core",
"smallvec",
"zune-inflate",
]
2023-02-16 11:38:50 +00:00
[[package]]
name = "eyeball"
2023-10-01 09:48:45 +00:00
version = "0.8.7"
2023-02-16 11:38:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "42482893d982111055ce4b24234d6250396d3785767c6b04cedd84612a0b80fb"
2023-02-16 11:38:50 +00:00
dependencies = [
"futures-core",
"readlock",
2023-10-01 09:48:45 +00:00
"tracing",
2023-02-16 11:38:50 +00:00
]
[[package]]
name = "eyeball-im"
2023-10-01 09:48:45 +00:00
version = "0.4.1"
2023-02-16 11:38:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "f5776e9a376b8cd9cafcabf7ed07cc639c18c493d6d8a61fd8265ef013402cbe"
2023-02-16 11:38:50 +00:00
dependencies = [
"futures-core",
2023-03-30 13:03:39 +00:00
"imbl",
2023-02-16 11:38:50 +00:00
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "eyeball-im-util"
2023-10-01 09:48:45 +00:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "191adac85d269e80f4e44c2b3e8fc2b193b2e3574a997962066b5980cab1fcc1"
dependencies = [
"eyeball-im",
"futures-core",
"imbl",
"pin-project-lite",
2023-02-16 11:38:50 +00:00
]
[[package]]
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
[[package]]
name = "fallible-streaming-iterator"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
[[package]]
name = "fastrand"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
[[package]]
name = "fastrand"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
2023-04-14 06:42:23 +00:00
[[package]]
name = "fdeflate"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10"
dependencies = [
"simd-adler32",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "ff"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
dependencies = [
"rand_core",
"subtle",
]
[[package]]
name = "fiat-crypto"
2023-10-01 09:48:45 +00:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "d0870c84016d4b481be5c9f323c24f65e31e901ae618f0e80f4308fb00de1d2d"
2021-02-04 20:10:12 +00:00
[[package]]
name = "field-offset"
2023-06-22 08:21:40 +00:00
version = "0.3.6"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
2021-02-04 20:10:12 +00:00
dependencies = [
2023-06-22 08:21:40 +00:00
"memoffset 0.9.0",
2021-10-21 12:46:04 +00:00
"rustc_version",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "flagset"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda653ca797810c02f7ca4b804b40b8b95ae046eb989d356bce17919a8c25499"
[[package]]
name = "flate2"
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
dependencies = [
"crc32fast",
2023-06-22 08:21:40 +00:00
"miniz_oxide",
]
[[package]]
name = "flume"
version = "0.10.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"pin-project",
2023-04-14 06:42:23 +00:00
"spin 0.9.8",
]
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"
2023-06-22 08:21:40 +00:00
version = "1.2.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2021-02-23 15:10:14 +00:00
dependencies = [
"percent-encoding",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "fractal"
2023-08-17 08:26:37 +00:00
version = "5.0.0-beta2"
2021-02-04 20:10:12 +00:00
dependencies = [
"ashpd",
2022-10-23 16:53:37 +00:00
"djb_hash",
2023-02-16 11:38:50 +00:00
"eyeball-im",
"futures-channel",
"futures-util",
"geo-uri",
2021-02-04 20:10:12 +00:00
"gettext-rs",
"gst-plugin-gtk4",
"gstreamer",
"gstreamer-base",
"gstreamer-pbutils",
"gstreamer-play",
"gstreamer-video",
2021-02-04 20:10:12 +00:00
"gtk4",
"html-escape",
2021-04-20 17:20:16 +00:00
"html2pango",
"html5gum",
"image 0.24.7",
2023-10-23 16:01:41 +00:00
"indexmap 2.0.2",
2021-02-12 23:11:59 +00:00
"libadwaita",
"libshumate",
"libspelling",
2021-02-23 15:10:14 +00:00
"matrix-sdk",
"matrix-sdk-ui",
"mime",
"mime_guess",
2021-02-04 20:10:12 +00:00
"once_cell",
2022-10-22 08:48:23 +00:00
"oo7",
"pulldown-cmark",
"qrcode",
"rand",
"regex",
"rmp-serde",
"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",
"strum",
2022-03-16 16:16:34 +00:00
"thiserror",
2021-02-23 15:10:14 +00:00
"tokio",
2023-07-25 12:36:26 +00:00
"tracing",
"tracing-subscriber",
"url",
2021-02-04 20:10:12 +00:00
]
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",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "futures"
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
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"
2023-04-14 06:42:23 +00:00
version = "0.3.28"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2021-02-04 20:10:12 +00:00
dependencies = [
"futures-core",
2023-10-01 09:48:45 +00:00
"futures-sink",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "futures-core"
2023-04-14 06:42:23 +00:00
version = "0.3.28"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2021-02-04 20:10:12 +00:00
[[package]]
name = "futures-executor"
2023-04-14 06:42:23 +00:00
version = "0.3.28"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2021-02-04 20:10:12 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-04-14 06:42:23 +00:00
version = "0.3.28"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2021-02-04 20:10:12 +00:00
[[package]]
name = "futures-lite"
2023-04-14 06:42:23 +00:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
dependencies = [
"fastrand 1.9.0",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "futures-macro"
2023-04-14 06:42:23 +00:00
version = "0.3.28"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "futures-sink"
2023-04-14 06:42:23 +00:00
version = "0.3.28"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2021-02-23 15:10:14 +00:00
2021-02-04 20:10:12 +00:00
[[package]]
name = "futures-task"
2023-04-14 06:42:23 +00:00
version = "0.3.28"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2021-02-04 20:10:12 +00:00
[[package]]
name = "futures-util"
2023-04-14 06:42:23 +00:00
version = "0.3.28"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
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",
]
[[package]]
name = "fuzzy-matcher"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94"
dependencies = [
"thread_local",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "g2gen"
2023-03-26 10:52:21 +00:00
version = "1.0.1"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "fc2c7625b2fc250dd90b63f7887a6bb0f7ec1d714c8278415bea2669ef20820e"
2021-06-22 09:04:40 +00:00
dependencies = [
"g2poly",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"syn 1.0.109",
2021-06-22 09:04:40 +00:00
]
[[package]]
name = "g2p"
2023-03-26 10:52:21 +00:00
version = "1.0.1"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "fc36d9bdc3d2da057775a9f4fa7d7b09edab3e0eda7a92cc353358fa63b8519e"
2021-06-22 09:04:40 +00:00
dependencies = [
"g2gen",
"g2poly",
]
[[package]]
name = "g2poly"
2023-03-26 10:52:21 +00:00
version = "1.0.1"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "af6a86e750338603ea2c14b1c0bfe58cd61f87ca67a0021d9334996024608e12"
2021-06-22 09:04:40 +00:00
2021-02-04 20:10:12 +00:00
[[package]]
name = "gdk-pixbuf"
version = "0.18.0"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbc9c2ed73a81d556b65d08879ba4ee58808a6b1927ce915262185d6d547c6f3"
2021-02-04 20:10:12 +00:00
dependencies = [
"gdk-pixbuf-sys",
"gio",
"glib",
"libc",
"once_cell",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "gdk-pixbuf-sys"
version = "0.18.0"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
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"
version = "0.7.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6982d9815ed6ac95b0467b189e81f29dea26d08a732926ec113e65744ed3f96c"
2021-02-04 20:10:12 +00:00
dependencies = [
"cairo-rs",
"gdk-pixbuf",
"gdk4-sys",
"gio",
"glib",
"libc",
"pango",
]
[[package]]
name = "gdk4-sys"
version = "0.7.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbab43f332a3cf1df9974da690b5bb0e26720ed09a228178ce52175372dcfef0"
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-win32"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe66650c41f64e41ada9f85c4bdb96e5549c669e594892240dfb147a63256057"
dependencies = [
"gdk4",
"gdk4-win32-sys",
"gio",
"glib",
"libc",
"system-deps",
]
[[package]]
name = "gdk4-win32-sys"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b5c187546cd3ad9f1787b46c66272d8fcdf8197bfe4f6e2647fe910c39e396d"
dependencies = [
"gdk-pixbuf-sys",
"gdk4-sys",
"glib-sys",
"libc",
"system-deps",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "generic-array"
2023-04-14 06:42:23 +00:00
version = "0.14.7"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2021-02-23 15:10:14 +00:00
dependencies = [
"typenum",
"version_check",
2023-10-01 09:48:45 +00:00
"zeroize",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "geo-uri"
2023-03-26 10:52:21 +00:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "a6b8812a079cb4a3b5b366c2d05db8e231e2f231c443acb3532daad996d89f71"
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-02-23 15:10:14 +00:00
[[package]]
name = "getrandom"
2023-06-22 08:21:40 +00:00
version = "0.2.10"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if",
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
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "ghash"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"
dependencies = [
"opaque-debug",
"polyval",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "gif"
2023-03-26 10:52:21 +00:00
version = "0.12.0"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
2021-06-22 09:04:40 +00:00
dependencies = [
"color_quant",
"weezl",
]
[[package]]
name = "gimli"
version = "0.27.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
2021-02-23 15:10:14 +00:00
[[package]]
name = "gio"
version = "0.18.1"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7884cba6b1c5db1607d970cadf44b14a43913d42bc68766eea6a5e2fe0891524"
2021-02-04 20:10:12 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
2021-02-04 20:10:12 +00:00
"gio-sys",
"glib",
"libc",
"once_cell",
"pin-project-lite",
"smallvec",
2021-02-04 20:10:12 +00:00
"thiserror",
]
[[package]]
name = "gio-sys"
version = "0.18.1"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
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"
version = "0.18.1"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "331156127e8166dd815cf8d2db3a5beb492610c716c03ee6db4f2d07092af0a7"
2021-02-04 20:10:12 +00:00
dependencies = [
"bitflags 2.4.0",
2021-02-04 20:10:12 +00:00
"futures-channel",
"futures-core",
"futures-executor",
"futures-task",
"futures-util",
"gio-sys",
2021-02-04 20:10:12 +00:00
"glib-macros",
"glib-sys",
"gobject-sys",
"libc",
"memchr",
2021-02-04 20:10:12 +00:00
"once_cell",
"smallvec",
"thiserror",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "glib-macros"
version = "0.18.0"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "179643c50bf28d20d2f6eacd2531a88f2f5d9747dd0b86b8af1e8bb5dd0de3c0"
2021-02-04 20:10:12 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"heck",
2023-10-01 09:48:45 +00:00
"proc-macro-crate 1.3.1",
2021-02-04 20:10:12 +00:00
"proc-macro-error",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "glib-sys"
version = "0.18.1"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
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.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2023-02-16 11:38:50 +00:00
[[package]]
name = "gloo-timers"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "gloo-timers"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "gloo-utils"
2023-10-01 09:48:45 +00:00
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa"
dependencies = [
"js-sys",
"serde",
"serde_json",
"wasm-bindgen",
"web-sys",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "gobject-sys"
version = "0.18.0"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
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.18.1"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b2228cda1505613a7a956cca69076892cfbda84fc2b7a62b94a41a272c0c401"
2021-02-04 20:10:12 +00:00
dependencies = [
"glib",
"graphene-sys",
"libc",
]
[[package]]
name = "graphene-sys"
version = "0.18.1"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc4144cee8fc8788f2a9b73dc5f1d4e1189d1f95305c4cb7bd9c1af1cfa31f59"
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
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "group"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
dependencies = [
"ff",
"rand_core",
"subtle",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "gsk4"
version = "0.7.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc25855255120f294d874acd6eaf4fbed7ce1cdc550e2d8415ea57fafbe816d5"
2021-02-04 20:10:12 +00:00
dependencies = [
"cairo-rs",
"gdk4",
"glib",
"graphene-rs",
"gsk4-sys",
"libc",
"pango",
]
[[package]]
name = "gsk4-sys"
version = "0.7.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1ecf3a63bf1223d68f80f72cc896c4d8c80482fbce1c9a12c66d3de7290ee46"
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"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3ee0132150ee059c35642b51c5d663eadb9fa4d21f83a56dd584b03c1c45ffd"
dependencies = [
"gdk4-win32",
"gst-plugin-version-helper",
"gstreamer",
"gstreamer-base",
"gstreamer-gl",
"gstreamer-video",
"gtk4",
"windows-sys",
]
[[package]]
name = "gst-plugin-version-helper"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87921209945e5dc809848a100115fad65bd127671896f0206f45e272080cc4c9"
dependencies = [
"chrono",
]
[[package]]
name = "gstreamer"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8cdb86791dc39a5443f7d08cf3e7ae9c88a94991aba620d177cb5804838201f"
dependencies = [
"cfg-if",
"futures-channel",
"futures-core",
"futures-util",
"glib",
"gstreamer-sys",
2023-10-01 09:48:45 +00:00
"itertools",
"libc",
"muldiv",
"num-integer",
2022-07-20 08:43:02 +00:00
"num-rational 0.4.1",
"option-operations",
"paste",
"pretty-hex",
"smallvec",
"thiserror",
]
[[package]]
name = "gstreamer-audio"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02343d7fca125d363893744396f4df1af923033a1415ed9b886c32fdd70ae42a"
dependencies = [
"cfg-if",
"glib",
"gstreamer",
"gstreamer-audio-sys",
"gstreamer-base",
"libc",
]
[[package]]
name = "gstreamer-audio-sys"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35814f1ce58c811c642b06c6c21bd82ce18df1dc062640d13ac20438c0626b36"
dependencies = [
"glib-sys",
"gobject-sys",
"gstreamer-base-sys",
"gstreamer-sys",
"libc",
"system-deps",
]
[[package]]
name = "gstreamer-base"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fe38a6d5c1e516ce3fd6069e972a540d315448ed69fdadad739e6c6c6eb2a01"
dependencies = [
"atomic_refcell",
"cfg-if",
"glib",
"gstreamer",
"gstreamer-base-sys",
"libc",
]
[[package]]
name = "gstreamer-base-sys"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b9c029583ed61fa5258076a42df91732dc7f5582044ea7ee66a721641e6af4"
dependencies = [
"glib-sys",
"gobject-sys",
"gstreamer-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
]
[[package]]
name = "gstreamer-gl"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e616c363a79424bae3623d85b5f71542ef5cad318da9fe4e887e78992a4239d3"
dependencies = [
"glib",
"gstreamer",
"gstreamer-base",
"gstreamer-gl-sys",
"gstreamer-video",
"libc",
]
[[package]]
name = "gstreamer-gl-sys"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5e3e2f33ecd2d4e410a63ccad18d0e3692dac69b9752286e66a006fa57c952d"
dependencies = [
"glib-sys",
"gobject-sys",
"gstreamer-base-sys",
"gstreamer-sys",
"gstreamer-video-sys",
"libc",
"system-deps",
]
[[package]]
name = "gstreamer-pbutils"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1e5eabfea8ac22256724f6093927dfd2148018175239036d4721e1dfc59c7d7"
dependencies = [
"glib",
"gstreamer",
"gstreamer-audio",
"gstreamer-pbutils-sys",
"gstreamer-video",
"libc",
"thiserror",
]
[[package]]
name = "gstreamer-pbutils-sys"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6faae6e3454bc8ca5986d7ef6477fc44b809bfc952a8680eaedb4f2e001f9d69"
dependencies = [
"glib-sys",
"gobject-sys",
"gstreamer-audio-sys",
"gstreamer-sys",
"gstreamer-video-sys",
"libc",
"system-deps",
]
[[package]]
name = "gstreamer-play"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f55c41b4a9c101dff739f8230a2d92cd0fddb8313cc82887fbae0a723b240871"
dependencies = [
"glib",
"gstreamer",
"gstreamer-play-sys",
"gstreamer-video",
"libc",
]
[[package]]
name = "gstreamer-play-sys"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cc41f9524b98e49da474696abd8fc026b0accfea7fd754e5be09107cb96038f"
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.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a70e3a99118bcd1221f8a62d7a905bae5e5cc2cda678bb46bf3cd36e0f899d33"
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
2022-07-20 08:43:02 +00:00
"system-deps",
]
[[package]]
name = "gstreamer-video"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0db8adfc000cd58f8ece0fe6b4beb79e19e4a6135cfb81138fdb016b603f7d60"
dependencies = [
"cfg-if",
"futures-channel",
"glib",
"gstreamer",
"gstreamer-base",
"gstreamer-video-sys",
"libc",
]
[[package]]
name = "gstreamer-video-sys"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0284250a09fa824b21df1a21967eef4a5d85b5e0c1e335ed2ba9b9be1424dae"
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 = "gtk4"
version = "0.7.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3b095b26f2a2df70be1805d3590eeb9d7a05ecb5be9649b82defc72dc56228c"
2021-02-04 20:10:12 +00:00
dependencies = [
"cairo-rs",
"field-offset",
"futures-channel",
"gdk-pixbuf",
"gdk4",
"gio",
"glib",
"graphene-rs",
"gsk4",
"gtk4-macros",
"gtk4-sys",
"libc",
"pango",
]
[[package]]
name = "gtk4-macros"
version = "0.7.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d57ec49cf9b657f69a05bca8027cff0a8dfd0c49e812be026fc7311f2163832f"
2021-02-04 20:10:12 +00:00
dependencies = [
"anyhow",
2023-10-01 09:48:45 +00:00
"proc-macro-crate 1.3.1",
2021-02-04 20:10:12 +00:00
"proc-macro-error",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"syn 1.0.109",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "gtk4-sys"
version = "0.7.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b0bdde87c50317b4f355bcbb4a9c2c414ece1b7c824fb4ad4ba8f3bdb2c6603"
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.20"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
2021-02-23 15:10:14 +00:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap 1.9.3",
2021-02-23 15:10:14 +00:00
"slab",
"tokio",
"tokio-util",
2021-02-23 15:10:14 +00:00
"tracing",
]
[[package]]
name = "half"
version = "2.2.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02b4af3693f1b705df946e9fe5631932443781d0aabb423b62fcd4d73f6d2fd0"
dependencies = [
"crunchy",
]
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"
2023-03-26 10:52:21 +00:00
[[package]]
name = "hashbrown"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
2022-07-20 08:43:02 +00:00
dependencies = [
"ahash",
]
2023-06-22 08:21:40 +00:00
[[package]]
name = "hashbrown"
2023-10-23 16:01:41 +00:00
version = "0.14.2"
2023-06-22 08:21:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-23 16:01:41 +00:00
checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
2023-06-22 08:21:40 +00:00
dependencies = [
"ahash",
"allocator-api2",
]
[[package]]
name = "hashlink"
2023-06-22 08:21:40 +00:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f"
dependencies = [
2023-10-23 16:01:41 +00:00
"hashbrown 0.14.2",
2022-07-20 08:43:02 +00:00
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "hdrhistogram"
version = "7.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
dependencies = [
"byteorder",
"num-traits",
]
[[package]]
name = "headers"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584"
dependencies = [
"base64 0.13.1",
"bitflags 1.3.2",
"bytes",
"headers-core",
"http",
"httpdate",
"mime",
"sha1",
]
[[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.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
[[package]]
name = "hermit-abi"
version = "0.3.2"
2023-03-26 10:52:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
2023-03-26 10:52:21 +00:00
[[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 = [
"digest",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "html-escape"
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
dependencies = [
"utf8-width",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "html2pango"
2023-10-03 08:27:46 +00:00
version = "0.6.0"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-03 08:27:46 +00:00
checksum = "a5f061cc3c0538033f81a94417f209e2b1908e3dab8b87b205d84e6109c8091b"
2021-04-20 17:20:16 +00:00
dependencies = [
"ammonia",
"anyhow",
"html5ever",
2021-04-20 17:20:16 +00:00
"linkify",
"maplit",
"markup5ever_rcdom",
"once_cell",
2021-04-20 17:20:16 +00:00
"regex",
]
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",
"markup5ever",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"syn 1.0.109",
2021-04-20 17:20:16 +00:00
]
[[package]]
name = "html5gum"
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c4e556171a058ba117bbe88b059fb37b6289023e007d2903ea6dca3a3cbff14"
dependencies = [
"jetscii",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "http"
version = "0.2.9"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
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",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "http-range-header"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
2021-02-23 15:10:14 +00:00
[[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 = "hyper"
version = "0.14.27"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
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",
"socket2 0.4.9",
2021-02-23 15:10:14 +00:00
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
2023-10-01 09:48:45 +00:00
name = "hyper-rustls"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97"
dependencies = [
"futures-util",
"http",
"hyper",
"rustls",
"rustls-native-certs",
"tokio",
"tokio-rustls",
]
[[package]]
name = "hyper-tls"
2021-02-23 15:10:14 +00:00
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"
2023-06-22 08:21:40 +00:00
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
2023-03-26 10:52:21 +00:00
"windows",
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
"cc",
]
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"
2023-06-22 08:21:40 +00:00
version = "0.4.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
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",
"num-iter",
"num-rational 0.3.2",
2021-06-22 09:04:40 +00:00
"num-traits",
]
[[package]]
name = "image"
version = "0.24.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711"
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"exr",
"gif",
"jpeg-decoder",
"num-rational 0.4.1",
"num-traits",
"png",
2023-03-26 10:52:21 +00:00
"qoi",
"tiff",
2021-06-22 09:04:40 +00:00
]
2023-03-30 13:03:39 +00:00
[[package]]
name = "imbl"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2806b69cd9f4664844027b64465eacb444c67c1db9c778e341adff0c25cdb0d"
dependencies = [
"bitmaps",
"imbl-sized-chunks",
"rand_core",
2023-03-30 13:03:39 +00:00
"rand_xoshiro",
"serde",
"version_check",
]
[[package]]
name = "imbl-sized-chunks"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6957ea0b2541c5ca561d3ef4538044af79f8a05a1eb3a3b148936aaceaa1076"
dependencies = [
"bitmaps",
]
2022-05-07 14:39:18 +00:00
[[package]]
name = "indexed_db_futures"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfbcff6ae46750b15cc594bfd277b188cbddcfdc1817848f97f03f26f8625b9e"
2022-05-07 14:39:18 +00:00
dependencies = [
"cfg-if",
2022-05-07 14:39:18 +00:00
"js-sys",
"uuid",
2022-05-07 14:39:18 +00:00
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "indexmap"
2023-03-26 10:52:21 +00:00
version = "1.9.3"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2021-02-23 15:10:14 +00:00
dependencies = [
"autocfg",
2023-03-26 10:52:21 +00:00
"hashbrown 0.12.3",
2023-10-01 09:48:45 +00:00
"serde",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "indexmap"
2023-10-23 16:01:41 +00:00
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-23 16:01:41 +00:00
checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897"
dependencies = [
"equivalent",
2023-10-23 16:01:41 +00:00
"hashbrown 0.14.2",
"serde",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "indoc"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
[[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",
2021-02-23 15:10:14 +00:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "io-lifetimes"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
dependencies = [
"hermit-abi",
"libc",
"windows-sys",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "ipnet"
version = "2.8.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
2021-02-23 15:10:14 +00:00
2021-02-12 23:11:59 +00:00
[[package]]
2023-10-01 09:48:45 +00:00
name = "iri-string"
version = "0.7.0"
2021-02-12 23:11:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "21859b667d66a4c1dacd9df0863b3efb65785474255face87f5bca39dd8407c0"
2021-02-12 23:11:59 +00:00
dependencies = [
2023-10-01 09:48:45 +00:00
"memchr",
"serde",
2021-02-12 23:11:59 +00:00
]
[[package]]
name = "itertools"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
dependencies = [
"either",
]
2022-01-19 22:16:01 +00:00
[[package]]
name = "itoa"
version = "1.0.9"
2022-01-19 22:16:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2022-01-19 22:16:01 +00:00
[[package]]
name = "jetscii"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47f142fe24a9c9944451e8349de0a56af5f3e7226dc46f3ed4d4ecc0b85af75e"
[[package]]
name = "jpeg-decoder"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e"
dependencies = [
"rayon",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "js-sys"
2023-06-22 08:21:40 +00:00
version = "0.3.64"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
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",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "k256"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cadb76004ed8e97623117f3df85b17aaa6626ab0b0831e6573f104df16cd1bcc"
dependencies = [
"cfg-if",
"ecdsa",
"elliptic-curve",
"once_cell",
"sha2",
"signature",
]
[[package]]
name = "konst"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "030400e39b2dff8beaa55986a17e0014ad657f569ca92426aafcb5e8e71faee7"
dependencies = [
"const_panic",
"konst_kernel",
"typewit",
]
[[package]]
name = "konst_kernel"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3376133edc39f027d551eb77b077c2865a0ef252b2e7d0dd6b6dc303db95d8b5"
dependencies = [
"typewit",
]
[[package]]
name = "kv-log-macro"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
dependencies = [
"log",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "language-tags"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
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"
2023-01-07 09:37:55 +00:00
dependencies = [
"spin 0.5.2",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "lebe"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
2021-02-12 23:11:59 +00:00
[[package]]
name = "libadwaita"
version = "0.5.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06444f4ca05a60693da6e9e2b591bd40a298e65a118a8d5e830771718b3e0253"
2021-02-12 23:11:59 +00:00
dependencies = [
"gdk-pixbuf",
"gdk4",
"gio",
"glib",
"gtk4",
"libadwaita-sys",
"libc",
"pango",
]
[[package]]
name = "libadwaita-sys"
version = "0.5.2"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "021cfe3d1fcfa82411765a791f7e9b32f35dd98ce88d2e3fa10e7320f5cc8ce7"
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.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
2023-01-07 09:37:55 +00:00
[[package]]
name = "libm"
version = "0.2.7"
2023-01-07 09:37:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
2023-01-07 09:37:55 +00:00
[[package]]
name = "libshumate"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b743d27ff75bbd10e97729e771fa706f0e2e80503f8b737c7ebd39abd6ed1b2d"
dependencies = [
"gdk-pixbuf",
"gdk4",
"gio",
"glib",
"gtk4",
"libc",
"libshumate-sys",
]
[[package]]
name = "libshumate-sys"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2d267a8d525823ad53986bde3b56ed6ef8c319227b33fc71028daed41ea5103"
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"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "667dfbb50c3d1f7ee1d33afdc04d1255923ece7642db3303046e7d63d997d77d"
2021-02-12 23:11:59 +00:00
dependencies = [
"bitflags 1.3.2",
"cc",
"cookie-factory",
2023-04-14 06:42:23 +00:00
"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"
version = "0.6.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79cf5b88f52534df7ca88d451ae9628e22124e3cc5c60966465a7db479534c7a"
dependencies = [
"bindgen",
"cc",
2022-07-20 08:43:02 +00:00
"system-deps",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "libspelling"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "850363056ea48497686407e7e583c50c793896c151bbe7139ad4ea02fbf15e76"
dependencies = [
"gio",
"glib",
"gtk4",
"libc",
"libspelling-sys",
"sourceview5",
]
[[package]]
name = "libspelling-sys"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "377675d9465da676ebc05742743d5e5bc53a49be1138f463583181aea97da3c6"
dependencies = [
"gio-sys",
"glib-sys",
"gobject-sys",
"gtk4-sys",
"libc",
"sourceview5-sys",
"system-deps",
]
[[package]]
name = "libsqlite3-sys"
2023-10-01 09:48:45 +00:00
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326"
dependencies = [
"pkg-config",
"vcpkg",
]
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",
]
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
2023-03-26 10:52:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2023-03-26 10:52:21 +00:00
[[package]]
name = "linux-raw-sys"
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f"
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"
2023-06-22 08:21:40 +00:00
version = "0.4.10"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
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"
2023-06-22 08:21:40 +00:00
version = "0.4.19"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2021-02-04 20:10:12 +00:00
dependencies = [
"value-bag",
2021-02-04 20:10:12 +00:00
]
2021-05-28 09:04:33 +00:00
[[package]]
name = "lru"
2023-03-26 10:52:21 +00:00
version = "0.9.0"
2021-05-28 09:04:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "71e7d46de488603ffdd5f30afbc64fbba2378214a2c3a2fb83abf3d33126df17"
2021-05-28 09:04:33 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"hashbrown 0.13.2",
2021-05-28 09:04:33 +00:00
]
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"
2022-07-20 08:43:02 +00:00
[[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",
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",
"markup5ever",
2021-04-20 17:20:16 +00:00
"tendril",
"xml5ever",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "mas-http"
version = "0.1.0"
source = "git+https://github.com/matrix-org/matrix-authentication-service?rev=4280045b24bc71ef1fa100c0a046ed15e6e20748#4280045b24bc71ef1fa100c0a046ed15e6e20748"
dependencies = [
"bytes",
"futures-util",
"headers",
"http",
"http-body",
"hyper",
"mas-tower",
"once_cell",
"opentelemetry",
"serde",
"serde_json",
"serde_urlencoded",
"thiserror",
"tower",
"tower-http",
"tracing",
"tracing-opentelemetry",
]
[[package]]
name = "mas-iana"
version = "0.1.0"
source = "git+https://github.com/matrix-org/matrix-authentication-service?rev=4280045b24bc71ef1fa100c0a046ed15e6e20748#4280045b24bc71ef1fa100c0a046ed15e6e20748"
dependencies = [
"schemars",
"serde",
]
[[package]]
name = "mas-jose"
version = "0.1.0"
source = "git+https://github.com/matrix-org/matrix-authentication-service?rev=4280045b24bc71ef1fa100c0a046ed15e6e20748#4280045b24bc71ef1fa100c0a046ed15e6e20748"
dependencies = [
"base64ct",
"chrono",
"digest",
"ecdsa",
"elliptic-curve",
"generic-array",
"hmac",
"k256",
"mas-iana",
"p256",
"p384",
"rand",
"rsa",
"schemars",
"sec1",
"serde",
"serde_json",
"serde_with",
"sha2",
"signature",
"thiserror",
"tracing",
"url",
]
[[package]]
name = "mas-keystore"
version = "0.1.0"
source = "git+https://github.com/matrix-org/matrix-authentication-service?rev=4280045b24bc71ef1fa100c0a046ed15e6e20748#4280045b24bc71ef1fa100c0a046ed15e6e20748"
dependencies = [
"aead",
"base64ct",
"chacha20poly1305",
"const-oid",
"cookie",
"der",
"ecdsa",
"elliptic-curve",
"generic-array",
"k256",
"mas-iana",
"mas-jose",
"p256",
"p384",
"pem-rfc7468",
"pkcs1",
"pkcs8",
"rand",
"rsa",
"sec1",
"spki",
"thiserror",
]
[[package]]
name = "mas-oidc-client"
version = "0.1.0"
source = "git+https://github.com/matrix-org/matrix-authentication-service?rev=4280045b24bc71ef1fa100c0a046ed15e6e20748#4280045b24bc71ef1fa100c0a046ed15e6e20748"
dependencies = [
"base64ct",
"bytes",
"chrono",
"form_urlencoded",
"futures",
"futures-util",
"headers",
"http",
"http-body",
"hyper",
"hyper-rustls",
"language-tags",
"mas-http",
"mas-iana",
"mas-jose",
"mas-keystore",
"mime",
"oauth2-types",
"once_cell",
"rand",
"rustls",
"serde",
"serde_json",
"serde_urlencoded",
"serde_with",
"thiserror",
"tokio",
"tower",
"tower-http",
"tracing",
"url",
]
[[package]]
name = "mas-tower"
version = "0.1.0"
source = "git+https://github.com/matrix-org/matrix-authentication-service?rev=4280045b24bc71ef1fa100c0a046ed15e6e20748#4280045b24bc71ef1fa100c0a046ed15e6e20748"
dependencies = [
"http",
"opentelemetry",
"opentelemetry-http",
"opentelemetry-semantic-conventions",
"pin-project-lite",
"tokio",
"tower",
"tracing",
"tracing-opentelemetry",
]
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata 0.1.10",
]
[[package]]
name = "matrix-pickle"
2023-10-01 09:48:45 +00:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "d7fd26463ce5d86b8d9bb9c4142d453198ba22fb91bd46d3c9f144ae699d821d"
dependencies = [
"matrix-pickle-derive",
"thiserror",
]
[[package]]
name = "matrix-pickle-derive"
2023-10-01 09:48:45 +00:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "93779aa78d39c2fe34746287b10a866192cf8af1b81767fff76bd64099acc0f5"
dependencies = [
2023-10-01 09:48:45 +00:00
"proc-macro-crate 2.0.0",
"proc-macro-error",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "matrix-sdk"
version = "0.6.2"
2023-10-23 16:01:41 +00:00
source = "git+https://github.com/zecakeh/matrix-rust-sdk.git?rev=acdfea6ecc4bc7f74746dcef7a11d8b221cc993a#acdfea6ecc4bc7f74746dcef7a11d8b221cc993a"
2021-02-23 15:10:14 +00:00
dependencies = [
2021-11-24 14:28:23 +00:00
"anymap2",
2023-10-01 09:48:45 +00:00
"as_variant",
"async-channel",
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",
"bytesize",
"cfg-vis",
2023-10-01 09:48:45 +00:00
"chrono",
2021-02-23 15:10:14 +00:00
"dashmap",
2023-10-01 09:48:45 +00:00
"event-listener 3.0.0",
2023-02-16 11:38:50 +00:00
"eyeball",
"eyeball-im",
"eyeball-im-util",
2021-11-24 14:28:23 +00:00
"futures-core",
"futures-util",
2023-10-01 09:48:45 +00:00
"gloo-timers 0.3.0",
2021-02-23 15:10:14 +00:00
"http",
"hyper",
"image 0.24.7",
2023-03-30 13:03:39 +00:00
"imbl",
2023-10-23 16:01:41 +00:00
"indexmap 2.0.2",
2023-10-01 09:48:45 +00:00
"language-tags",
"mas-oidc-client",
2021-02-23 15:10:14 +00:00
"matrix-sdk-base",
"matrix-sdk-common",
2022-05-07 14:39:18 +00:00
"matrix-sdk-indexeddb",
"matrix-sdk-sqlite",
2021-02-23 15:10:14 +00:00
"mime",
2023-05-04 13:37:24 +00:00
"mime2ext",
"rand",
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",
"serde_html_form",
2021-02-23 15:10:14 +00:00
"serde_json",
2023-10-01 09:48:45 +00:00
"sha2",
"tempfile",
2021-02-23 15:10:14 +00:00
"thiserror",
"tokio",
2023-10-01 09:48:45 +00:00
"tokio-util",
"tower",
2021-02-23 15:10:14 +00:00
"tracing",
"url",
2023-10-01 09:48:45 +00:00
"urlencoding",
2021-02-23 15:10:14 +00:00
"zeroize",
]
[[package]]
name = "matrix-sdk-base"
version = "0.6.1"
2023-10-23 16:01:41 +00:00
source = "git+https://github.com/zecakeh/matrix-rust-sdk.git?rev=acdfea6ecc4bc7f74746dcef7a11d8b221cc993a#acdfea6ecc4bc7f74746dcef7a11d8b221cc993a"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-10-01 09:48:45 +00:00
"as_variant",
2022-05-07 14:39:18 +00:00
"async-trait",
"bitflags 2.4.0",
2021-02-23 15:10:14 +00:00
"dashmap",
2023-02-16 11:38:50 +00:00
"eyeball",
2021-11-24 14:28:23 +00:00
"futures-util",
2021-02-23 15:10:14 +00:00
"matrix-sdk-common",
"matrix-sdk-crypto",
"matrix-sdk-store-encryption",
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",
2023-03-30 13:03:39 +00:00
"tokio",
2021-02-23 15:10:14 +00:00
"tracing",
]
[[package]]
name = "matrix-sdk-common"
version = "0.6.0"
2023-10-23 16:01:41 +00:00
source = "git+https://github.com/zecakeh/matrix-rust-sdk.git?rev=acdfea6ecc4bc7f74746dcef7a11d8b221cc993a#acdfea6ecc4bc7f74746dcef7a11d8b221cc993a"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-10-01 09:48:45 +00:00
"async-trait",
2022-07-20 08:43:02 +00:00
"futures-core",
2021-11-24 14:28:23 +00:00
"futures-util",
2023-10-01 09:48:45 +00:00
"gloo-timers 0.3.0",
2021-02-23 15:10:14 +00:00
"instant",
"ruma",
"serde",
"serde_json",
2023-10-01 09:48:45 +00:00
"thiserror",
2021-02-23 15:10:14 +00:00
"tokio",
2023-10-01 09:48:45 +00:00
"tracing",
"tracing-subscriber",
2023-10-23 16:01:41 +00:00
"wasm-bindgen",
2021-02-23 15:10:14 +00:00
"wasm-bindgen-futures",
2023-10-01 09:48:45 +00:00
"web-sys",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "matrix-sdk-crypto"
version = "0.6.0"
2023-10-23 16:01:41 +00:00
source = "git+https://github.com/zecakeh/matrix-rust-sdk.git?rev=acdfea6ecc4bc7f74746dcef7a11d8b221cc993a#acdfea6ecc4bc7f74746dcef7a11d8b221cc993a"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-05-13 10:18:52 +00:00
"aes",
2023-10-01 09:48:45 +00:00
"as_variant",
"async-std",
2022-05-07 14:39:18 +00:00
"async-trait",
2023-10-01 09:48:45 +00:00
"bs58",
2021-02-23 15:10:14 +00:00
"byteorder",
"cfg-if",
2022-05-13 10:18:52 +00:00
"ctr",
2023-02-16 11:38:50 +00:00
"eyeball",
"futures-core",
2021-11-24 14:28:23 +00:00
"futures-util",
"hkdf",
2022-02-14 20:53:11 +00:00
"hmac",
2023-10-01 09:48:45 +00:00
"itertools",
2021-02-23 15:10:14 +00:00
"matrix-sdk-common",
2022-05-13 10:18:52 +00:00
"matrix-sdk-qrcode",
2023-10-01 09:48:45 +00:00
"pbkdf2",
"rand",
2023-03-13 16:41:39 +00:00
"rmp-serde",
2021-06-03 17:22:29 +00:00
"ruma",
2021-02-23 15:10:14 +00:00
"serde",
"serde_json",
"sha2",
2023-10-01 09:48:45 +00:00
"subtle",
2021-02-23 15:10:14 +00:00
"thiserror",
2022-07-20 08:43:02 +00:00
"tokio",
2023-03-30 13:03:39 +00:00
"tokio-stream",
2021-02-23 15:10:14 +00:00
"tracing",
"ulid",
"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"
2023-10-23 16:01:41 +00:00
source = "git+https://github.com/zecakeh/matrix-rust-sdk.git?rev=acdfea6ecc4bc7f74746dcef7a11d8b221cc993a#acdfea6ecc4bc7f74746dcef7a11d8b221cc993a"
2022-05-07 14:39:18 +00:00
dependencies = [
"anyhow",
"async-trait",
2023-10-01 09:48:45 +00:00
"base64 0.21.4",
"getrandom",
"gloo-utils",
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",
2023-10-01 09:48:45 +00:00
"serde-wasm-bindgen",
2022-05-07 14:39:18 +00:00
"serde_json",
"thiserror",
2023-03-30 13:03:39 +00:00
"tokio",
2022-05-07 14:39:18 +00:00
"tracing",
"wasm-bindgen",
"web-sys",
]
2022-05-13 10:18:52 +00:00
[[package]]
name = "matrix-sdk-qrcode"
version = "0.4.0"
2023-10-23 16:01:41 +00:00
source = "git+https://github.com/zecakeh/matrix-rust-sdk.git?rev=acdfea6ecc4bc7f74746dcef7a11d8b221cc993a#acdfea6ecc4bc7f74746dcef7a11d8b221cc993a"
2022-05-13 10:18:52 +00:00
dependencies = [
"byteorder",
"qrcode",
"ruma-common",
"thiserror",
"vodozemac",
]
2022-03-10 14:41:47 +00:00
[[package]]
name = "matrix-sdk-sqlite"
version = "0.1.0"
2023-10-23 16:01:41 +00:00
source = "git+https://github.com/zecakeh/matrix-rust-sdk.git?rev=acdfea6ecc4bc7f74746dcef7a11d8b221cc993a#acdfea6ecc4bc7f74746dcef7a11d8b221cc993a"
2022-03-10 14:41:47 +00:00
dependencies = [
2022-05-07 14:39:18 +00:00
"async-trait",
"deadpool-sqlite",
2023-10-01 09:48:45 +00:00
"itertools",
2022-03-10 14:41:47 +00:00
"matrix-sdk-base",
"matrix-sdk-crypto",
"matrix-sdk-store-encryption",
"rmp-serde",
2022-05-07 14:39:18 +00:00
"ruma",
"rusqlite",
2022-03-10 14:41:47 +00:00
"serde",
"serde_json",
"thiserror",
"tokio",
"tracing",
"vodozemac",
2022-03-10 14:41:47 +00:00
]
[[package]]
name = "matrix-sdk-store-encryption"
version = "0.2.0"
2023-10-23 16:01:41 +00:00
source = "git+https://github.com/zecakeh/matrix-rust-sdk.git?rev=acdfea6ecc4bc7f74746dcef7a11d8b221cc993a#acdfea6ecc4bc7f74746dcef7a11d8b221cc993a"
dependencies = [
"blake3",
"chacha20poly1305",
"displaydoc",
"getrandom",
"hmac",
2023-10-01 09:48:45 +00:00
"pbkdf2",
"rand",
2023-02-16 11:38:50 +00:00
"rmp-serde",
"serde",
"serde_json",
"sha2",
"thiserror",
"zeroize",
]
[[package]]
name = "matrix-sdk-ui"
version = "0.6.0"
2023-10-23 16:01:41 +00:00
source = "git+https://github.com/zecakeh/matrix-rust-sdk.git?rev=acdfea6ecc4bc7f74746dcef7a11d8b221cc993a#acdfea6ecc4bc7f74746dcef7a11d8b221cc993a"
dependencies = [
2023-10-01 09:48:45 +00:00
"as_variant",
"async-once-cell",
"async-rx",
"async-stream",
"async-trait",
"async_cell",
"chrono",
"eyeball",
"eyeball-im",
"eyeball-im-util",
"futures-core",
"futures-util",
"fuzzy-matcher",
"imbl",
2023-10-23 16:01:41 +00:00
"indexmap 2.0.2",
2023-10-01 09:48:45 +00:00
"itertools",
"matrix-sdk",
"matrix-sdk-base",
"mime",
"once_cell",
"pin-project-lite",
"ruma",
"serde",
"serde_json",
"thiserror",
"tokio",
"tracing",
"unicode-normalization",
2023-10-01 09:48:45 +00:00
"url",
]
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"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [
"autocfg",
]
[[package]]
name = "memoffset"
2023-06-22 08:21:40 +00:00
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
dependencies = [
"autocfg",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "mime"
2023-03-26 10:52:21 +00:00
version = "0.3.17"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2021-02-23 15:10:14 +00:00
2023-05-04 13:37:24 +00:00
[[package]]
name = "mime2ext"
version = "0.1.52"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1a85a5069ebd40e64b1985773cc81addbe9d90d7ecf60e7b5475a57ad584c70"
[[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"
2023-04-14 06:42:23 +00:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
"simd-adler32",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "mio"
2023-06-22 08:21:40 +00:00
version = "0.8.8"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
2021-02-23 15:10:14 +00:00
dependencies = [
"libc",
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.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "956787520e75e9bd233246045d19f42fb73242759cc57fba9611d940ae96d4b0"
[[package]]
name = "nanorand"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
dependencies = [
"getrandom",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "native-tls"
version = "0.2.11"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
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.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
dependencies = [
"bitflags 1.3.2",
"cfg-if",
"libc",
"memoffset 0.7.1",
"pin-utils",
"static_assertions",
]
[[package]]
name = "nom"
version = "7.1.3"
2022-01-19 22:16:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2022-01-19 22:16:01 +00:00
dependencies = [
"memchr",
"minimal-lexical",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2022-10-22 08:48:23 +00:00
[[package]]
name = "num"
version = "0.4.1"
2022-10-22 08:48:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af"
2022-10-22 08:48:23 +00:00
dependencies = [
"num-bigint",
"num-complex",
"num-integer",
"num-iter",
"num-rational 0.4.1",
"num-traits",
]
[[package]]
name = "num-bigint"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
2023-01-07 09:37:55 +00:00
[[package]]
name = "num-bigint-dig"
version = "0.8.4"
2023-01-07 09:37:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
2023-01-07 09:37:55 +00:00
dependencies = [
"byteorder",
"lazy_static",
"libm",
"num-integer",
"num-iter",
"num-traits",
"rand",
2023-01-07 09:37:55 +00:00
"serde",
"smallvec",
"zeroize",
]
2022-10-22 08:48:23 +00:00
[[package]]
name = "num-complex"
version = "0.4.3"
2022-10-22 08:48:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
2022-10-22 08:48:23 +00:00
dependencies = [
"num-traits",
]
[[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",
2022-10-22 08:48:23 +00:00
"num-bigint",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
dependencies = [
"autocfg",
2023-10-01 09:48:45 +00:00
"libm",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "num_cpus"
version = "1.16.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2021-02-23 15:10:14 +00:00
dependencies = [
"hermit-abi",
2021-02-23 15:10:14 +00:00
"libc",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "oauth2-types"
version = "0.1.0"
source = "git+https://github.com/matrix-org/matrix-authentication-service?rev=4280045b24bc71ef1fa100c0a046ed15e6e20748#4280045b24bc71ef1fa100c0a046ed15e6e20748"
dependencies = [
"chrono",
"data-encoding",
"http",
"indoc",
"language-tags",
"mas-iana",
"mas-jose",
"parse-display",
"serde",
"serde_json",
"serde_with",
"sha2",
"thiserror",
"url",
]
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 = "object"
version = "0.31.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
dependencies = [
"memchr",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "once_cell"
2023-06-22 08:21:40 +00:00
version = "1.18.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2021-02-04 20:10:12 +00:00
2022-10-22 08:48:23 +00:00
[[package]]
name = "oo7"
2023-08-12 08:04:21 +00:00
version = "0.2.0"
2022-10-22 08:48:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-12 08:04:21 +00:00
checksum = "9ccef508ad85be8bf619ea56ba0f99ebcef59d87d759e22fd3bf2d96649c897c"
2022-10-22 08:48:23 +00:00
dependencies = [
"aes",
"byteorder",
"cbc",
2023-10-01 09:48:45 +00:00
"cipher",
"digest",
2023-04-25 07:55:47 +00:00
"dirs",
2023-01-07 09:37:55 +00:00
"futures-util",
2022-10-22 08:48:23 +00:00
"hkdf",
"hmac",
"num",
2023-01-07 09:37:55 +00:00
"num-bigint-dig",
2022-10-22 08:48:23 +00:00
"once_cell",
2023-10-01 09:48:45 +00:00
"pbkdf2",
"rand",
2022-10-22 08:48:23 +00:00
"serde",
"sha2",
2022-10-22 08:48:23 +00:00
"tokio",
2022-11-12 13:45:39 +00:00
"tracing",
2023-01-07 09:37:55 +00:00
"zbus",
2022-10-22 08:48:23 +00:00
"zeroize",
]
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"
version = "0.10.56"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e"
2021-02-23 15:10:14 +00:00
dependencies = [
"bitflags 1.3.2",
"cfg-if",
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"
2023-04-14 06:42:23 +00:00
version = "0.1.1"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2022-07-20 08:43:02 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
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"
version = "0.9.91"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac"
2021-02-23 15:10:14 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "opentelemetry"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9591d937bc0e6d2feb6f71a559540ab300ea49955229c347a517a28d27784c54"
dependencies = [
"opentelemetry_api",
"opentelemetry_sdk",
]
[[package]]
name = "opentelemetry-http"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7594ec0e11d8e33faf03530a4c49af7064ebba81c1480e01be67d90b356508b"
dependencies = [
"async-trait",
"bytes",
"http",
"opentelemetry_api",
]
[[package]]
name = "opentelemetry-semantic-conventions"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73c9f9340ad135068800e7f1b24e9e09ed9e7143f5bf8518ded3d3ec69789269"
dependencies = [
"opentelemetry",
]
[[package]]
name = "opentelemetry_api"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a81f725323db1b1206ca3da8bb19874bbd3f57c3bcd59471bfb04525b265b9b"
dependencies = [
"futures-channel",
"futures-util",
"indexmap 1.9.3",
"js-sys",
"once_cell",
"pin-project-lite",
"thiserror",
"urlencoding",
]
[[package]]
name = "opentelemetry_sdk"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa8e705a0612d48139799fcbaba0d4a90f06277153e43dd2bdc16c6f0edd8026"
dependencies = [
"async-trait",
"crossbeam-channel",
"futures-channel",
"futures-executor",
"futures-util",
"once_cell",
"opentelemetry_api",
"ordered-float",
"percent-encoding",
"rand",
"regex",
"thiserror",
]
[[package]]
name = "option-ext"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
[[package]]
name = "option-operations"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c26d27bb1aeab65138e4bf7666045169d1717febcc9ff870166be8348b223d0"
dependencies = [
"paste",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "ordered-float"
version = "3.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a54938017eacd63036332b4ae5c8a49fc8c0c1d6d629893057e4f13609edd06"
dependencies = [
"num-traits",
]
[[package]]
name = "ordered-stream"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
dependencies = [
"futures-core",
"pin-project-lite",
]
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2023-10-01 09:48:45 +00:00
[[package]]
name = "p256"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
dependencies = [
"ecdsa",
"elliptic-curve",
"primeorder",
"sha2",
]
[[package]]
name = "p384"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
dependencies = [
"ecdsa",
"elliptic-curve",
"primeorder",
"sha2",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "pango"
version = "0.18.0"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06a9e54b831d033206160096b825f2070cf5fda7e35167b1c01e9e774f9202d1"
2021-02-04 20:10:12 +00:00
dependencies = [
"gio",
2021-02-04 20:10:12 +00:00
"glib",
"libc",
"once_cell",
"pango-sys",
]
[[package]]
name = "pango-sys"
version = "0.18.0"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
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"
2023-04-14 06:42:23 +00:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
2022-03-10 14:41:47 +00:00
[[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",
"parking_lot_core",
2021-02-23 15:10:14 +00:00
]
2022-03-10 14:41:47 +00:00
[[package]]
name = "parking_lot_core"
2023-06-22 08:21:40 +00:00
version = "0.9.8"
2022-03-10 14:41:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
2022-03-10 14:41:47 +00:00
dependencies = [
"cfg-if",
2022-03-10 14:41:47 +00:00
"libc",
2023-06-22 08:21:40 +00:00
"redox_syscall 0.3.5",
2022-03-10 14:41:47 +00:00
"smallvec",
2023-06-22 08:21:40 +00:00
"windows-targets",
2022-03-10 14:41:47 +00:00
]
[[package]]
2023-10-01 09:48:45 +00:00
name = "parse-display"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "c6509d08722b53e8dafe97f2027b22ccbe3a5db83cb352931e9716b0aa44bc5c"
dependencies = [
2023-10-01 09:48:45 +00:00
"once_cell",
"parse-display-derive",
"regex",
]
2021-02-23 15:10:14 +00:00
[[package]]
2023-10-01 09:48:45 +00:00
name = "parse-display-derive"
version = "0.8.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "68517892c8daf78da08c0db777fcc17e07f2f63ef70041718f8a7630ad84f341"
dependencies = [
"once_cell",
"proc-macro2",
"quote",
"regex",
"regex-syntax 0.7.4",
"structmeta",
"syn 2.0.38",
]
2021-02-23 15:10:14 +00:00
[[package]]
2023-10-01 09:48:45 +00:00
name = "paste"
version = "1.0.14"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
2021-02-23 15:10:14 +00:00
2023-03-26 10:52:21 +00:00
[[package]]
name = "pbkdf2"
version = "0.12.2"
2023-03-26 10:52:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2023-03-26 10:52:21 +00:00
dependencies = [
"digest",
2023-03-26 10:52:21 +00:00
"hmac",
]
[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
2023-10-01 09:48:45 +00:00
[[package]]
name = "pem-rfc7468"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
dependencies = [
"base64ct",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "percent-encoding"
2023-06-22 08:21:40 +00:00
version = "2.3.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2021-02-23 15:10:14 +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 = [
"phf_shared 0.10.0",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "phf"
version = "0.11.2"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
2021-04-20 17:20:16 +00:00
dependencies = [
"phf_macros",
"phf_shared 0.11.2",
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.10.0"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
2021-04-20 17:20:16 +00:00
dependencies = [
"phf_shared 0.10.0",
"rand",
2021-04-20 17:20:16 +00:00
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "phf_generator"
version = "0.11.2"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
2022-07-20 08:43:02 +00:00
dependencies = [
"phf_shared 0.11.2",
"rand",
2022-07-20 08:43:02 +00:00
]
2022-08-19 11:34:37 +00:00
[[package]]
name = "phf_macros"
version = "0.11.2"
2022-08-19 11:34:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
2022-08-19 11:34:37 +00:00
dependencies = [
"phf_generator 0.11.2",
"phf_shared 0.11.2",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2022-08-19 11:34:37 +00:00
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "phf_shared"
version = "0.10.0"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
2021-04-20 17:20:16 +00:00
dependencies = [
"siphasher",
]
2022-03-02 10:07:23 +00:00
[[package]]
name = "phf_shared"
version = "0.11.2"
2022-03-02 10:07:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
2022-03-02 10:07:23 +00:00
dependencies = [
"siphasher",
]
2022-02-03 16:20:49 +00:00
[[package]]
name = "pin-project"
version = "1.1.3"
2022-02-03 16:20:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
2022-02-03 16:20:49 +00:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.1.3"
2022-02-03 16:20:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
2022-02-03 16:20:49 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2022-02-03 16:20:49 +00:00
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "pin-project-lite"
version = "0.2.12"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05"
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"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc2180a4a84b855be86e6cd72fa6fd4318278871d2b1082e7cd05fe64b135ccb"
dependencies = [
"anyhow",
"bitflags 1.3.2",
2023-04-14 06:42:23 +00:00
"errno",
"libc",
"libspa",
"libspa-sys",
2023-03-26 10:52:21 +00:00
"nix",
"once_cell",
"pipewire-sys",
"thiserror",
]
[[package]]
name = "pipewire-sys"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a95290eedb7fb6aa3922fdc0261cd0ddeb940abcdbdef28778928106554d2123"
dependencies = [
"bindgen",
"libspa-sys",
2022-07-20 08:43:02 +00:00
"system-deps",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "pkcs1"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
dependencies = [
"der",
"pkcs8",
"spki",
]
[[package]]
name = "pkcs5"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6"
dependencies = [
"aes",
"cbc",
"der",
"pbkdf2",
"scrypt",
"sha2",
"spki",
]
[[package]]
name = "pkcs7"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d79178be066405e0602bf3035946edef6b11b3f9dde46dfe5f8bfd7dea4b77e7"
dependencies = [
"der",
"spki",
"x509-cert",
]
[[package]]
name = "pkcs8"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
dependencies = [
2022-07-20 08:43:02 +00:00
"der",
2023-10-01 09:48:45 +00:00
"pkcs5",
"rand_core",
2022-07-20 08:43:02 +00:00
"spki",
2021-06-22 09:04:40 +00:00
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "pkg-config"
version = "0.3.27"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2021-02-04 20:10:12 +00:00
[[package]]
name = "platforms"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630"
[[package]]
name = "png"
2023-06-22 08:21:40 +00:00
version = "0.17.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11"
dependencies = [
"bitflags 1.3.2",
"crc32fast",
2023-04-14 06:42:23 +00:00
"fdeflate",
"flate2",
2023-06-22 08:21:40 +00:00
"miniz_oxide",
]
[[package]]
name = "polling"
2023-04-25 07:55:47 +00:00
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-25 07:55:47 +00:00
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
dependencies = [
"autocfg",
"bitflags 1.3.2",
"cfg-if",
2023-03-26 10:52:21 +00:00
"concurrent-queue",
"libc",
"log",
2023-03-26 10:52:21 +00:00
"pin-project-lite",
"windows-sys",
]
2021-02-04 20:10:12 +00:00
[[package]]
2021-02-23 15:10:14 +00:00
name = "poly1305"
2023-10-01 09:48:45 +00:00
version = "0.8.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
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
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "polyval"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb"
dependencies = [
"cfg-if",
"cpufeatures",
"opaque-debug",
"universal-hash",
]
2021-02-04 20:10:12 +00:00
[[package]]
2021-02-23 15:10:14 +00:00
name = "ppv-lite86"
version = "0.2.17"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
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"
2023-10-01 09:48:45 +00:00
[[package]]
name = "primeorder"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3"
dependencies = [
"elliptic-curve",
]
[[package]]
name = "proc-macro-crate"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
dependencies = [
"once_cell",
2023-10-01 09:48:45 +00:00
"toml_edit 0.19.14",
]
[[package]]
name = "proc-macro-crate"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8"
dependencies = [
"toml_edit 0.20.2",
]
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",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"syn 1.0.109",
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 = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2021-02-04 20:10:12 +00:00
"version_check",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "proc-macro2"
2023-10-01 09:48:45 +00:00
version = "1.0.69"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
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"
2023-10-01 09:48:45 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d"
dependencies = [
"bytes",
"prost-derive",
]
[[package]]
name = "prost-derive"
2023-10-01 09:48:45 +00:00
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32"
dependencies = [
"anyhow",
2023-10-01 09:48:45 +00:00
"itertools",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
]
2021-05-21 14:18:16 +00:00
[[package]]
name = "pulldown-cmark"
version = "0.9.3"
2021-05-21 14:18:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998"
2021-05-21 14:18:16 +00:00
dependencies = [
"bitflags 1.3.2",
"getopts",
2021-05-21 14:18:16 +00:00
"memchr",
"unicase",
]
2021-06-22 09:04:40 +00:00
[[package]]
2023-03-26 10:52:21 +00:00
name = "qoi"
version = "0.4.1"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
2021-06-22 09:04:40 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"bytemuck",
2021-06-22 09:04:40 +00:00
]
[[package]]
2023-03-26 10:52:21 +00:00
name = "qrcode"
version = "0.12.0"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "16d2f1455f3630c6e5107b4f2b94e74d76dea80736de0981fd27644216cff57f"
2021-06-22 09:04:40 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"checked_int_cast",
"image 0.23.14",
2021-06-22 09:04:40 +00:00
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "quote"
version = "1.0.32"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
2021-02-04 20:10:12 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
2021-02-04 20:10:12 +00:00
]
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",
"rand_chacha",
"rand_core",
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",
"rand_core",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "rand_core"
version = "0.6.4"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2021-02-23 15:10:14 +00:00
dependencies = [
"getrandom",
2021-02-23 15:10:14 +00:00
]
2023-02-16 11:38:50 +00:00
[[package]]
name = "rand_xoshiro"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
dependencies = [
"rand_core",
2023-02-16 11:38:50 +00:00
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "rayon"
version = "1.7.0"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
2021-06-22 09:04:40 +00:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.11.0"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
2021-06-22 09:04:40 +00:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
2023-02-16 11:38:50 +00:00
[[package]]
name = "readlock"
version = "0.1.7"
2023-02-16 11:38:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7b323e7196daa571c8584de958be19e92941c41f845776fe06babfe8fa280a2"
2023-02-16 11:38:50 +00:00
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 1.3.2",
2021-02-23 15:10:14 +00:00
]
2023-04-14 06:42:23 +00:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags 1.3.2",
2023-04-14 06:42:23 +00:00
]
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",
2023-04-14 06:42:23 +00:00
"redox_syscall 0.2.16",
2022-07-20 08:43:02 +00:00
"thiserror",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "regex"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata 0.3.6",
"regex-syntax 0.7.4",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax 0.6.29",
]
[[package]]
name = "regex-automata"
version = "0.3.6"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69"
2021-02-04 20:10:12 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax 0.7.4",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "regex-syntax"
version = "0.6.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2021-02-04 20:10:12 +00:00
[[package]]
name = "regex-syntax"
version = "0.7.4"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
2021-02-04 20:10:12 +00:00
2021-02-23 15:10:14 +00:00
[[package]]
name = "reqwest"
version = "0.11.18"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
2021-02-23 15:10:14 +00:00
dependencies = [
"async-compression",
2023-10-01 09:48:45 +00:00
"base64 0.21.4",
2021-02-23 15:10:14 +00:00
"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",
"log",
"mime",
"native-tls",
"once_cell",
2021-02-23 15:10:14 +00:00
"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",
"tokio-util",
2022-07-20 08:43:02 +00:00
"tower-service",
2021-02-23 15:10:14 +00:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"wasm-streams",
2021-02-23 15:10:14 +00:00
"web-sys",
"winreg",
]
[[package]]
2023-10-01 09:48:45 +00:00
name = "rfc6979"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
dependencies = [
"hmac",
"subtle",
]
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin 0.5.2",
"untrusted",
"web-sys",
"winapi",
]
2023-02-16 11:38:50 +00:00
[[package]]
name = "rmp"
version = "0.8.12"
2023-02-16 11:38:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f9860a6cc38ed1da53456442089b4dfa35e7cedaa326df63017af88385e6b20"
2023-02-16 11:38:50 +00:00
dependencies = [
"byteorder",
"num-traits",
"paste",
]
[[package]]
name = "rmp-serde"
version = "1.1.2"
2023-02-16 11:38:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bffea85eea980d8a74453e5d02a8d93028f3c34725de143085a844ebe953258a"
2023-02-16 11:38:50 +00:00
dependencies = [
"byteorder",
"rmp",
"serde",
]
2021-02-23 15:10:14 +00:00
[[package]]
2021-06-22 09:04:40 +00:00
name = "rqrr"
2023-03-26 10:52:21 +00:00
version = "0.6.0"
2021-05-18 15:14:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "4a8b87d1f9f69bb1a6c77e20fd303f9617b2b68dcff87cd9bcbfff2ced4b8a0b"
2021-06-03 17:22:29 +00:00
dependencies = [
2021-06-22 09:04:40 +00:00
"g2p",
"image 0.24.7",
"lru",
2021-06-03 17:22:29 +00:00
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "rsa"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8"
dependencies = [
"byteorder",
"const-oid",
"digest",
"num-bigint-dig",
"num-integer",
"num-iter",
"num-traits",
"pkcs1",
"pkcs8",
"rand_core",
"signature",
"spki",
"subtle",
"zeroize",
]
2021-06-03 17:22:29 +00:00
[[package]]
name = "ruma"
2023-10-23 16:01:41 +00:00
version = "0.9.2"
2023-10-01 09:48:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-23 16:01:41 +00:00
checksum = "cc39664df66d707506b1dd318c30e600f25ebc1e7feadf4804ae45db67922c53"
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",
2023-10-01 09:48:45 +00:00
"ruma-events",
2021-02-23 15:10:14 +00:00
"ruma-federation-api",
2023-10-01 09:48:45 +00:00
"ruma-html",
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"
2023-10-01 09:48:45 +00:00
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b9f07f9a17ff1fcc515eecf8efdb1cb6b92091555dc3ac25d434653b7b09d8d"
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",
"js_option",
2021-02-23 15:10:14 +00:00
"maplit",
"ruma-common",
2023-10-01 09:48:45 +00:00
"ruma-events",
2021-02-23 15:10:14 +00:00
"serde",
"serde_html_form",
2021-02-23 15:10:14 +00:00
"serde_json",
]
[[package]]
name = "ruma-common"
2023-10-01 09:48:45 +00:00
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bd6a9c0dd0dc4986bf5fb963765f59fb0e3f462b7ca8ba466f47d217688865c"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-10-01 09:48:45 +00:00
"as_variant",
"base64 0.21.4",
2022-03-29 13:45:13 +00:00
"bytes",
"form_urlencoded",
"getrandom",
2022-03-29 13:45:13 +00:00
"http",
2023-10-23 16:01:41 +00:00
"indexmap 2.0.2",
2022-05-07 14:39:18 +00:00
"js-sys",
2021-02-23 15:10:14 +00:00
"js_int",
"konst",
2022-03-29 13:45:13 +00:00
"percent-encoding",
"rand",
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_html_form",
2021-02-23 15:10:14 +00:00
"serde_json",
2021-08-13 20:58:17 +00:00
"thiserror",
2022-03-29 13:45:13 +00:00
"tracing",
"url",
"uuid",
"wildmatch",
2021-02-23 15:10:14 +00:00
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "ruma-events"
2023-10-23 16:01:41 +00:00
version = "0.27.7"
2023-10-01 09:48:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-23 16:01:41 +00:00
checksum = "9135a0b84495fabbe46c477a1fcdef181001a215ec4b1f9215320cf980397636"
2023-10-01 09:48:45 +00:00
dependencies = [
"as_variant",
2023-10-23 16:01:41 +00:00
"indexmap 2.0.2",
2023-10-01 09:48:45 +00:00
"js_int",
"js_option",
"percent-encoding",
"pulldown-cmark",
"regex",
"ruma-common",
"ruma-html",
"ruma-identifiers-validation",
"ruma-macros",
"serde",
"serde_json",
"thiserror",
"tracing",
"url",
"wildmatch",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "ruma-federation-api"
2023-10-01 09:48:45 +00:00
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1901c1f27bc327652d58af2a130c73acef3198abeccd24cee97f7267fdf3fe7"
2021-02-23 15:10:14 +00:00
dependencies = [
"js_int",
"ruma-common",
2023-10-01 09:48:45 +00:00
"ruma-events",
2021-02-23 15:10:14 +00:00
"serde",
"serde_json",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "ruma-html"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9674a149b1a6965fe2174ba528c89ee201258abd9209bbe74953df7073a83a5b"
dependencies = [
"as_variant",
"html5ever",
"phf 0.11.2",
"tracing",
"wildmatch",
]
2022-03-10 14:41:47 +00:00
[[package]]
name = "ruma-identifiers-validation"
2023-10-01 09:48:45 +00:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf8ad1259274f2f57c20901bd1cc5e4a8f23169d1c1d887b6338b02f058e9b41"
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"
2023-10-01 09:48:45 +00:00
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0280534a4b3e34416f883285fac4f9c408cd0b737890ae66f3e7a7056d14be80"
2021-02-23 15:10:14 +00:00
dependencies = [
2022-07-20 08:43:02 +00:00
"once_cell",
2023-10-01 09:48:45 +00:00
"proc-macro-crate 2.0.0",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2022-03-29 13:45:13 +00:00
"ruma-identifiers-validation",
2022-07-20 08:43:02 +00:00
"serde",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
"toml 0.8.2",
2021-02-23 15:10:14 +00:00
]
2022-05-07 14:39:18 +00:00
[[package]]
name = "ruma-push-gateway-api"
2023-10-01 09:48:45 +00:00
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f343045c4d4a5943f93b5014160af3c7413e6ee32ea47b147e1e91f2a977486b"
2021-06-22 09:04:40 +00:00
dependencies = [
"js_int",
"ruma-common",
2023-10-01 09:48:45 +00:00
"ruma-events",
2021-06-22 09:04:40 +00:00
"serde",
"serde_json",
2021-06-03 17:22:29 +00:00
]
[[package]]
name = "rusqlite"
2023-10-01 09:48:45 +00:00
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2"
dependencies = [
2023-10-01 09:48:45 +00:00
"bitflags 2.4.0",
"fallible-iterator",
"fallible-streaming-iterator",
"hashlink",
"libsqlite3-sys",
"smallvec",
]
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
[[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"
version = "0.4.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
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 = "rustix"
version = "0.37.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4eb579851244c2c03e7c24f501c3432bed80b8f720af1d6e5b0e0f01555a035"
dependencies = [
"bitflags 1.3.2",
2023-04-14 06:42:23 +00:00
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys 0.3.8",
"windows-sys",
]
[[package]]
name = "rustix"
version = "0.38.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7db8590df6dfcd144d22afd1b83b36c21a18d7cbc1dc4bb5295a8712e9eb662"
dependencies = [
"bitflags 2.4.0",
"errno",
"libc",
"linux-raw-sys 0.4.10",
"windows-sys",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "rustls"
version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8"
dependencies = [
"log",
"ring",
"rustls-webpki",
"sct",
]
[[package]]
name = "rustls-native-certs"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
dependencies = [
"openssl-probe",
"rustls-pemfile",
"schannel",
"security-framework",
]
[[package]]
name = "rustls-pemfile"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
dependencies = [
"base64 0.21.4",
]
[[package]]
name = "rustls-webpki"
version = "0.101.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "rustversion"
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2021-02-23 15:10:14 +00:00
[[package]]
name = "ryu"
version = "1.0.15"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
2021-02-23 15:10:14 +00:00
2023-10-01 09:48:45 +00:00
[[package]]
name = "salsa20"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
dependencies = [
"cipher",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "schannel"
version = "0.1.22"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
2021-02-23 15:10:14 +00:00
dependencies = [
"windows-sys",
2021-02-23 15:10:14 +00:00
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "schemars"
version = "0.8.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f7b0ce13155372a76ee2e1c5ffba1fe61ede73fbea5630d61eee6fac4929c0c"
dependencies = [
"dyn-clone",
"schemars_derive",
"serde",
"serde_json",
]
[[package]]
name = "schemars_derive"
version = "0.8.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e85e2a16b12bdb763244c69ab79363d71db2b4b918a2def53f80b02e0574b13c"
dependencies = [
"proc-macro2",
"quote",
"serde_derive_internals",
"syn 1.0.109",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "scopeguard"
version = "1.2.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2021-02-23 15:10:14 +00:00
2023-10-01 09:48:45 +00:00
[[package]]
name = "scrypt"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
dependencies = [
"pbkdf2",
"salsa20",
"sha2",
]
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "sec1"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
dependencies = [
"base16ct",
"der",
"generic-array",
"pkcs8",
"subtle",
"zeroize",
]
[[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.9.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
2021-02-23 15:10:14 +00:00
dependencies = [
"bitflags 1.3.2",
2021-02-23 15:10:14 +00:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.9.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
2021-02-23 15:10:14 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "semver"
version = "1.0.18"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
2021-02-04 20:10:12 +00:00
[[package]]
name = "serde"
2023-10-01 09:48:45 +00:00
version = "1.0.188"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
2021-02-23 15:10:14 +00:00
dependencies = [
"serde_derive",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "serde-wasm-bindgen"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e"
dependencies = [
"js-sys",
"serde",
"wasm-bindgen",
]
[[package]]
name = "serde_bytes"
version = "0.11.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff"
dependencies = [
"serde",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "serde_derive"
2023-10-01 09:48:45 +00:00
version = "1.0.188"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.38",
]
[[package]]
name = "serde_derive_internals"
version = "0.26.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 1.0.109",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "serde_html_form"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cde65b75f2603066b78d6fa239b2c07b43e06ead09435f60554d3912962b4a3c"
dependencies = [
"form_urlencoded",
2023-10-23 16:01:41 +00:00
"indexmap 2.0.2",
"itoa",
"ryu",
"serde",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "serde_json"
2023-10-01 09:48:45 +00:00
version = "1.0.107"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
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.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00"
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
]
[[package]]
name = "serde_spanned"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
dependencies = [
"serde",
]
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",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "serde_with"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ca3b16a3d82c4088f343b7480a93550b3eabe1a358569c2dfe38bbcead07237"
dependencies = [
"base64 0.21.4",
"chrono",
"hex",
"indexmap 1.9.3",
2023-10-23 16:01:41 +00:00
"indexmap 2.0.2",
2023-10-01 09:48:45 +00:00
"serde",
"serde_json",
"serde_with_macros",
"time 0.3.25",
]
[[package]]
name = "serde_with_macros"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e6be15c453eb305019bfa438b1593c731f36a289a7853f7707ee29e870b3b3c"
dependencies = [
"darling 0.20.3",
"proc-macro2",
"quote",
"syn 2.0.38",
]
[[package]]
name = "sha1"
version = "0.10.5"
2022-01-19 22:16:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
2022-01-19 22:16:01 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
2021-02-23 15:10:14 +00:00
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "sha2"
2023-10-01 09:48:45 +00:00
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[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-hook"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "signature"
version = "2.1.0"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500"
2023-10-01 09:48:45 +00:00
dependencies = [
"digest",
"rand_core",
]
2021-06-22 09:04:40 +00:00
[[package]]
name = "simd-adler32"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
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"
version = "0.4.8"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-07-20 08:43:02 +00:00
dependencies = [
"autocfg",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "smallvec"
version = "1.11.0"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
2021-02-04 20:10:12 +00:00
[[package]]
name = "socket2"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
dependencies = [
2021-02-23 15:10:14 +00:00
"libc",
"winapi",
]
[[package]]
name = "socket2"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
dependencies = [
"libc",
"windows-sys",
]
2021-04-22 10:22:03 +00:00
[[package]]
name = "sourceview5"
version = "0.7.1"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88c5f976a113e947bc5ec67758b2960c0db4ca76f80fb410d7cd86cd456d9ee5"
2021-04-22 10:22:03 +00:00
dependencies = [
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"
version = "0.7.1"
2021-06-29 07:38:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29637cccd56075a37ba72c0cc8b8d599dbc1d857e30dadea97eaacbc29b7fd46"
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",
]
2023-01-07 09:37:55 +00:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "spin"
2023-04-14 06:42:23 +00:00
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
dependencies = [
"lock_api",
]
[[package]]
name = "spki"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"
dependencies = [
"base64ct",
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"
2023-03-26 10:52:21 +00:00
version = "0.8.7"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
2021-04-20 17:20:16 +00:00
dependencies = [
"new_debug_unreachable",
2022-07-20 08:43:02 +00:00
"once_cell",
"parking_lot",
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",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2021-04-20 17:20:16 +00:00
]
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
2023-10-01 09:48:45 +00:00
[[package]]
name = "structmeta"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ad9e09554f0456d67a69c1584c9798ba733a5b50349a6c0d0948710523922d"
dependencies = [
"proc-macro2",
"quote",
"structmeta-derive",
"syn 2.0.38",
]
[[package]]
name = "structmeta-derive"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.38",
]
[[package]]
name = "strum"
2023-10-19 07:39:53 +00:00
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-19 07:39:53 +00:00
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
2023-10-19 07:39:53 +00:00
version = "0.25.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-19 07:39:53 +00:00
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
"syn 2.0.38",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "subtle"
version = "2.5.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2021-02-23 15:10:14 +00:00
2021-06-22 09:04:40 +00:00
[[package]]
name = "syn"
2023-03-26 10:52:21 +00:00
version = "1.0.109"
2021-06-22 09:04:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2021-06-22 09:04:40 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"unicode-ident",
2021-06-22 09:04:40 +00:00
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "syn"
2023-10-01 09:48:45 +00:00
version = "2.0.38"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b"
2021-02-04 20:10:12 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2022-07-20 08:43:02 +00:00
"unicode-ident",
2021-02-04 20:10:12 +00:00
]
2021-10-09 09:15:43 +00:00
[[package]]
name = "system-deps"
version = "6.1.1"
2021-10-09 09:15:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3"
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",
2023-10-01 09:48:45 +00:00
"toml 0.7.6",
2022-07-20 08:43:02 +00:00
"version-compare",
2021-10-09 09:15:43 +00:00
]
2023-04-25 07:55:47 +00:00
[[package]]
name = "target-lexicon"
version = "0.12.11"
2023-04-25 07:55:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a"
2023-04-25 07:55:47 +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"
version = "3.7.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if",
"fastrand 2.0.0",
2023-04-14 06:42:23 +00:00
"redox_syscall 0.3.5",
"rustix 0.38.13",
"windows-sys",
2021-02-23 15:10:14 +00:00
]
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",
]
2021-02-04 20:10:12 +00:00
[[package]]
name = "thiserror"
2023-10-01 09:48:45 +00:00
version = "1.0.49"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4"
2021-02-04 20:10:12 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-10-01 09:48:45 +00:00
version = "1.0.49"
2021-02-04 20:10:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc"
2021-02-04 20:10:12 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2021-02-04 20:10:12 +00:00
]
[[package]]
name = "thread_local"
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
dependencies = [
"cfg-if",
"once_cell",
]
[[package]]
name = "tiff"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211"
dependencies = [
"flate2",
"jpeg-decoder",
"weezl",
]
[[package]]
name = "time"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
dependencies = [
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "time"
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea"
dependencies = [
"deranged",
"itoa",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
[[package]]
name = "time-macros"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd"
dependencies = [
"time-core",
]
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.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2021-02-23 15:10:14 +00:00
[[package]]
name = "tokio"
version = "1.30.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd"
2021-02-23 15:10:14 +00:00
dependencies = [
"backtrace",
2021-02-23 15:10:14 +00:00
"bytes",
"libc",
"mio",
"num_cpus",
"pin-project-lite",
"signal-hook-registry",
"socket2 0.5.3",
2023-05-08 14:45:17 +00:00
"tokio-macros",
"tracing",
"windows-sys",
2021-02-23 15:10:14 +00:00
]
2023-05-08 14:45:17 +00:00
[[package]]
name = "tokio-macros"
version = "2.1.0"
2023-05-08 14:45:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2023-05-08 14:45:17 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2023-05-08 14:45:17 +00:00
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2021-02-23 15:10:14 +00:00
dependencies = [
"native-tls",
"tokio",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "tokio-rustls"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [
"rustls",
"tokio",
]
2021-02-23 15:10:14 +00:00
[[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"
version = "0.1.14"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
2021-02-23 15:10:14 +00:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
2023-02-16 11:38:50 +00:00
"tokio-util",
2021-02-23 15:10:14 +00:00
]
2022-07-20 08:43:02 +00:00
[[package]]
name = "tokio-util"
2023-10-01 09:48:45 +00:00
version = "0.7.9"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d"
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"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
2023-10-01 09:48:45 +00:00
"toml_edit 0.19.14",
]
[[package]]
name = "toml"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit 0.20.2",
]
[[package]]
name = "toml_datetime"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
version = "0.19.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a"
dependencies = [
2023-10-23 16:01:41 +00:00
"indexmap 2.0.2",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "toml_edit"
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
dependencies = [
2023-10-23 16:01:41 +00:00
"indexmap 2.0.2",
2023-10-01 09:48:45 +00:00
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
2023-10-01 09:48:45 +00:00
"futures-core",
"futures-util",
2023-10-01 09:48:45 +00:00
"hdrhistogram",
"indexmap 1.9.3",
"pin-project",
"pin-project-lite",
2023-10-01 09:48:45 +00:00
"rand",
"slab",
"tokio",
2023-10-01 09:48:45 +00:00
"tokio-util",
"tower-layer",
"tower-service",
"tracing",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "tower-http"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
dependencies = [
"bitflags 2.4.0",
"bytes",
"futures-core",
"futures-util",
"http",
"http-body",
"http-range-header",
"iri-string",
"pin-project-lite",
"tokio",
"tower",
"tower-layer",
"tower-service",
]
[[package]]
name = "tower-layer"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
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"
version = "0.1.37"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if",
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"
2023-06-22 08:21:40 +00:00
version = "0.1.26"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "tracing-core"
version = "0.1.31"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
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",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "tracing-opentelemetry"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc09e402904a5261e42cf27aea09ccb7d5318c6717a9eec3d8e2e65c56b18f19"
dependencies = [
"once_cell",
"opentelemetry",
"tracing",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
[[package]]
name = "tracing-subscriber"
2023-04-25 07:55:47 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-25 07:55:47 +00:00
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
dependencies = [
"matchers",
"nu-ansi-term",
"once_cell",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "try-lock"
version = "0.2.4"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2021-02-23 15:10:14 +00:00
[[package]]
name = "typenum"
version = "1.16.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2021-02-23 15:10:14 +00:00
[[package]]
name = "typewit"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e5cee357cc77d1e02f10a3e6c4e13b8462fafab05998b62d331b7d9485589ff"
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
[[package]]
name = "ulid"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13a3aaa69b04e5b66cc27309710a569ea23593612387d67daaf102e73aa974fd"
dependencies = [
"rand",
]
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"
2023-03-26 10:52:21 +00:00
version = "0.3.13"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-26 10:52:21 +00:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-07-20 08:43:02 +00:00
[[package]]
name = "unicode-ident"
version = "1.0.11"
2022-07-20 08:43:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
2021-02-23 15:10:14 +00:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2021-02-23 15:10:14 +00:00
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-width"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2021-02-23 15:10:14 +00:00
[[package]]
name = "universal-hash"
2023-10-01 09:48:45 +00:00
version = "0.5.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-01 09:48:45 +00:00
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-10-01 09:48:45 +00:00
"crypto-common",
2021-02-23 15:10:14 +00:00
"subtle",
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2021-02-23 15:10:14 +00:00
[[package]]
name = "url"
2023-06-22 08:21:40 +00:00
version = "2.4.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
2021-02-23 15:10:14 +00:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
"serde",
2021-02-23 15:10:14 +00:00
]
2023-10-01 09:48:45 +00:00
[[package]]
name = "urlencoding"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
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"
[[package]]
name = "utf8-width"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5190c9442dcdaf0ddd50f37420417d219ae5261bbf5db120d0f9bab996c9cba1"
2022-05-07 14:39:18 +00:00
[[package]]
name = "uuid"
version = "1.4.1"
2022-05-07 14:39:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
2022-05-07 14:39:18 +00:00
dependencies = [
"getrandom",
"wasm-bindgen",
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"
[[package]]
name = "value-bag"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d92ccd67fb88503048c01b59152a04effd0782d035a83a6d256ce6085f08f4a3"
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 = "version-compare"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
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"
2023-10-01 09:48:45 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c66c59f2218deeddfe34c0fee8a1908967f8566bafd91c3c6b9600d0b68cde1"
dependencies = [
2022-05-13 10:18:52 +00:00
"aes",
2022-07-20 08:43:02 +00:00
"arrayvec",
2023-10-01 09:48:45 +00:00
"base64 0.21.4",
"cbc",
"curve25519-dalek",
"ed25519-dalek",
"getrandom",
"hkdf",
"hmac",
"matrix-pickle",
"pkcs7",
"prost",
"rand",
"serde",
"serde_bytes",
"serde_json",
"sha2",
"subtle",
"thiserror",
"x25519-dalek",
"zeroize",
]
[[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"
2023-06-22 08:21:40 +00:00
version = "0.3.1"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2021-02-23 15:10:14 +00:00
dependencies = [
"try-lock",
]
2021-04-20 17:20:16 +00:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
2021-04-20 17:20:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2021-04-20 17:20:16 +00:00
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"
2023-06-22 08:21:40 +00:00
version = "0.2.87"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if",
2021-02-23 15:10:14 +00:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-06-22 08:21:40 +00:00
version = "0.2.87"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
2021-02-23 15:10:14 +00:00
dependencies = [
"bumpalo",
"log",
2022-07-20 08:43:02 +00:00
"once_cell",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2021-02-23 15:10:14 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-06-22 08:21:40 +00:00
version = "0.4.37"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
2021-02-23 15:10:14 +00:00
dependencies = [
"cfg-if",
2021-02-23 15:10:14 +00:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-06-22 08:21:40 +00:00
version = "0.2.87"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"quote",
2021-02-23 15:10:14 +00:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-06-22 08:21:40 +00:00
version = "0.2.87"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2021-02-23 15:10:14 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-06-22 08:21:40 +00:00
version = "0.2.87"
2022-05-07 14:39:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2022-05-07 14:39:18 +00:00
[[package]]
name = "wasm-streams"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
dependencies = [
"futures-util",
"js-sys",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "web-sys"
2023-06-22 08:21:40 +00:00
version = "0.3.64"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-22 08:21:40 +00:00
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
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 = "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-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
2023-03-26 10:52:21 +00:00
[[package]]
name = "windows"
2023-04-14 06:42:23 +00:00
version = "0.48.0"
2023-03-26 10:52:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
2023-03-26 10:52:21 +00:00
dependencies = [
2023-06-22 08:21:40 +00:00
"windows-targets",
2023-03-26 10:52:21 +00:00
]
2023-04-14 06:42:23 +00:00
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-06-22 08:21:40 +00:00
"windows-targets",
2023-04-14 06:42:23 +00:00
]
[[package]]
name = "windows-targets"
version = "0.48.1"
2023-04-14 06:42:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
2023-04-14 06:42:23 +00:00
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
2022-03-10 14:41:47 +00:00
2023-04-14 06:42:23 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
[[package]]
name = "winnow"
version = "0.5.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5504cc7644f4b593cbc05c4a55bf9bd4e94b867c3c0bd440934174d50482427d"
dependencies = [
"memchr",
]
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"
2023-10-01 09:48:45 +00:00
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96"
dependencies = [
"curve25519-dalek",
"rand_core",
"serde",
"zeroize",
]
[[package]]
name = "x509-cert"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25eefca1d99701da3a57feb07e5079fc62abba059fc139e98c13bbb250f3ef29"
dependencies = [
"const-oid",
"der",
"spki",
]
2023-04-25 07:55:47 +00:00
[[package]]
name = "xdg-home"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd"
dependencies = [
"nix",
"winapi",
]
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",
2021-04-20 17:20:16 +00:00
]
[[package]]
name = "zbus"
version = "3.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948"
dependencies = [
"async-broadcast",
"async-process",
2023-01-07 09:37:55 +00:00
"async-recursion",
"async-trait",
"byteorder",
"derivative",
"enumflags2",
2023-10-01 09:48:45 +00:00
"event-listener 2.5.3",
"futures-core",
"futures-sink",
"futures-util",
"hex",
2023-03-26 10:52:21 +00:00
"nix",
"once_cell",
2023-01-07 09:37:55 +00:00
"ordered-stream",
"rand",
"serde",
"serde_repr",
2023-01-07 09:37:55 +00:00
"sha1",
"static_assertions",
"tokio",
"tracing",
"uds_windows",
"winapi",
2023-04-25 07:55:47 +00:00
"xdg-home",
2023-01-07 09:37:55 +00:00
"zbus_macros",
"zbus_names",
2022-02-14 20:53:11 +00:00
"zvariant",
]
[[package]]
name = "zbus_macros"
version = "3.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d"
dependencies = [
2023-10-01 09:48:45 +00:00
"proc-macro-crate 1.3.1",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"regex",
"syn 1.0.109",
2023-03-26 10:52:21 +00:00
"zvariant_utils",
]
[[package]]
name = "zbus_names"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9"
dependencies = [
"serde",
"static_assertions",
2022-02-14 20:53:11 +00:00
"zvariant",
]
2021-02-23 15:10:14 +00:00
[[package]]
name = "zeroize"
2023-04-14 06:42:23 +00:00
version = "1.6.0"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
2021-02-23 15:10:14 +00:00
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
2023-04-14 06:42:23 +00:00
version = "1.4.2"
2021-02-23 15:10:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-14 06:42:23 +00:00
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
2021-02-23 15:10:14 +00:00
dependencies = [
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
2023-10-01 09:48:45 +00:00
"syn 2.0.38",
2021-02-23 15:10:14 +00:00
]
[[package]]
name = "zune-inflate"
version = "0.2.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
dependencies = [
"simd-adler32",
]
[[package]]
name = "zvariant"
version = "3.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c"
dependencies = [
"byteorder",
2022-02-14 20:53:11 +00:00
"enumflags2",
"libc",
"serde",
"static_assertions",
"url",
2022-02-14 20:53:11 +00:00
"zvariant_derive",
]
[[package]]
name = "zvariant_derive"
version = "3.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd"
dependencies = [
2023-10-01 09:48:45 +00:00
"proc-macro-crate 1.3.1",
2023-03-26 10:52:21 +00:00
"proc-macro2",
"quote",
"syn 1.0.109",
"zvariant_utils",
]
[[package]]
name = "zvariant_utils"
version = "1.0.1"
2023-03-26 10:52:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200"
2023-03-26 10:52:21 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]