pr-tracker/Cargo.lock

2956 lines
73 KiB
Plaintext
Raw Normal View History

2021-02-14 12:57:45 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2022-02-16 17:53:34 +01:00
version = 3
2024-07-15 22:09:52 +02:00
[[package]]
name = "addr2line"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-02-14 12:57:45 +01:00
[[package]]
name = "aead"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331"
dependencies = [
"generic-array",
]
[[package]]
name = "aes"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
dependencies = [
"aes-soft",
"aesni",
"cipher",
]
[[package]]
name = "aes-gcm"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da"
dependencies = [
"aead",
"aes",
"cipher",
"ctr",
"ghash",
"subtle",
]
[[package]]
name = "aes-soft"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
dependencies = [
"cipher",
"opaque-debug",
]
[[package]]
name = "aesni"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
dependencies = [
"cipher",
"opaque-debug",
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "ahash"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
dependencies = [
"cfg-if",
"once_cell",
"version_check",
"zerocopy",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "aho-corasick"
2023-10-28 12:04:31 +02:00
version = "1.1.2"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
2021-02-14 12:57:45 +01:00
dependencies = [
"memchr",
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "allocator-api2"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
2021-02-14 12:57:45 +01:00
[[package]]
2024-07-17 23:09:38 +02:00
name = "anstream"
version = "0.6.14"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-17 23:09:38 +02:00
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
2021-02-14 12:57:45 +01:00
dependencies = [
2024-07-17 23:09:38 +02:00
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is_terminal_polyfill",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
[[package]]
name = "anstyle-parse"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391"
dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "anstyle-wincon"
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
dependencies = [
"anstyle",
"windows-sys 0.52.0",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "anyhow"
2024-07-15 22:09:52 +02:00
version = "1.0.86"
2022-02-16 17:53:34 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-15 22:09:52 +02:00
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
2022-02-16 17:53:34 +01:00
2021-02-14 12:57:45 +01:00
[[package]]
name = "ascii"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e"
[[package]]
name = "askama"
2023-10-28 12:12:12 +02:00
version = "0.12.1"
2022-02-16 17:53:34 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:12:12 +02:00
checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28"
2021-02-14 12:57:45 +01:00
dependencies = [
"askama_derive",
"askama_escape",
2023-10-28 12:12:12 +02:00
"humansize",
"num-traits",
"percent-encoding",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "askama_derive"
2023-10-28 12:12:12 +02:00
version = "0.12.2"
2022-02-16 17:53:34 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:12:12 +02:00
checksum = "9a0fc7dcf8bd4ead96b1d36b41df47c14beedf7b0301fc543d8f2384e66a2ec0"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:12:12 +02:00
"askama_parser",
"basic-toml",
"mime",
"mime_guess",
"proc-macro2",
2023-10-28 12:12:12 +02:00
"quote",
"serde",
2023-11-18 14:01:08 +01:00
"syn 2.0.39",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "askama_escape"
2022-02-16 18:15:29 +01:00
version = "0.10.3"
2022-02-16 17:53:34 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 18:15:29 +01:00
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
2021-02-14 12:57:45 +01:00
[[package]]
2023-10-28 12:12:12 +02:00
name = "askama_parser"
version = "0.1.1"
2022-02-16 17:53:34 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:12:12 +02:00
checksum = "c268a96e01a4c47c8c5c2472aaa570707e006a875ea63e819f75474ceedaf7b4"
2021-02-14 12:57:45 +01:00
dependencies = [
"nom",
]
[[package]]
name = "async-attributes"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
dependencies = [
"quote",
2023-10-28 12:04:31 +02:00
"syn 1.0.109",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "async-channel"
2023-10-28 12:04:31 +02:00
version = "1.9.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
2021-02-14 12:57:45 +01:00
dependencies = [
"concurrent-queue",
2023-10-28 12:04:31 +02:00
"event-listener 2.5.3",
2021-02-14 12:57:45 +01:00
"futures-core",
]
2023-11-18 14:01:08 +01:00
[[package]]
name = "async-channel"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d37875bd9915b7d67c2f117ea2c30a0989874d0b2cb694fe25403c85763c0c9e"
dependencies = [
"concurrent-queue",
"event-listener 3.1.0",
"event-listener-strategy",
"futures-core",
"pin-project-lite 0.2.13",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "async-dup"
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7427a12b8dc09291528cfb1da2447059adb4a257388c2acd6497a79d55cf6f7c"
dependencies = [
"futures-io",
"simple-mutex",
]
[[package]]
name = "async-executor"
2023-10-28 12:04:31 +02:00
version = "1.6.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "4b0c4a4f319e45986f347ee47fef8bf5e81c9abc3f6f58dc2391439f30df65f0"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-11-18 14:01:08 +01:00
"async-lock 2.8.0",
2021-02-14 12:57:45 +01:00
"async-task",
"concurrent-queue",
2023-10-28 12:04:31 +02:00
"fastrand 2.0.1",
2023-11-18 14:01:08 +01:00
"futures-lite 1.13.0",
2021-06-06 15:19:01 +02:00
"slab",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "async-global-executor"
2023-10-28 12:04:31 +02:00
version = "2.3.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-11-18 14:01:08 +01:00
"async-channel 1.9.0",
2021-02-14 12:57:45 +01:00
"async-executor",
2023-11-18 14:01:08 +01:00
"async-io 1.13.0",
"async-lock 2.8.0",
2021-02-14 12:57:45 +01:00
"blocking",
2023-11-18 14:01:08 +01:00
"futures-lite 1.13.0",
2021-02-14 12:57:45 +01:00
"once_cell",
]
[[package]]
name = "async-h1"
2023-10-28 12:04:31 +02:00
version = "2.3.4"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "5d1d1dae8cb2c4258a79d6ed088b7fb9b4763bf4e9b22d040779761e046a2971"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-11-18 14:01:08 +01:00
"async-channel 1.9.0",
2021-02-14 12:57:45 +01:00
"async-dup",
2023-10-28 12:04:31 +02:00
"async-global-executor",
2023-11-18 14:01:08 +01:00
"async-io 1.13.0",
"futures-lite 1.13.0",
2021-02-14 12:57:45 +01:00
"http-types",
"httparse",
"log",
2021-06-06 15:19:01 +02:00
"pin-project",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "async-io"
2023-10-28 12:04:31 +02:00
version = "1.13.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-11-18 14:01:08 +01:00
"async-lock 2.8.0",
2023-10-28 12:04:31 +02:00
"autocfg",
"cfg-if",
2021-02-14 12:57:45 +01:00
"concurrent-queue",
2023-11-18 14:01:08 +01:00
"futures-lite 1.13.0",
2021-02-14 12:57:45 +01:00
"log",
"parking",
2023-11-18 14:01:08 +01:00
"polling 2.8.0",
2023-10-28 12:04:31 +02:00
"rustix 0.37.27",
2021-06-06 15:19:01 +02:00
"slab",
2024-07-15 22:09:52 +02:00
"socket2 0.4.10",
2021-02-14 12:57:45 +01:00
"waker-fn",
]
2023-11-18 14:01:08 +01:00
[[package]]
name = "async-io"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41ed9d5715c2d329bf1b4da8d60455b99b187f27ba726df2883799af9af60997"
dependencies = [
"async-lock 3.1.0",
"cfg-if",
"concurrent-queue",
"futures-io",
"futures-lite 2.0.1",
"parking",
"polling 3.3.0",
2024-07-15 22:09:52 +02:00
"rustix 0.38.28",
2023-11-18 14:01:08 +01:00
"slab",
"tracing",
"waker-fn",
2024-07-15 22:09:52 +02:00
"windows-sys 0.48.0",
2023-11-18 14:01:08 +01:00
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "async-lock"
2023-10-28 12:04:31 +02:00
version = "2.8.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"event-listener 2.5.3",
2021-02-14 12:57:45 +01:00
]
2023-11-18 14:01:08 +01:00
[[package]]
name = "async-lock"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "deb2ab2aa8a746e221ab826c73f48bc6ba41be6763f0855cb249eb6d154cf1d7"
dependencies = [
"event-listener 3.1.0",
"event-listener-strategy",
"pin-project-lite 0.2.13",
]
2021-02-14 12:57:45 +01:00
[[package]]
2023-10-28 12:04:31 +02:00
name = "async-process"
version = "1.8.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-11-18 14:01:08 +01:00
"async-io 1.13.0",
"async-lock 2.8.0",
2023-10-28 12:04:31 +02:00
"async-signal",
"blocking",
"cfg-if",
2023-11-18 14:01:08 +01:00
"event-listener 3.1.0",
"futures-lite 1.13.0",
2024-07-15 22:09:52 +02:00
"rustix 0.38.28",
"windows-sys 0.48.0",
2021-02-14 12:57:45 +01:00
]
[[package]]
2023-10-28 12:04:31 +02:00
name = "async-signal"
2023-11-18 14:01:08 +01:00
version = "0.2.5"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-11-18 14:01:08 +01:00
"async-io 2.2.0",
"async-lock 2.8.0",
2023-10-28 12:04:31 +02:00
"atomic-waker",
"cfg-if",
"futures-core",
"futures-io",
2024-07-15 22:09:52 +02:00
"rustix 0.38.28",
2023-10-28 12:04:31 +02:00
"signal-hook-registry",
"slab",
2024-07-15 22:09:52 +02:00
"windows-sys 0.48.0",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "async-sse"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53bba003996b8fd22245cd0c59b869ba764188ed435392cf2796d03b805ade10"
dependencies = [
2023-11-18 14:01:08 +01:00
"async-channel 1.9.0",
2021-02-14 12:57:45 +01:00
"async-std",
"http-types",
"log",
"memchr",
2021-06-06 15:19:01 +02:00
"pin-project-lite 0.1.12",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "async-std"
2023-10-28 12:04:31 +02:00
version = "1.12.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
2021-02-14 12:57:45 +01:00
dependencies = [
"async-attributes",
2023-11-18 14:01:08 +01:00
"async-channel 1.9.0",
2021-02-14 12:57:45 +01:00
"async-global-executor",
2023-11-18 14:01:08 +01:00
"async-io 1.13.0",
"async-lock 2.8.0",
2021-02-14 12:57:45 +01:00
"async-process",
2021-06-06 15:19:01 +02:00
"crossbeam-utils",
2021-02-14 12:57:45 +01:00
"futures-channel",
"futures-core",
"futures-io",
2023-11-18 14:01:08 +01:00
"futures-lite 1.13.0",
2021-02-14 12:57:45 +01:00
"gloo-timers",
"kv-log-macro",
"log",
"memchr",
"once_cell",
2023-10-28 12:04:31 +02:00
"pin-project-lite 0.2.13",
2021-02-14 12:57:45 +01:00
"pin-utils",
"slab",
"wasm-bindgen-futures",
]
[[package]]
name = "async-task"
2023-10-28 12:04:31 +02:00
version = "4.5.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1"
2021-02-14 12:57:45 +01:00
[[package]]
name = "async-trait"
2023-10-28 12:04:31 +02:00
version = "0.1.74"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"
2021-02-14 12:57:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-11-18 14:01:08 +01:00
"syn 2.0.39",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "atomic-waker"
2023-10-28 12:04:31 +02:00
version = "1.1.2"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2021-02-14 12:57:45 +01:00
[[package]]
name = "autocfg"
2022-02-16 17:53:34 +01:00
version = "1.1.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-02-14 12:57:45 +01:00
2024-07-15 22:09:52 +02:00
[[package]]
name = "backtrace"
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "base-x"
2023-10-28 12:04:31 +02:00
version = "0.2.11"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
2021-02-14 12:57:45 +01:00
[[package]]
name = "base64"
2023-10-28 12:04:31 +02:00
version = "0.13.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2021-02-14 12:57:45 +01:00
2024-07-15 22:09:52 +02:00
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2023-10-28 12:12:12 +02:00
[[package]]
name = "basic-toml"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778"
dependencies = [
"serde",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "bitflags"
2022-02-16 17:53:34 +01:00
version = "1.3.2"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-02-14 12:57:45 +01:00
2023-10-28 12:04:31 +02:00
[[package]]
name = "bitflags"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
2021-02-14 12:57:45 +01:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array",
]
[[package]]
name = "blocking"
2023-11-18 14:01:08 +01:00
version = "1.5.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-11-18 14:01:08 +01:00
"async-channel 2.1.0",
"async-lock 3.1.0",
2021-02-14 12:57:45 +01:00
"async-task",
2023-10-28 12:04:31 +02:00
"fastrand 2.0.1",
"futures-io",
2023-11-18 14:01:08 +01:00
"futures-lite 2.0.1",
2023-10-28 12:04:31 +02:00
"piper",
"tracing",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "bumpalo"
2023-10-28 12:04:31 +02:00
version = "3.14.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2021-02-14 12:57:45 +01:00
[[package]]
name = "byteorder"
2023-10-28 12:04:31 +02:00
version = "1.5.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2021-02-14 12:57:45 +01:00
[[package]]
name = "bytes"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
[[package]]
name = "bytes"
2023-10-28 12:04:31 +02:00
version = "1.5.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
2021-02-14 12:57:45 +01:00
[[package]]
name = "cc"
2023-10-28 12:04:31 +02:00
version = "1.0.83"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
dependencies = [
"libc",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2024-07-15 22:09:52 +02:00
[[package]]
name = "chumsky"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eebd66744a15ded14960ab4ccdbfb51ad3b81f51f3f04a80adac98c985396c9"
dependencies = [
"hashbrown",
"stacker",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "cipher"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
dependencies = [
"generic-array",
]
[[package]]
name = "clap"
2024-07-17 23:09:38 +02:00
version = "4.5.9"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-17 23:09:38 +02:00
checksum = "64acc1846d54c1fe936a78dc189c34e28d3f5afc348403f28ecf53660b9b8462"
2021-02-14 12:57:45 +01:00
dependencies = [
2024-07-17 23:09:38 +02:00
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
version = "4.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fb8393d67ba2e7bfaf28a23458e4e2b543cc73a99595511eb207fdb8aede942"
dependencies = [
"anstream",
"anstyle",
"clap_lex",
2021-02-14 12:57:45 +01:00
"strsim",
]
2024-07-17 23:09:38 +02:00
[[package]]
name = "clap_derive"
version = "4.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085"
dependencies = [
"heck 0.5.0",
"proc-macro2",
"quote",
"syn 2.0.39",
]
[[package]]
name = "clap_lex"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70"
[[package]]
name = "colorchoice"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
2021-02-14 12:57:45 +01:00
[[package]]
name = "combine"
version = "3.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680"
dependencies = [
"ascii",
"byteorder",
"either",
"memchr",
"unreachable",
]
[[package]]
name = "concurrent-queue"
2023-10-28 12:04:31 +02:00
version = "2.3.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"crossbeam-utils",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "const_fn"
2022-02-16 17:53:34 +01:00
version = "0.4.9"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
2021-02-14 12:57:45 +01:00
[[package]]
name = "cookie"
2021-06-06 15:19:01 +02:00
version = "0.14.4"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-06 15:19:01 +02:00
checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
2021-02-14 12:57:45 +01:00
dependencies = [
"aes-gcm",
2024-07-15 22:09:52 +02:00
"base64 0.13.1",
2021-02-14 12:57:45 +01:00
"hkdf",
"hmac",
"percent-encoding",
2022-02-16 17:53:34 +01:00
"rand 0.8.5",
2021-02-14 12:57:45 +01:00
"sha2",
"time",
"version_check",
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "core-foundation"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
2021-02-14 12:57:45 +01:00
[[package]]
2021-06-06 15:19:01 +02:00
name = "cpufeatures"
2023-10-28 12:04:31 +02:00
version = "0.2.11"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
2021-06-06 15:19:01 +02:00
dependencies = [
"libc",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "cpuid-bool"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba"
[[package]]
name = "crossbeam-utils"
2023-10-28 12:04:31 +02:00
version = "0.8.16"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"cfg-if",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "crypto-mac"
2022-02-16 17:53:34 +01:00
version = "0.10.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a"
2021-02-14 12:57:45 +01:00
dependencies = [
"generic-array",
"subtle",
]
[[package]]
name = "ctr"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f"
dependencies = [
"cipher",
]
[[package]]
name = "curl"
2023-10-28 12:04:31 +02:00
version = "0.4.44"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22"
2021-02-14 12:57:45 +01:00
dependencies = [
"curl-sys",
"libc",
"openssl-probe",
"openssl-sys",
"schannel",
2024-07-15 22:09:52 +02:00
"socket2 0.4.10",
2021-02-14 12:57:45 +01:00
"winapi",
]
[[package]]
name = "curl-sys"
2023-10-28 12:04:31 +02:00
version = "0.4.68+curl-8.4.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "b4a0d18d88360e374b16b2273c832b5e57258ffc1d4aa4f96b108e0738d5752f"
2021-02-14 12:57:45 +01:00
dependencies = [
"cc",
"libc",
"libnghttp2-sys",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
2024-07-15 22:09:52 +02:00
"windows-sys 0.48.0",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
[[package]]
name = "either"
2023-10-28 12:04:31 +02:00
version = "1.9.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2021-02-14 12:57:45 +01:00
2024-07-15 22:09:52 +02:00
[[package]]
name = "email-encoding"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60d1d33cdaede7e24091f039632eb5d3c7469fe5b066a985281a34fc70fa317f"
dependencies = [
"base64 0.22.1",
"memchr",
]
[[package]]
name = "email_address"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1019fa28f600f5b581b7a603d515c3f1635da041ca211b5055804788673abfe"
2021-02-14 12:57:45 +01:00
[[package]]
name = "encoding_rs"
2023-10-28 12:04:31 +02:00
version = "0.8.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
dependencies = [
"cfg-if",
]
[[package]]
name = "erased-serde"
version = "0.3.31"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"serde",
2021-02-14 12:57:45 +01:00
]
2023-10-28 12:04:31 +02:00
[[package]]
name = "errno"
2024-07-15 22:09:52 +02:00
version = "0.3.9"
2023-10-28 12:04:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-15 22:09:52 +02:00
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
2023-10-28 12:04:31 +02:00
dependencies = [
"libc",
2024-07-15 22:09:52 +02:00
"windows-sys 0.52.0",
2023-10-28 12:04:31 +02:00
]
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2021-02-14 12:57:45 +01:00
[[package]]
name = "event-listener"
2023-11-18 14:01:08 +01:00
version = "3.1.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
2023-10-28 12:04:31 +02:00
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite 0.2.13",
]
2021-02-14 12:57:45 +01:00
2023-11-18 14:01:08 +01:00
[[package]]
name = "event-listener-strategy"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d96b852f1345da36d551b9473fa1e2b1eb5c5195585c6c018118bc92a8d91160"
dependencies = [
"event-listener 3.1.0",
"pin-project-lite 0.2.13",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "fastrand"
2023-10-28 12:04:31 +02:00
version = "1.9.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
2021-02-14 12:57:45 +01:00
dependencies = [
"instant",
]
2023-10-28 12:04:31 +02:00
[[package]]
name = "fastrand"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
2021-02-14 12:57:45 +01:00
[[package]]
name = "femme"
2023-10-28 12:04:31 +02:00
version = "2.2.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "cc04871e5ae3aa2952d552dae6b291b3099723bf779a8054281c1366a54613ef"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"cfg-if",
2021-02-14 12:57:45 +01:00
"js-sys",
"log",
"serde",
"serde_derive",
"serde_json",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "flume"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bebadab126f8120d410b677ed95eee4ba6eb7c6dd8e34a5ec88a08050e26132"
dependencies = [
"futures-core",
"futures-sink",
"spinning_top",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2024-07-15 22:09:52 +02:00
[[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"
2021-02-14 12:57:45 +01:00
[[package]]
name = "form_urlencoded"
2023-10-28 12:04:31 +02:00
version = "1.2.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2021-02-14 12:57:45 +01:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "futures-channel"
2023-10-28 12:04:31 +02:00
version = "0.3.29"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"
2021-02-14 12:57:45 +01:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2023-10-28 12:04:31 +02:00
version = "0.3.29"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"
2021-02-14 12:57:45 +01:00
[[package]]
name = "futures-io"
2023-10-28 12:04:31 +02:00
version = "0.3.29"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa"
2021-02-14 12:57:45 +01:00
[[package]]
name = "futures-lite"
2023-10-28 12:04:31 +02:00
version = "1.13.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"fastrand 1.9.0",
2021-02-14 12:57:45 +01:00
"futures-core",
"futures-io",
"memchr",
"parking",
2023-10-28 12:04:31 +02:00
"pin-project-lite 0.2.13",
2021-02-14 12:57:45 +01:00
"waker-fn",
]
2023-11-18 14:01:08 +01:00
[[package]]
name = "futures-lite"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb"
dependencies = [
"futures-core",
"pin-project-lite 0.2.13",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "futures-macro"
2023-10-28 12:04:31 +02:00
version = "0.3.29"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"
2021-02-14 12:57:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-11-18 14:01:08 +01:00
"syn 2.0.39",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "futures-sink"
2023-10-28 12:04:31 +02:00
version = "0.3.29"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817"
2021-02-14 12:57:45 +01:00
[[package]]
name = "futures-task"
2023-10-28 12:04:31 +02:00
version = "0.3.29"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"
2021-02-14 12:57:45 +01:00
[[package]]
name = "futures-util"
2023-10-28 12:04:31 +02:00
version = "0.3.29"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
2021-02-14 12:57:45 +01:00
dependencies = [
"futures-core",
"futures-io",
"futures-macro",
"futures-task",
"memchr",
2023-10-28 12:04:31 +02:00
"pin-project-lite 0.2.13",
2021-02-14 12:57:45 +01:00
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
2023-10-28 12:04:31 +02:00
version = "0.14.7"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2021-02-14 12:57:45 +01:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
2023-10-28 12:04:31 +02:00
"cfg-if",
2021-02-14 12:57:45 +01:00
"libc",
2021-06-06 15:19:01 +02:00
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
2023-11-18 14:01:08 +01:00
version = "0.2.11"
2021-06-06 15:19:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
2021-06-06 15:19:01 +02:00
dependencies = [
2023-10-28 12:04:31 +02:00
"cfg-if",
2021-06-06 15:19:01 +02:00
"libc",
2023-10-28 12:04:31 +02:00
"wasi 0.11.0+wasi-snapshot-preview1",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "ghash"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375"
dependencies = [
"opaque-debug",
"polyval",
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "gimli"
version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2021-02-14 12:57:45 +01:00
[[package]]
name = "gloo-timers"
2023-10-28 12:04:31 +02:00
version = "0.2.6"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
2021-02-14 12:57:45 +01:00
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "graphql-introspection-query"
2022-02-16 18:15:29 +01:00
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 18:15:29 +01:00
checksum = "7f2a4732cf5140bd6c082434494f785a19cfb566ab07d1382c3671f5812fed6d"
dependencies = [
"serde",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "graphql-parser"
2023-10-28 12:14:45 +02:00
version = "0.4.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:14:45 +02:00
checksum = "d2ebc8013b4426d5b81a4364c419a95ed0b404af2b82e2457de52d9348f0e474"
2021-02-14 12:57:45 +01:00
dependencies = [
"combine",
2023-10-28 12:14:45 +02:00
"thiserror",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "graphql_client"
2023-10-28 12:14:45 +02:00
version = "0.13.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:14:45 +02:00
checksum = "09cdf7b487d864c2939b23902291a5041bc4a84418268f25fda1c8d4e15ad8fa"
2021-02-14 12:57:45 +01:00
dependencies = [
"graphql_query_derive",
"serde",
"serde_json",
]
[[package]]
name = "graphql_client_codegen"
2023-10-28 12:14:45 +02:00
version = "0.13.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:14:45 +02:00
checksum = "a40f793251171991c4eb75bd84bc640afa8b68ff6907bc89d3b712a22f700506"
2021-02-14 12:57:45 +01:00
dependencies = [
"graphql-introspection-query",
2021-02-14 12:57:45 +01:00
"graphql-parser",
2023-10-28 12:14:45 +02:00
"heck 0.4.1",
2021-02-14 12:57:45 +01:00
"lazy_static",
"proc-macro2",
"quote",
2021-02-14 12:57:45 +01:00
"serde",
"serde_json",
2023-10-28 12:04:31 +02:00
"syn 1.0.109",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "graphql_query_derive"
2023-10-28 12:14:45 +02:00
version = "0.13.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:14:45 +02:00
checksum = "00bda454f3d313f909298f626115092d348bc231025699f557b27e248475f48c"
2021-02-14 12:57:45 +01:00
dependencies = [
"graphql_client_codegen",
"proc-macro2",
2023-10-28 12:04:31 +02:00
"syn 1.0.109",
2021-02-14 12:57:45 +01:00
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "hashbrown"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
dependencies = [
"ahash",
"allocator-api2",
]
2023-10-28 12:14:45 +02:00
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2021-02-14 12:57:45 +01:00
[[package]]
2024-07-17 23:09:38 +02:00
name = "heck"
version = "0.5.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-17 23:09:38 +02:00
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2021-02-14 12:57:45 +01:00
2023-10-28 12:04:31 +02:00
[[package]]
name = "hermit-abi"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2021-02-14 12:57:45 +01:00
[[package]]
name = "hkdf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f"
dependencies = [
"digest",
"hmac",
]
[[package]]
name = "hmac"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
dependencies = [
"crypto-mac",
"digest",
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "hostname"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9c7c7c8ac16c798734b8a24560c1362120597c40d5e1459f09498f8f6c8f2ba"
dependencies = [
"cfg-if",
"libc",
"windows",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "http"
2023-11-18 14:01:08 +01:00
version = "0.2.11"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"bytes 1.5.0",
2021-02-14 12:57:45 +01:00
"fnv",
"itoa",
]
[[package]]
name = "http-client"
2023-10-28 12:04:31 +02:00
version = "6.5.3"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "1947510dc91e2bf586ea5ffb412caad7673264e14bb39fb9078da114a94ce1a5"
2021-02-14 12:57:45 +01:00
dependencies = [
"async-std",
"async-trait",
2023-10-28 12:04:31 +02:00
"cfg-if",
2021-02-14 12:57:45 +01:00
"http-types",
"isahc",
"log",
]
[[package]]
name = "http-types"
2022-02-16 17:53:34 +01:00
version = "2.12.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
2021-02-14 12:57:45 +01:00
dependencies = [
"anyhow",
2023-11-18 14:01:08 +01:00
"async-channel 1.9.0",
2021-02-14 12:57:45 +01:00
"async-std",
2024-07-15 22:09:52 +02:00
"base64 0.13.1",
2021-02-14 12:57:45 +01:00
"cookie",
2023-11-18 14:01:08 +01:00
"futures-lite 1.13.0",
2021-02-14 12:57:45 +01:00
"infer",
2023-10-28 12:04:31 +02:00
"pin-project-lite 0.2.13",
2021-06-06 15:19:01 +02:00
"rand 0.7.3",
2021-02-14 12:57:45 +01:00
"serde",
"serde_json",
"serde_qs",
"serde_urlencoded",
"url",
]
[[package]]
name = "httparse"
2023-10-28 12:04:31 +02:00
version = "1.8.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2021-02-14 12:57:45 +01:00
2024-07-15 22:09:52 +02:00
[[package]]
name = "httpdate"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2021-02-14 12:57:45 +01:00
[[package]]
name = "humansize"
2023-10-28 12:12:12 +02:00
version = "2.1.3"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:12:12 +02:00
checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
dependencies = [
"libm",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "idna"
2023-10-28 12:04:31 +02:00
version = "0.4.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
2021-02-14 12:57:45 +01:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "idna"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "infer"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
[[package]]
name = "instant"
2022-02-16 17:53:34 +01:00
version = "0.1.12"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"cfg-if",
]
[[package]]
name = "io-lifetimes"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
dependencies = [
2024-07-17 23:09:38 +02:00
"hermit-abi",
2023-10-28 12:04:31 +02:00
"libc",
2024-07-15 22:09:52 +02:00
"windows-sys 0.48.0",
2021-02-14 12:57:45 +01:00
]
2024-07-17 23:09:38 +02:00
[[package]]
name = "is_terminal_polyfill"
version = "1.70.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
2021-02-14 12:57:45 +01:00
[[package]]
name = "isahc"
version = "0.9.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2948a0ce43e2c2ef11d7edf6816508998d99e13badd1150be0914205df9388a"
dependencies = [
"bytes 0.5.6",
2021-06-06 15:19:01 +02:00
"crossbeam-utils",
2021-02-14 12:57:45 +01:00
"curl",
"curl-sys",
"flume",
2023-11-18 14:01:08 +01:00
"futures-lite 1.13.0",
2021-02-14 12:57:45 +01:00
"http",
"log",
"once_cell",
"slab",
"sluice",
"tracing",
"tracing-futures",
"url",
"waker-fn",
]
[[package]]
name = "itoa"
2023-10-28 12:04:31 +02:00
version = "1.0.9"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2021-02-14 12:57:45 +01:00
[[package]]
name = "js-sys"
2023-11-18 14:01:08 +01:00
version = "0.3.65"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8"
2021-02-14 12:57:45 +01:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "kv-log-macro"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
dependencies = [
"log",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2024-07-15 22:09:52 +02:00
[[package]]
name = "lettre"
version = "0.11.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a62049a808f1c4e2356a2a380bd5f2aca3b011b0b482cf3b914ba1731426969"
dependencies = [
"base64 0.22.1",
"chumsky",
"email-encoding",
"email_address",
"fastrand 2.0.1",
"futures-util",
"hostname",
"httpdate",
"idna 0.5.0",
"mime",
"native-tls",
"nom",
"percent-encoding",
"quoted_printable",
"socket2 0.5.7",
"tokio",
"url",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "libc"
2023-11-18 14:01:08 +01:00
version = "0.2.150"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
2021-02-14 12:57:45 +01:00
2023-10-28 12:12:12 +02:00
[[package]]
name = "libm"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
2021-02-14 12:57:45 +01:00
[[package]]
name = "libnghttp2-sys"
2023-10-28 12:04:31 +02:00
version = "0.1.8+1.55.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "4fae956c192dadcdb5dace96db71fa0b827333cce7c7b38dc71446f024d8a340"
2021-02-14 12:57:45 +01:00
dependencies = [
"cc",
"libc",
]
[[package]]
name = "libz-sys"
2023-10-28 12:04:31 +02:00
version = "1.1.12"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b"
2021-02-14 12:57:45 +01:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-10-28 12:04:31 +02:00
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]]
name = "linux-raw-sys"
2023-11-18 14:01:08 +01:00
version = "0.4.11"
2023-10-28 12:04:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829"
2023-10-28 12:04:31 +02:00
2021-02-14 12:57:45 +01:00
[[package]]
name = "lock_api"
2023-10-28 12:04:31 +02:00
version = "0.4.11"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"autocfg",
2021-02-14 12:57:45 +01:00
"scopeguard",
]
[[package]]
name = "log"
2023-10-28 12:04:31 +02:00
version = "0.4.20"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"serde",
2021-02-14 12:57:45 +01:00
"value-bag",
]
[[package]]
name = "memchr"
2023-10-28 12:04:31 +02:00
version = "2.6.4"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
2021-02-14 12:57:45 +01:00
[[package]]
name = "mime"
2023-10-28 12:04:31 +02:00
version = "0.3.17"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2021-02-14 12:57:45 +01:00
[[package]]
name = "mime_guess"
2022-02-17 21:22:06 +01:00
version = "2.0.4"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-17 21:22:06 +01:00
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
2021-02-14 12:57:45 +01:00
dependencies = [
"mime",
"unicase",
]
2022-02-17 13:04:14 +01:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2024-07-15 22:09:52 +02:00
[[package]]
name = "miniz_oxide"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
dependencies = [
"adler",
]
[[package]]
name = "mio"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
dependencies = [
"libc",
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys 0.48.0",
]
[[package]]
name = "native-tls"
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
dependencies = [
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "nom"
2023-10-28 12:04:31 +02:00
version = "7.1.3"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2021-02-14 12:57:45 +01:00
dependencies = [
"memchr",
2022-02-17 13:04:14 +01:00
"minimal-lexical",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "num-traits"
2023-10-28 12:04:31 +02:00
version = "0.2.17"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
2021-02-14 12:57:45 +01:00
dependencies = [
"autocfg",
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "object"
version = "0.32.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
dependencies = [
"memchr",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "once_cell"
2023-10-28 12:04:31 +02:00
version = "1.18.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2021-02-14 12:57:45 +01:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2024-07-15 22:09:52 +02:00
[[package]]
name = "openssl"
version = "0.10.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
dependencies = [
"bitflags 2.4.1",
"cfg-if",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.39",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "openssl-probe"
2022-02-16 17:53:34 +01:00
version = "0.1.5"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2021-02-14 12:57:45 +01:00
[[package]]
name = "openssl-sys"
2024-07-15 22:09:52 +02:00
version = "0.9.102"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-15 22:09:52 +02:00
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
2021-02-14 12:57:45 +01:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "parking"
2023-10-28 12:04:31 +02:00
version = "2.2.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
2021-02-14 12:57:45 +01:00
[[package]]
name = "percent-encoding"
2023-10-28 12:04:31 +02:00
version = "2.3.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2021-02-14 12:57:45 +01:00
[[package]]
name = "pin-project"
2023-10-28 12:04:31 +02:00
version = "1.1.3"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
2021-02-14 12:57:45 +01:00
dependencies = [
2021-06-06 15:19:01 +02:00
"pin-project-internal",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "pin-project-internal"
2023-10-28 12:04:31 +02:00
version = "1.1.3"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
2021-02-14 12:57:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-11-18 14:01:08 +01:00
"syn 2.0.39",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "pin-project-lite"
2021-06-06 15:19:01 +02:00
version = "0.1.12"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-06 15:19:01 +02:00
checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
2021-02-14 12:57:45 +01:00
[[package]]
name = "pin-project-lite"
2023-10-28 12:04:31 +02:00
version = "0.2.13"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2021-02-14 12:57:45 +01:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2023-10-28 12:04:31 +02:00
[[package]]
name = "piper"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
dependencies = [
"atomic-waker",
"fastrand 2.0.1",
"futures-io",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "pkg-config"
2023-10-28 12:04:31 +02:00
version = "0.3.27"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2021-02-14 12:57:45 +01:00
[[package]]
name = "polling"
2023-10-28 12:04:31 +02:00
version = "2.8.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"autocfg",
"bitflags 1.3.2",
"cfg-if",
"concurrent-queue",
2021-02-14 12:57:45 +01:00
"libc",
"log",
2023-10-28 12:04:31 +02:00
"pin-project-lite 0.2.13",
2024-07-15 22:09:52 +02:00
"windows-sys 0.48.0",
2021-02-14 12:57:45 +01:00
]
2023-11-18 14:01:08 +01:00
[[package]]
name = "polling"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e53b6af1f60f36f8c2ac2aad5459d75a5a9b4be1e8cdd40264f315d78193e531"
dependencies = [
"cfg-if",
"concurrent-queue",
"pin-project-lite 0.2.13",
2024-07-15 22:09:52 +02:00
"rustix 0.38.28",
2023-11-18 14:01:08 +01:00
"tracing",
2024-07-15 22:09:52 +02:00
"windows-sys 0.48.0",
2023-11-18 14:01:08 +01:00
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "polyval"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd"
dependencies = [
2021-06-06 15:19:01 +02:00
"cpuid-bool",
2021-02-14 12:57:45 +01:00
"opaque-debug",
"universal-hash",
]
[[package]]
name = "ppv-lite86"
2023-10-28 12:04:31 +02:00
version = "0.2.17"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2021-02-14 12:57:45 +01:00
[[package]]
name = "pr-tracker"
2024-07-26 21:27:43 +02:00
version = "1.5.0"
2021-02-14 12:57:45 +01:00
dependencies = [
2024-07-15 22:09:52 +02:00
"anyhow",
2021-02-14 12:57:45 +01:00
"askama",
"async-std",
2024-07-17 23:09:38 +02:00
"clap",
2021-02-14 12:57:45 +01:00
"futures-util",
"graphql_client",
"http-types",
2024-07-15 22:09:52 +02:00
"lettre",
2021-02-14 12:57:45 +01:00
"once_cell",
"pkg-config",
"regex",
"serde",
"serde_json",
"surf",
"tide",
2024-07-18 01:03:05 +02:00
"urlencoding",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "proc-macro-hack"
2023-10-28 12:04:31 +02:00
version = "0.5.20+deprecated"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2021-02-14 12:57:45 +01:00
[[package]]
name = "proc-macro2"
2023-10-28 12:04:31 +02:00
version = "1.0.69"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"unicode-ident",
2021-02-14 12:57:45 +01:00
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "psm"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
dependencies = [
"cc",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "quote"
2023-10-28 12:04:31 +02:00
version = "1.0.33"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
2021-02-14 12:57:45 +01:00
dependencies = [
"proc-macro2",
2021-02-14 12:57:45 +01:00
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "quoted_printable"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79ec282e887b434b68c18fe5c121d38e72a5cf35119b59e54ec5b992ea9c8eb0"
2021-02-14 12:57:45 +01:00
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
2021-06-06 15:19:01 +02:00
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
2022-02-16 17:53:34 +01:00
"rand_hc",
2021-06-06 15:19:01 +02:00
]
[[package]]
name = "rand"
2022-02-16 17:53:34 +01:00
version = "0.8.5"
2021-06-06 15:19:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-06-06 15:19:01 +02:00
dependencies = [
2021-02-14 12:57:45 +01:00
"libc",
2022-02-16 17:53:34 +01:00
"rand_chacha 0.3.1",
2023-10-28 12:04:31 +02:00
"rand_core 0.6.4",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
2021-06-06 15:19:01 +02:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
2022-02-16 17:53:34 +01:00
version = "0.3.1"
2021-06-06 15:19:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-06-06 15:19:01 +02:00
dependencies = [
"ppv-lite86",
2023-10-28 12:04:31 +02:00
"rand_core 0.6.4",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
2021-06-06 15:19:01 +02:00
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
2023-10-28 12:04:31 +02:00
version = "0.6.4"
2021-06-06 15:19:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2021-06-06 15:19:01 +02:00
dependencies = [
2023-11-18 14:01:08 +01:00
"getrandom 0.2.11",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
2021-06-06 15:19:01 +02:00
"rand_core 0.5.1",
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "redox_syscall"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
"bitflags 1.3.2",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "regex"
2023-10-28 12:04:31 +02:00
version = "1.10.2"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
2021-02-14 12:57:45 +01:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2023-10-28 12:04:31 +02:00
version = "0.8.2"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
2021-02-14 12:57:45 +01:00
[[package]]
name = "route-recognizer"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56770675ebc04927ded3e60633437841581c285dc6236109ea25fbf3beb7b59e"
2024-07-15 22:09:52 +02:00
[[package]]
name = "rustc-demangle"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2021-02-14 12:57:45 +01:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
"semver",
]
2023-10-28 12:04:31 +02:00
[[package]]
name = "rustix"
version = "0.37.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
dependencies = [
"bitflags 1.3.2",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys 0.3.8",
2024-07-15 22:09:52 +02:00
"windows-sys 0.48.0",
2023-10-28 12:04:31 +02:00
]
[[package]]
name = "rustix"
2024-07-15 22:09:52 +02:00
version = "0.38.28"
2023-10-28 12:04:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-15 22:09:52 +02:00
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
2023-10-28 12:04:31 +02:00
dependencies = [
"bitflags 2.4.1",
"errno",
"libc",
2023-11-18 14:01:08 +01:00
"linux-raw-sys 0.4.11",
2024-07-15 22:09:52 +02:00
"windows-sys 0.52.0",
2023-10-28 12:04:31 +02:00
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "ryu"
2023-10-28 12:04:31 +02:00
version = "1.0.15"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
2021-02-14 12:57:45 +01:00
[[package]]
name = "schannel"
2023-10-28 12:04:31 +02:00
version = "0.1.22"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
2021-02-14 12:57:45 +01:00
dependencies = [
2024-07-15 22:09:52 +02:00
"windows-sys 0.48.0",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "scopeguard"
2023-10-28 12:04:31 +02:00
version = "1.2.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2021-02-14 12:57:45 +01:00
2024-07-15 22:09:52 +02:00
[[package]]
name = "security-framework"
version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
dependencies = [
"core-foundation-sys",
"libc",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
"semver-parser",
]
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
[[package]]
name = "serde"
2023-11-18 14:01:08 +01:00
version = "1.0.192"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001"
2021-02-14 12:57:45 +01:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-11-18 14:01:08 +01:00
version = "1.0.192"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1"
2021-02-14 12:57:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-11-18 14:01:08 +01:00
"syn 2.0.39",
2023-10-28 12:04:31 +02:00
]
[[package]]
name = "serde_fmt"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1d4ddca14104cd60529e8c7f7ba71a2c8acd8f7f5cfcdc2faf97eeb7c3010a4"
dependencies = [
"serde",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "serde_json"
2023-11-18 14:01:08 +01:00
version = "1.0.108"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
2021-02-14 12:57:45 +01:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_qs"
2022-02-16 17:53:34 +01:00
version = "0.8.5"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
2021-02-14 12:57:45 +01:00
dependencies = [
"percent-encoding",
"serde",
"thiserror",
]
[[package]]
name = "serde_urlencoded"
2022-02-16 17:53:34 +01:00
version = "0.7.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2021-02-14 12:57:45 +01:00
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "sha1"
2022-02-16 17:53:34 +01:00
version = "0.6.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
dependencies = [
"sha1_smol",
]
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
2021-02-14 12:57:45 +01:00
[[package]]
name = "sha2"
2022-02-16 17:53:34 +01:00
version = "0.9.9"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
2021-02-14 12:57:45 +01:00
dependencies = [
"block-buffer",
2023-10-28 12:04:31 +02:00
"cfg-if",
2021-06-06 15:19:01 +02:00
"cpufeatures",
2021-02-14 12:57:45 +01:00
"digest",
"opaque-debug",
]
[[package]]
name = "signal-hook-registry"
2023-10-28 12:04:31 +02:00
version = "1.4.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2021-02-14 12:57:45 +01:00
dependencies = [
"libc",
]
[[package]]
name = "simple-mutex"
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38aabbeafa6f6dead8cebf246fe9fae1f9215c8d29b3a69f93bd62a9e4a3dcd6"
dependencies = [
2023-10-28 12:04:31 +02:00
"event-listener 2.5.3",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "slab"
2023-10-28 12:04:31 +02:00
version = "0.4.9"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
dependencies = [
"autocfg",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "sluice"
2022-02-16 17:53:34 +01:00
version = "0.5.5"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "6d7400c0eff44aa2fcb5e31a5f24ba9716ed90138769e4977a2ba6014ae63eb5"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-11-18 14:01:08 +01:00
"async-channel 1.9.0",
2021-02-14 12:57:45 +01:00
"futures-core",
"futures-io",
]
[[package]]
name = "socket2"
2023-10-28 12:04:31 +02:00
version = "0.4.10"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
2021-02-14 12:57:45 +01:00
dependencies = [
"libc",
"winapi",
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "socket2"
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
dependencies = [
"libc",
"windows-sys 0.52.0",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "spinning_top"
2023-10-28 12:04:31 +02:00
version = "0.2.5"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "5b9eb1a2f4c41445a3a0ff9abc5221c5fcd28e1f13cd7c0397706f9ac938ddb0"
2021-02-14 12:57:45 +01:00
dependencies = [
"lock_api",
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "stacker"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
dependencies = [
"cc",
"cfg-if",
"libc",
"psm",
"winapi",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "standback"
2021-06-06 15:19:01 +02:00
version = "0.2.17"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-06 15:19:01 +02:00
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2021-02-14 12:57:45 +01:00
dependencies = [
"version_check",
]
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
"rustc_version",
"stdweb-derive",
"stdweb-internal-macros",
"stdweb-internal-runtime",
"wasm-bindgen",
]
[[package]]
name = "stdweb-derive"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
dependencies = [
"proc-macro2",
"quote",
2021-02-14 12:57:45 +01:00
"serde",
"serde_derive",
2023-10-28 12:04:31 +02:00
"syn 1.0.109",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "stdweb-internal-macros"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
dependencies = [
"base-x",
"proc-macro2",
"quote",
2021-02-14 12:57:45 +01:00
"serde",
"serde_derive",
"serde_json",
"sha1",
2023-10-28 12:04:31 +02:00
"syn 1.0.109",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
[[package]]
name = "strsim"
2024-07-17 23:09:38 +02:00
version = "0.11.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-17 23:09:38 +02:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2021-02-14 12:57:45 +01:00
[[package]]
name = "subtle"
2022-02-16 17:53:34 +01:00
version = "2.4.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2021-02-14 12:57:45 +01:00
[[package]]
name = "surf"
2022-02-16 17:53:34 +01:00
version = "2.3.2"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "718b1ae6b50351982dedff021db0def601677f2120938b070eadb10ba4038dd7"
2021-02-14 12:57:45 +01:00
dependencies = [
"async-std",
"async-trait",
2023-10-28 12:04:31 +02:00
"cfg-if",
2021-02-14 12:57:45 +01:00
"encoding_rs",
"futures-util",
2023-11-18 14:01:08 +01:00
"getrandom 0.2.11",
2021-02-14 12:57:45 +01:00
"http-client",
"http-types",
"log",
"mime_guess",
"once_cell",
2023-10-28 12:04:31 +02:00
"pin-project-lite 0.2.13",
2021-02-14 12:57:45 +01:00
"serde",
"serde_json",
"web-sys",
]
[[package]]
name = "sval"
2023-10-28 12:04:31 +02:00
version = "2.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15df12a8db7c216a04b4b438f90d50d5335cd38f161b56389c9f5c9d96d0873"
[[package]]
name = "sval_buffer"
version = "2.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57e80556bc8acea0446e574ce542ad6114a76a0237f28a842bc01ca3ea98f479"
dependencies = [
"sval",
"sval_ref",
]
[[package]]
name = "sval_dynamic"
version = "2.10.2"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "9d93d2259edb1d7b4316179f0a98c62e3ffc726f47ab200e07cfe382771f57b8"
dependencies = [
"sval",
]
[[package]]
name = "sval_fmt"
version = "2.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "532f7f882226f7a5a4656f5151224aaebf8217e0d539cb1595b831bace921343"
dependencies = [
"itoa",
"ryu",
"sval",
]
[[package]]
name = "sval_json"
version = "2.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76e03bd8aa0ae6ee018f7ae95c9714577687a4415bd1a5f19b26e34695f7e072"
dependencies = [
"itoa",
"ryu",
"sval",
]
[[package]]
name = "sval_ref"
version = "2.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75ed054f2fb8c2a0ab5d36c1ec57b412919700099fc5e32ad8e7a38b23e1a9e1"
dependencies = [
"sval",
]
[[package]]
name = "sval_serde"
version = "2.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ff191c4ff05b67e3844c161021427646cde5d6624597958be158357d9200586"
dependencies = [
"serde",
"sval",
"sval_buffer",
"sval_fmt",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "syn"
2023-10-28 12:04:31 +02:00
version = "1.0.109"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2021-02-14 12:57:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-10-28 12:04:31 +02:00
"unicode-ident",
]
[[package]]
name = "syn"
2023-11-18 14:01:08 +01:00
version = "2.0.39"
2023-10-28 12:04:31 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
2023-10-28 12:04:31 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2021-02-14 12:57:45 +01:00
]
2024-07-15 22:09:52 +02:00
[[package]]
name = "tempfile"
version = "3.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
dependencies = [
"cfg-if",
"fastrand 2.0.1",
"redox_syscall",
"rustix 0.38.28",
"windows-sys 0.52.0",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "thiserror"
2023-10-28 12:04:31 +02:00
version = "1.0.50"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
2021-02-14 12:57:45 +01:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-10-28 12:04:31 +02:00
version = "1.0.50"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
2021-02-14 12:57:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-11-18 14:01:08 +01:00
"syn 2.0.39",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "tide"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c459573f0dd2cc734b539047f57489ea875af8ee950860ded20cf93a79a1dee0"
dependencies = [
"async-h1",
"async-sse",
"async-std",
"async-trait",
"femme",
"futures-util",
"http-client",
"http-types",
"kv-log-macro",
"log",
2023-10-28 12:04:31 +02:00
"pin-project-lite 0.2.13",
2021-02-14 12:57:45 +01:00
"route-recognizer",
"serde",
"serde_json",
]
[[package]]
name = "time"
2022-02-16 17:53:34 +01:00
version = "0.2.27"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
2021-02-14 12:57:45 +01:00
dependencies = [
"const_fn",
"libc",
"standback",
"stdweb",
"time-macros",
"version_check",
"winapi",
]
[[package]]
name = "time-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
dependencies = [
"proc-macro-hack",
"time-macros-impl",
]
[[package]]
name = "time-macros-impl"
2022-02-16 17:53:34 +01:00
version = "0.1.2"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
2021-02-14 12:57:45 +01:00
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
2021-02-14 12:57:45 +01:00
"standback",
2023-10-28 12:04:31 +02:00
"syn 1.0.109",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "tinyvec"
2023-10-28 12:04:31 +02:00
version = "1.6.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2021-02-14 12:57:45 +01:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-10-28 12:04:31 +02:00
version = "0.1.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2021-02-14 12:57:45 +01:00
2024-07-15 22:09:52 +02:00
[[package]]
name = "tokio"
version = "1.38.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
dependencies = [
"backtrace",
"libc",
"mio",
"pin-project-lite 0.2.13",
"socket2 0.5.7",
"windows-sys 0.48.0",
]
2021-02-14 12:57:45 +01:00
[[package]]
name = "tracing"
2023-10-28 12:04:31 +02:00
version = "0.1.40"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2021-02-14 12:57:45 +01:00
dependencies = [
"log",
2023-10-28 12:04:31 +02:00
"pin-project-lite 0.2.13",
2021-02-14 12:57:45 +01:00
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-10-28 12:04:31 +02:00
version = "0.1.27"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2021-02-14 12:57:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-11-18 14:01:08 +01:00
"syn 2.0.39",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "tracing-core"
2023-10-28 12:04:31 +02:00
version = "0.1.32"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"once_cell",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "tracing-futures"
2021-06-06 15:19:01 +02:00
version = "0.2.5"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-06 15:19:01 +02:00
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
2021-02-14 12:57:45 +01:00
dependencies = [
2021-06-06 15:19:01 +02:00
"pin-project",
2021-02-14 12:57:45 +01:00
"tracing",
]
[[package]]
name = "typenum"
2023-10-28 12:04:31 +02:00
version = "1.17.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2021-02-14 12:57:45 +01:00
[[package]]
name = "unicase"
2023-10-28 12:04:31 +02:00
version = "2.7.0"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
2021-02-14 12:57:45 +01:00
dependencies = [
"version_check",
]
[[package]]
name = "unicode-bidi"
2023-10-28 12:04:31 +02:00
version = "0.3.13"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2021-02-14 12:57:45 +01:00
[[package]]
name = "unicode-normalization"
2023-10-28 12:04:31 +02:00
version = "0.1.22"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2021-02-14 12:57:45 +01:00
dependencies = [
"tinyvec",
]
[[package]]
name = "universal-hash"
2022-02-16 17:53:34 +01:00
version = "0.4.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
2021-02-14 12:57:45 +01:00
dependencies = [
"generic-array",
"subtle",
]
[[package]]
name = "unreachable"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
dependencies = [
"void",
]
[[package]]
name = "url"
2023-10-28 12:04:31 +02:00
version = "2.4.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
2021-02-14 12:57:45 +01:00
dependencies = [
"form_urlencoded",
2024-07-15 22:09:52 +02:00
"idna 0.4.0",
2021-02-14 12:57:45 +01:00
"percent-encoding",
"serde",
]
2024-07-17 23:09:38 +02:00
[[package]]
2024-07-18 01:03:05 +02:00
name = "urlencoding"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
[[package]]
2024-07-17 23:09:38 +02:00
name = "utf8parse"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2021-02-14 12:57:45 +01:00
[[package]]
name = "value-bag"
2023-10-28 12:04:31 +02:00
version = "1.4.2"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "4a72e1902dde2bd6441347de2b70b7f5d59bf157c6c62f0c44572607a1d55bbe"
dependencies = [
"value-bag-serde1",
"value-bag-sval2",
]
[[package]]
name = "value-bag-serde1"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07ba39dc791ecb35baad371a3fc04c6eab688c04937d2e0ac6c22b612c0357bf"
dependencies = [
"erased-serde",
"serde",
"serde_fmt",
]
[[package]]
name = "value-bag-sval2"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3e06c10810a57bbf45778d023d432a50a1daa7d185991ae06bcfb6c654d0945"
2021-02-14 12:57:45 +01:00
dependencies = [
"sval",
2023-10-28 12:04:31 +02:00
"sval_buffer",
"sval_dynamic",
"sval_fmt",
"sval_json",
"sval_ref",
"sval_serde",
2021-02-14 12:57:45 +01:00
]
[[package]]
name = "vcpkg"
2022-02-16 17:53:34 +01:00
version = "0.2.15"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2021-02-14 12:57:45 +01:00
[[package]]
name = "version_check"
2022-02-16 17:53:34 +01:00
version = "0.9.4"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 17:53:34 +01:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-02-14 12:57:45 +01:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
[[package]]
name = "waker-fn"
2023-10-28 12:04:31 +02:00
version = "1.1.1"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
2021-02-14 12:57:45 +01:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2021-06-06 15:19:01 +02:00
[[package]]
name = "wasi"
2023-10-28 12:04:31 +02:00
version = "0.11.0+wasi-snapshot-preview1"
2021-06-06 15:19:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-28 12:04:31 +02:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-06-06 15:19:01 +02:00
2021-02-14 12:57:45 +01:00
[[package]]
name = "wasm-bindgen"
2023-11-18 14:01:08 +01:00
version = "0.2.88"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"cfg-if",
2021-02-14 12:57:45 +01:00
"serde",
"serde_json",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-11-18 14:01:08 +01:00
version = "0.2.88"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217"
2021-02-14 12:57:45 +01:00
dependencies = [
"bumpalo",
"log",
2023-10-28 12:04:31 +02:00
"once_cell",
"proc-macro2",
"quote",
2023-11-18 14:01:08 +01:00
"syn 2.0.39",
2021-02-14 12:57:45 +01:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-11-18 14:01:08 +01:00
version = "0.4.38"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02"
2021-02-14 12:57:45 +01:00
dependencies = [
2023-10-28 12:04:31 +02:00
"cfg-if",
2021-02-14 12:57:45 +01:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-11-18 14:01:08 +01:00
version = "0.2.88"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2"
2021-02-14 12:57:45 +01:00
dependencies = [
"quote",
2021-02-14 12:57:45 +01:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-11-18 14:01:08 +01:00
version = "0.2.88"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907"
2021-02-14 12:57:45 +01:00
dependencies = [
"proc-macro2",
"quote",
2023-11-18 14:01:08 +01:00
"syn 2.0.39",
2021-02-14 12:57:45 +01:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-11-18 14:01:08 +01:00
version = "0.2.88"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b"
2021-02-14 12:57:45 +01:00
[[package]]
name = "web-sys"
2023-11-18 14:01:08 +01:00
version = "0.3.65"
2021-02-14 12:57:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-18 14:01:08 +01:00
checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85"
2021-02-14 12:57:45 +01:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[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"
2023-10-28 12:04:31 +02:00
2024-07-15 22:09:52 +02:00
[[package]]
name = "windows"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
dependencies = [
"windows-core",
"windows-targets 0.52.6",
]
[[package]]
name = "windows-core"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
dependencies = [
"windows-targets 0.52.6",
]
2023-10-28 12:04:31 +02:00
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2024-07-15 22:09:52 +02:00
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.6",
2023-10-28 12:04:31 +02:00
]
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
2024-07-15 22:09:52 +02:00
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
dependencies = [
"windows_aarch64_gnullvm 0.52.6",
"windows_aarch64_msvc 0.52.6",
"windows_i686_gnu 0.52.6",
"windows_i686_gnullvm",
"windows_i686_msvc 0.52.6",
"windows_x86_64_gnu 0.52.6",
"windows_x86_64_gnullvm 0.52.6",
"windows_x86_64_msvc 0.52.6",
2023-10-28 12:04:31 +02:00
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2024-07-15 22:09:52 +02:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2023-10-28 12:04:31 +02:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2024-07-15 22:09:52 +02:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2023-10-28 12:04:31 +02:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2024-07-15 22:09:52 +02:00
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2023-10-28 12:04:31 +02:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2024-07-15 22:09:52 +02:00
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2023-10-28 12:04:31 +02:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2024-07-15 22:09:52 +02:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2023-10-28 12:04:31 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2024-07-15 22:09:52 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2023-10-28 12:04:31 +02:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2024-07-15 22:09:52 +02:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
[[package]]
name = "zerocopy"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.39",
]