empede/Cargo.lock

2284 lines
57 KiB
Plaintext
Raw Normal View History

2023-04-25 01:26:27 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[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",
]
2023-06-25 16:46:07 +00:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2023-04-25 01:26:27 +00:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
[[package]]
name = "anyhow"
2023-12-23 05:55:24 +00:00
version = "1.0.76"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "59d2a3357dde987206219e78ecfbbb6e8dad06cbb65292758d3270e6254f7355"
2023-04-25 01:26:27 +00:00
[[package]]
name = "arrayref"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
[[package]]
name = "askama"
2023-12-23 05:55:24 +00:00
version = "0.12.1"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28"
2023-04-25 01:26:27 +00:00
dependencies = [
"askama_derive",
"askama_escape",
"humansize",
"num-traits",
"percent-encoding",
2023-05-13 12:51:22 +00:00
"serde",
"serde_json",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "askama_derive"
2023-12-23 05:55:24 +00:00
version = "0.12.4"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "2ccf09143e56923c12e027b83a9553210a3c58322ed8419a53461b14a4dccd85"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"askama_parser",
2023-04-25 01:26:27 +00:00
"basic-toml",
"mime",
"mime_guess",
"proc-macro2",
"quote",
"serde",
2023-12-23 05:55:24 +00:00
"syn 2.0.42",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "askama_escape"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
2023-12-23 05:55:24 +00:00
[[package]]
name = "askama_parser"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "262eb9cf7be51269c5f2951eeda9ccd14d6934e437457f47b4f066bf55a6770d"
dependencies = [
"nom",
]
2023-04-25 01:26:27 +00:00
[[package]]
name = "askama_tide"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4946e083aa3fc9077505733e49c113bcd07357817ee87ecd5f7b5b5979091860"
dependencies = [
"askama",
"tide",
]
[[package]]
name = "async-attributes"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
dependencies = [
"quote",
"syn 1.0.109",
]
[[package]]
name = "async-channel"
2023-07-12 22:34:40 +00:00
version = "1.9.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-12 22:34:40 +00:00
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
2023-04-25 01:26:27 +00:00
dependencies = [
"concurrent-queue",
2023-12-23 05:55:24 +00:00
"event-listener 2.5.3",
2023-04-25 01:26:27 +00:00
"futures-core",
]
2023-12-23 05:55:24 +00:00
[[package]]
name = "async-channel"
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c"
dependencies = [
"concurrent-queue",
"event-listener 4.0.1",
"event-listener-strategy",
"futures-core",
"pin-project-lite 0.2.13",
]
2023-04-25 01:26:27 +00:00
[[package]]
name = "async-dup"
2023-12-23 05:55:24 +00:00
version = "1.2.4"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "7c2886ab563af5038f79ec016dd7b87947ed138b794e8dd64992962c9cca0411"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"async-lock 3.2.0",
2023-04-25 01:26:27 +00:00
"futures-io",
]
[[package]]
name = "async-executor"
2023-12-23 05:55:24 +00:00
version = "1.8.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"async-lock 3.2.0",
2023-04-25 01:26:27 +00:00
"async-task",
"concurrent-queue",
2023-12-23 05:55:24 +00:00
"fastrand 2.0.1",
"futures-lite 2.1.0",
2023-04-25 01:26:27 +00:00
"slab",
]
[[package]]
name = "async-global-executor"
2023-12-23 05:55:24 +00:00
version = "2.4.1"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"async-channel 2.1.1",
2023-04-25 01:26:27 +00:00
"async-executor",
2023-12-23 05:55:24 +00:00
"async-io 2.2.2",
"async-lock 3.2.0",
2023-04-25 01:26:27 +00:00
"blocking",
2023-12-23 05:55:24 +00:00
"futures-lite 2.1.0",
2023-04-25 01:26:27 +00:00
"once_cell",
]
[[package]]
name = "async-h1"
2023-12-23 05:55:24 +00:00
version = "2.3.4"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "5d1d1dae8cb2c4258a79d6ed088b7fb9b4763bf4e9b22d040779761e046a2971"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"async-channel 1.9.0",
2023-04-25 01:26:27 +00:00
"async-dup",
2023-12-23 05:55:24 +00:00
"async-global-executor",
"async-io 1.13.0",
"futures-lite 1.13.0",
2023-04-25 01:26:27 +00:00
"http-types",
"httparse",
"log",
"pin-project",
]
[[package]]
name = "async-io"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
dependencies = [
2023-12-23 05:55:24 +00:00
"async-lock 2.8.0",
2023-04-25 01:26:27 +00:00
"autocfg",
"cfg-if 1.0.0",
"concurrent-queue",
2023-12-23 05:55:24 +00:00
"futures-lite 1.13.0",
2023-04-25 01:26:27 +00:00
"log",
"parking",
2023-12-23 05:55:24 +00:00
"polling 2.8.0",
"rustix 0.37.27",
2023-04-25 01:26:27 +00:00
"slab",
"socket2",
"waker-fn",
]
2023-12-23 05:55:24 +00:00
[[package]]
name = "async-io"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6afaa937395a620e33dc6a742c593c01aced20aa376ffb0f628121198578ccc7"
dependencies = [
"async-lock 3.2.0",
"cfg-if 1.0.0",
"concurrent-queue",
"futures-io",
"futures-lite 2.1.0",
"parking",
"polling 3.3.1",
"rustix 0.38.28",
"slab",
"tracing",
"windows-sys 0.52.0",
]
2023-04-25 01:26:27 +00:00
[[package]]
name = "async-lock"
2023-12-23 05:55:24 +00:00
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
dependencies = [
"event-listener 2.5.3",
]
[[package]]
name = "async-lock"
version = "3.2.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"event-listener 4.0.1",
"event-listener-strategy",
"pin-project-lite 0.2.13",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "async-process"
2023-12-23 05:55:24 +00:00
version = "1.8.1"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"async-io 1.13.0",
"async-lock 2.8.0",
"async-signal",
2023-04-25 01:26:27 +00:00
"blocking",
"cfg-if 1.0.0",
2023-12-23 05:55:24 +00:00
"event-listener 3.1.0",
"futures-lite 1.13.0",
"rustix 0.38.28",
"windows-sys 0.48.0",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "async-session"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "345022a2eed092cd105cc1b26fd61c341e100bd5fcbbd792df4baf31c2cc631f"
dependencies = [
"anyhow",
"async-std",
"async-trait",
"base64 0.12.3",
"bincode",
"blake3",
"chrono",
"hmac 0.8.1",
"kv-log-macro",
"rand 0.7.3",
"serde",
"serde_json",
"sha2",
]
2023-12-23 05:55:24 +00:00
[[package]]
name = "async-signal"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
dependencies = [
"async-io 2.2.2",
"async-lock 2.8.0",
"atomic-waker",
"cfg-if 1.0.0",
"futures-core",
"futures-io",
"rustix 0.38.28",
"signal-hook-registry",
"slab",
"windows-sys 0.48.0",
]
2023-04-25 01:26:27 +00:00
[[package]]
name = "async-sse"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53bba003996b8fd22245cd0c59b869ba764188ed435392cf2796d03b805ade10"
dependencies = [
2023-12-23 05:55:24 +00:00
"async-channel 1.9.0",
2023-04-25 01:26:27 +00:00
"async-std",
"http-types",
"log",
"memchr",
"pin-project-lite 0.1.12",
]
[[package]]
name = "async-std"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
dependencies = [
"async-attributes",
2023-12-23 05:55:24 +00:00
"async-channel 1.9.0",
2023-04-25 01:26:27 +00:00
"async-global-executor",
2023-12-23 05:55:24 +00:00
"async-io 1.13.0",
"async-lock 2.8.0",
2023-04-25 01:26:27 +00:00
"async-process",
"crossbeam-utils",
"futures-channel",
"futures-core",
"futures-io",
2023-12-23 05:55:24 +00:00
"futures-lite 1.13.0",
2023-04-25 01:26:27 +00:00
"gloo-timers",
"kv-log-macro",
"log",
"memchr",
"once_cell",
2023-12-23 05:55:24 +00:00
"pin-project-lite 0.2.13",
2023-04-25 01:26:27 +00:00
"pin-utils",
"slab",
"wasm-bindgen-futures",
]
[[package]]
name = "async-task"
2023-12-23 05:55:24 +00:00
version = "4.6.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "e1d90cd0b264dfdd8eb5bad0a2c217c1f88fa96a8573f40e7b12de23fb468f46"
2023-04-25 01:26:27 +00:00
[[package]]
name = "async-trait"
2023-12-23 05:55:24 +00:00
version = "0.1.75"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "fdf6721fb0140e4f897002dd086c06f6c27775df19cfe1fccb21181a48fd2c98"
2023-04-25 01:26:27 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-12-23 05:55:24 +00:00
"syn 2.0.42",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "atomic-waker"
2023-12-23 05:55:24 +00:00
version = "1.1.2"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2023-04-25 01:26:27 +00:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "base-x"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
[[package]]
name = "base64"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "basic-toml"
2023-12-23 05:55:24 +00:00
version = "0.1.7"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "2f2139706359229bfa8f19142ac1155b4b80beafb7a60471ac5dd109d4a19778"
2023-04-25 01:26:27 +00:00
dependencies = [
"serde",
]
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
]
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-12-23 05:55:24 +00:00
[[package]]
name = "bitflags"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
2023-04-25 01:26:27 +00:00
[[package]]
name = "blake3"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b64485778c4f16a6a5a9d335e80d449ac6c70cdd6a06d2af18a6f6f775a125b3"
dependencies = [
"arrayref",
"arrayvec",
"cc",
"cfg-if 0.1.10",
"constant_time_eq",
"crypto-mac 0.8.0",
"digest",
]
[[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-12-23 05:55:24 +00:00
version = "1.5.1"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"async-channel 2.1.1",
"async-lock 3.2.0",
2023-04-25 01:26:27 +00:00
"async-task",
2023-12-23 05:55:24 +00:00
"fastrand 2.0.1",
"futures-io",
"futures-lite 2.1.0",
"piper",
"tracing",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "bumpalo"
2023-12-23 05:55:24 +00:00
version = "3.14.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2023-04-25 01:26:27 +00:00
[[package]]
name = "cc"
2023-12-23 05:55:24 +00:00
version = "1.0.83"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
dependencies = [
"libc",
]
2023-04-25 01:26:27 +00:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
2023-12-23 05:55:24 +00:00
version = "0.4.31"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-06-25 16:46:07 +00:00
"android-tzdata",
2023-04-25 01:26:27 +00:00
"iana-time-zone",
"js-sys",
"num-traits",
"serde",
"wasm-bindgen",
2023-12-23 05:55:24 +00:00
"windows-targets 0.48.5",
2023-04-25 01:26:27 +00: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 = "concurrent-queue"
2023-12-23 05:55:24 +00:00
version = "2.4.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
2023-04-25 01:26:27 +00:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "const_fn"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "cookie"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
dependencies = [
"aes-gcm",
"base64 0.13.1",
"hkdf",
"hmac 0.10.1",
"percent-encoding",
"rand 0.8.5",
"sha2",
2023-12-23 05:55:24 +00:00
"time",
2023-04-25 01:26:27 +00:00
"version_check",
]
[[package]]
name = "core-foundation-sys"
2023-12-23 05:55:24 +00:00
version = "0.8.6"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
2023-04-25 01:26:27 +00:00
[[package]]
name = "cpufeatures"
2023-12-23 05:55:24 +00:00
version = "0.2.11"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
2023-04-25 01:26:27 +00:00
dependencies = [
"libc",
]
[[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-12-23 05:55:24 +00:00
version = "0.8.17"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "c06d96137f14f244c37f989d9fff8f95e6c18b918e71f36638f8c49112e4c78f"
2023-04-25 01:26:27 +00:00
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "crypto-mac"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
dependencies = [
"generic-array",
"subtle",
]
[[package]]
name = "crypto-mac"
2023-05-01 23:48:29 +00:00
version = "0.10.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 23:48:29 +00:00
checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6"
2023-04-25 01:26:27 +00: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 = "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]]
2023-04-27 16:56:10 +00:00
name = "empede"
2023-06-25 16:46:07 +00:00
version = "0.2.0"
2023-04-25 01:26:27 +00:00
dependencies = [
"anyhow",
"askama",
"askama_tide",
"async-std",
2023-07-12 22:34:40 +00:00
"infer 0.15.0",
2023-05-02 09:04:08 +00:00
"percent-encoding",
2023-04-25 01:26:27 +00:00
"serde",
"serde_qs 0.12.0",
"tide",
"tide-tracing",
"tracing",
"tracing-subscriber",
]
[[package]]
name = "erased-serde"
2023-12-23 05:55:24 +00:00
version = "0.3.31"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c"
2023-04-25 01:26:27 +00:00
dependencies = [
"serde",
]
[[package]]
name = "errno"
2023-12-23 05:55:24 +00:00
version = "0.3.8"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
2023-04-25 01:26:27 +00:00
dependencies = [
"libc",
2023-12-23 05:55:24 +00:00
"windows-sys 0.52.0",
2023-04-25 01:26:27 +00:00
]
[[package]]
2023-12-23 05:55:24 +00:00
name = "event-listener"
version = "2.5.3"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
[[package]]
name = "event-listener"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"concurrent-queue",
"parking",
"pin-project-lite 0.2.13",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "event-listener"
2023-12-23 05:55:24 +00:00
version = "4.0.1"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "84f2cdcf274580f2d63697192d744727b3198894b1bf02923643bf59e2c26712"
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite 0.2.13",
]
[[package]]
name = "event-listener-strategy"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
dependencies = [
"event-listener 4.0.1",
"pin-project-lite 0.2.13",
]
2023-04-25 01:26:27 +00:00
[[package]]
name = "fastrand"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
2023-12-23 05:55:24 +00:00
[[package]]
name = "fastrand"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
2023-04-25 01:26:27 +00:00
[[package]]
name = "femme"
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc04871e5ae3aa2952d552dae6b291b3099723bf779a8054281c1366a54613ef"
dependencies = [
"cfg-if 1.0.0",
"js-sys",
"log",
"serde",
"serde_derive",
"serde_json",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "form_urlencoded"
2023-12-23 05:55:24 +00:00
version = "1.2.1"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2023-04-25 01:26:27 +00:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "futures-channel"
2023-12-23 05:55:24 +00:00
version = "0.3.29"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"
2023-04-25 01:26:27 +00:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2023-12-23 05:55:24 +00:00
version = "0.3.29"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"
2023-04-25 01:26:27 +00:00
[[package]]
name = "futures-io"
2023-12-23 05:55:24 +00:00
version = "0.3.29"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa"
2023-04-25 01:26:27 +00:00
[[package]]
name = "futures-lite"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
dependencies = [
2023-12-23 05:55:24 +00:00
"fastrand 1.9.0",
2023-04-25 01:26:27 +00:00
"futures-core",
"futures-io",
"memchr",
"parking",
2023-12-23 05:55:24 +00:00
"pin-project-lite 0.2.13",
2023-04-25 01:26:27 +00:00
"waker-fn",
]
2023-12-23 05:55:24 +00:00
[[package]]
name = "futures-lite"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143"
dependencies = [
"fastrand 2.0.1",
"futures-core",
"futures-io",
"parking",
"pin-project-lite 0.2.13",
]
2023-04-25 01:26:27 +00:00
[[package]]
name = "futures-macro"
2023-12-23 05:55:24 +00:00
version = "0.3.29"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"
2023-04-25 01:26:27 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-12-23 05:55:24 +00:00
"syn 2.0.42",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "futures-task"
2023-12-23 05:55:24 +00:00
version = "0.3.29"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"
2023-04-25 01:26:27 +00:00
[[package]]
name = "futures-util"
2023-12-23 05:55:24 +00:00
version = "0.3.29"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
2023-04-25 01:26:27 +00:00
dependencies = [
"futures-core",
"futures-macro",
"futures-task",
2023-12-23 05:55:24 +00:00
"pin-project-lite 0.2.13",
2023-04-25 01:26:27 +00:00
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if 1.0.0",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
2023-12-23 05:55:24 +00:00
version = "0.2.11"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
2023-04-25 01:26:27 +00:00
dependencies = [
"cfg-if 1.0.0",
"libc",
"wasi 0.11.0+wasi-snapshot-preview1",
]
[[package]]
name = "ghash"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375"
dependencies = [
"opaque-debug",
"polyval",
]
[[package]]
name = "gloo-timers"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "hermit-abi"
2023-12-23 05:55:24 +00:00
version = "0.3.3"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2023-04-25 01:26:27 +00:00
[[package]]
name = "hkdf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f"
dependencies = [
"digest",
"hmac 0.10.1",
]
[[package]]
name = "hmac"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"
dependencies = [
"crypto-mac 0.8.0",
"digest",
]
[[package]]
name = "hmac"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
dependencies = [
2023-05-01 23:48:29 +00:00
"crypto-mac 0.10.0",
2023-04-25 01:26:27 +00:00
"digest",
]
[[package]]
name = "http-client"
version = "6.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1947510dc91e2bf586ea5ffb412caad7673264e14bb39fb9078da114a94ce1a5"
dependencies = [
"async-trait",
"cfg-if 1.0.0",
"http-types",
"log",
]
[[package]]
name = "http-types"
version = "2.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
dependencies = [
"anyhow",
2023-12-23 05:55:24 +00:00
"async-channel 1.9.0",
2023-04-25 01:26:27 +00:00
"async-std",
"base64 0.13.1",
"cookie",
2023-12-23 05:55:24 +00:00
"futures-lite 1.13.0",
2023-04-27 02:03:17 +00:00
"infer 0.2.3",
2023-12-23 05:55:24 +00:00
"pin-project-lite 0.2.13",
2023-04-25 01:26:27 +00:00
"rand 0.7.3",
"serde",
"serde_json",
"serde_qs 0.8.5",
"serde_urlencoded",
"url",
]
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "humansize"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
dependencies = [
"libm",
]
[[package]]
name = "iana-time-zone"
2023-12-23 05:55:24 +00:00
version = "0.1.58"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20"
2023-04-25 01:26:27 +00:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
2023-12-23 05:55:24 +00:00
"windows-core",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "iana-time-zone-haiku"
2023-05-14 13:33:42 +00:00
version = "0.1.2"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 13:33:42 +00:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-05-14 13:33:42 +00:00
"cc",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "idna"
2023-12-23 05:55:24 +00:00
version = "0.5.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2023-04-25 01:26:27 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "infer"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
2023-04-27 02:03:17 +00:00
[[package]]
name = "infer"
2023-07-12 22:34:40 +00:00
version = "0.15.0"
2023-04-27 02:03:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-12 22:34:40 +00:00
checksum = "cb33622da908807a06f9513c19b3c1ad50fab3e4137d82a78107d502075aa199"
2023-04-27 02:03:17 +00:00
2023-04-25 01:26:27 +00:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "io-lifetimes"
2023-06-25 16:46:07 +00:00
version = "1.0.11"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-25 16:46:07 +00:00
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2023-04-25 01:26:27 +00:00
dependencies = [
"hermit-abi",
"libc",
2023-12-23 05:55:24 +00:00
"windows-sys 0.48.0",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "itoa"
2023-12-23 05:55:24 +00:00
version = "1.0.10"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
2023-04-25 01:26:27 +00:00
[[package]]
name = "js-sys"
2023-12-23 05:55:24 +00:00
version = "0.3.66"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
2023-04-25 01:26:27 +00: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"
[[package]]
name = "libc"
2023-12-23 05:55:24 +00:00
version = "0.2.151"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
2023-04-25 01:26:27 +00:00
[[package]]
name = "libm"
2023-12-23 05:55:24 +00:00
version = "0.2.8"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
2023-04-25 01:26:27 +00:00
[[package]]
name = "linux-raw-sys"
2023-06-25 16:46:07 +00:00
version = "0.3.8"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-25 16:46:07 +00:00
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2023-04-25 01:26:27 +00:00
2023-12-23 05:55:24 +00:00
[[package]]
name = "linux-raw-sys"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
2023-04-25 01:26:27 +00:00
[[package]]
name = "log"
2023-12-23 05:55:24 +00:00
version = "0.4.20"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2023-04-25 01:26:27 +00:00
dependencies = [
"serde",
"value-bag",
]
[[package]]
name = "memchr"
2023-12-23 05:55:24 +00:00
version = "2.6.4"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
2023-04-25 01:26:27 +00:00
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "num-traits"
2023-12-23 05:55:24 +00:00
version = "0.2.17"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
2023-04-25 01:26:27 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "once_cell"
2023-12-23 05:55:24 +00:00
version = "1.19.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2023-04-25 01:26:27 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "parking"
2023-12-23 05:55:24 +00:00
version = "2.2.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
2023-04-25 01:26:27 +00:00
[[package]]
name = "percent-encoding"
2023-12-23 05:55:24 +00:00
version = "2.3.1"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2023-04-25 01:26:27 +00:00
[[package]]
name = "pin-project"
2023-12-23 05:55:24 +00:00
version = "1.1.3"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
2023-04-25 01:26:27 +00:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-12-23 05:55:24 +00:00
version = "1.1.3"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
2023-04-25 01:26:27 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-12-23 05:55:24 +00:00
"syn 2.0.42",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "pin-project-lite"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
[[package]]
name = "pin-project-lite"
2023-12-23 05:55:24 +00:00
version = "0.2.13"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2023-04-25 01:26:27 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2023-12-23 05:55:24 +00: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",
]
2023-04-25 01:26:27 +00:00
[[package]]
name = "polling"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
dependencies = [
"autocfg",
2023-12-23 05:55:24 +00:00
"bitflags 1.3.2",
2023-04-25 01:26:27 +00:00
"cfg-if 1.0.0",
"concurrent-queue",
"libc",
"log",
2023-12-23 05:55:24 +00:00
"pin-project-lite 0.2.13",
"windows-sys 0.48.0",
]
[[package]]
name = "polling"
version = "3.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e"
dependencies = [
"cfg-if 1.0.0",
"concurrent-queue",
"pin-project-lite 0.2.13",
"rustix 0.38.28",
"tracing",
"windows-sys 0.52.0",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "polyval"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd"
dependencies = [
"cpuid-bool",
"opaque-debug",
"universal-hash",
]
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "proc-macro-hack"
version = "0.5.20+deprecated"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
[[package]]
name = "proc-macro2"
2023-12-23 05:55:24 +00:00
version = "1.0.71"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "75cb1540fadbd5b8fbccc4dddad2734eba435053f725621c070711a14bb5f4b8"
2023-04-25 01:26:27 +00:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2023-12-23 05:55:24 +00:00
version = "1.0.33"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
2023-04-25 01:26:27 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha 0.3.1",
"rand_core 0.6.4",
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core 0.6.4",
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2023-12-23 05:55:24 +00:00
"getrandom 0.2.11",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core 0.5.1",
]
[[package]]
name = "route-recognizer"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56770675ebc04927ded3e60633437841581c285dc6236109ea25fbf3beb7b59e"
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
"semver",
]
[[package]]
name = "rustix"
2023-12-23 05:55:24 +00:00
version = "0.37.27"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"bitflags 1.3.2",
2023-04-25 01:26:27 +00:00
"errno",
"io-lifetimes",
"libc",
2023-12-23 05:55:24 +00:00
"linux-raw-sys 0.3.8",
"windows-sys 0.48.0",
]
[[package]]
name = "rustix"
version = "0.38.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
dependencies = [
"bitflags 2.4.1",
"errno",
"libc",
"linux-raw-sys 0.4.12",
"windows-sys 0.52.0",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "ryu"
2023-12-23 05:55:24 +00:00
version = "1.0.16"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
2023-04-25 01:26:27 +00: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-12-23 05:55:24 +00:00
version = "1.0.193"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
2023-04-25 01:26:27 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-12-23 05:55:24 +00:00
version = "1.0.193"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
2023-04-25 01:26:27 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-12-23 05:55:24 +00:00
"syn 2.0.42",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "serde_fmt"
2023-05-06 19:27:48 +00:00
version = "1.0.3"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-06 19:27:48 +00:00
checksum = "e1d4ddca14104cd60529e8c7f7ba71a2c8acd8f7f5cfcdc2faf97eeb7c3010a4"
2023-04-25 01:26:27 +00:00
dependencies = [
"serde",
]
[[package]]
name = "serde_json"
2023-12-23 05:55:24 +00:00
version = "1.0.108"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
2023-04-25 01:26:27 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_qs"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
dependencies = [
"percent-encoding",
"serde",
"thiserror",
]
[[package]]
name = "serde_qs"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0431a35568651e363364210c91983c1da5eb29404d9f0928b67d4ebcfa7d330c"
dependencies = [
"percent-encoding",
"serde",
"thiserror",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "sha1"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
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"
[[package]]
name = "sha2"
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
dependencies = [
"block-buffer",
"cfg-if 1.0.0",
"cpufeatures",
"digest",
"opaque-debug",
]
[[package]]
name = "sharded-slab"
2023-12-23 05:55:24 +00:00
version = "0.1.7"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2023-04-25 01:26:27 +00:00
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
[[package]]
name = "slab"
2023-12-23 05:55:24 +00:00
version = "0.4.9"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2023-04-25 01:26:27 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "socket2"
2023-12-23 05:55:24 +00:00
version = "0.4.10"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
2023-04-25 01:26:27 +00:00
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "standback"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
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",
"serde",
"serde_derive",
"syn 1.0.109",
]
[[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",
"serde",
"serde_derive",
"serde_json",
"sha1",
"syn 1.0.109",
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
[[package]]
name = "subtle"
2023-05-01 23:48:29 +00:00
version = "2.5.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 23:48:29 +00:00
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2023-04-25 01:26:27 +00:00
[[package]]
name = "sval"
2023-12-23 05:55:24 +00:00
version = "2.10.2"
2023-06-25 16:46:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "b15df12a8db7c216a04b4b438f90d50d5335cd38f161b56389c9f5c9d96d0873"
2023-06-25 16:46:07 +00:00
[[package]]
name = "sval_buffer"
2023-12-23 05:55:24 +00:00
version = "2.10.2"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "57e80556bc8acea0446e574ce542ad6114a76a0237f28a842bc01ca3ea98f479"
2023-06-25 16:46:07 +00:00
dependencies = [
"sval",
"sval_ref",
]
[[package]]
name = "sval_dynamic"
2023-12-23 05:55:24 +00:00
version = "2.10.2"
2023-06-25 16:46:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "9d93d2259edb1d7b4316179f0a98c62e3ffc726f47ab200e07cfe382771f57b8"
2023-06-25 16:46:07 +00:00
dependencies = [
"sval",
]
[[package]]
name = "sval_fmt"
2023-12-23 05:55:24 +00:00
version = "2.10.2"
2023-06-25 16:46:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "532f7f882226f7a5a4656f5151224aaebf8217e0d539cb1595b831bace921343"
2023-06-25 16:46:07 +00:00
dependencies = [
"itoa",
"ryu",
"sval",
]
[[package]]
name = "sval_json"
2023-12-23 05:55:24 +00:00
version = "2.10.2"
2023-06-25 16:46:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "76e03bd8aa0ae6ee018f7ae95c9714577687a4415bd1a5f19b26e34695f7e072"
2023-06-25 16:46:07 +00:00
dependencies = [
"itoa",
"ryu",
"sval",
]
[[package]]
name = "sval_ref"
2023-12-23 05:55:24 +00:00
version = "2.10.2"
2023-06-25 16:46:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "75ed054f2fb8c2a0ab5d36c1ec57b412919700099fc5e32ad8e7a38b23e1a9e1"
2023-06-25 16:46:07 +00:00
dependencies = [
"sval",
]
[[package]]
name = "sval_serde"
2023-12-23 05:55:24 +00:00
version = "2.10.2"
2023-06-25 16:46:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "7ff191c4ff05b67e3844c161021427646cde5d6624597958be158357d9200586"
2023-04-25 01:26:27 +00:00
dependencies = [
"serde",
2023-06-25 16:46:07 +00:00
"sval",
"sval_buffer",
"sval_fmt",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
2023-12-23 05:55:24 +00:00
version = "2.0.42"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "5b7d0a2c048d661a1a59fcd7355baa232f7ed34e0ee4df2eef3c1c1c0d3852d8"
2023-04-25 01:26:27 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "thiserror"
2023-12-23 05:55:24 +00:00
version = "1.0.51"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "f11c217e1416d6f036b870f14e0413d480dbf28edbee1f877abaf0206af43bb7"
2023-04-25 01:26:27 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-12-23 05:55:24 +00:00
version = "1.0.51"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "01742297787513b79cf8e29d1056ede1313e2420b7b3b15d0a768b4921f549df"
2023-04-25 01:26:27 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-12-23 05:55:24 +00:00
"syn 2.0.42",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "thread_local"
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
dependencies = [
"cfg-if 1.0.0",
"once_cell",
]
[[package]]
name = "tide"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c459573f0dd2cc734b539047f57489ea875af8ee950860ded20cf93a79a1dee0"
dependencies = [
"async-h1",
"async-session",
"async-sse",
"async-std",
"async-trait",
"femme",
"futures-util",
"http-client",
"http-types",
"kv-log-macro",
"log",
2023-12-23 05:55:24 +00:00
"pin-project-lite 0.2.13",
2023-04-25 01:26:27 +00:00
"route-recognizer",
"serde",
"serde_json",
]
[[package]]
name = "tide-tracing"
version = "0.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "500f567f8c4d65210e6a7c9978661cc7ad6be1dc97e32c3e88bf8f0f0599c23d"
dependencies = [
"async-trait",
"tide",
"tracing",
"tracing-futures",
]
[[package]]
name = "time"
version = "0.2.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
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"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"standback",
"syn 1.0.109",
]
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tracing"
2023-12-23 05:55:24 +00:00
version = "0.1.40"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"pin-project-lite 0.2.13",
2023-04-25 01:26:27 +00:00
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-12-23 05:55:24 +00:00
version = "0.1.27"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2023-04-25 01:26:27 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-12-23 05:55:24 +00:00
"syn 2.0.42",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "tracing-core"
2023-12-23 05:55:24 +00:00
version = "0.1.32"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2023-04-25 01:26:27 +00:00
dependencies = [
"once_cell",
]
[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
"pin-project",
"tracing",
]
[[package]]
name = "tracing-subscriber"
2023-12-23 05:55:24 +00:00
version = "0.3.18"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
2023-04-25 01:26:27 +00:00
dependencies = [
"sharded-slab",
"thread_local",
"tracing-core",
]
[[package]]
name = "typenum"
2023-12-23 05:55:24 +00:00
version = "1.17.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2023-04-25 01:26:27 +00:00
[[package]]
name = "unicase"
2023-12-23 05:55:24 +00:00
version = "2.7.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
2023-04-25 01:26:27 +00:00
dependencies = [
"version_check",
]
[[package]]
name = "unicode-bidi"
2023-12-23 05:55:24 +00:00
version = "0.3.14"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
2023-04-25 01:26:27 +00:00
[[package]]
name = "unicode-ident"
2023-12-23 05:55:24 +00:00
version = "1.0.12"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2023-04-25 01:26:27 +00:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
[[package]]
name = "universal-hash"
2023-05-01 23:48:29 +00:00
version = "0.4.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 23:48:29 +00:00
checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402"
2023-04-25 01:26:27 +00:00
dependencies = [
"generic-array",
"subtle",
]
[[package]]
name = "url"
2023-12-23 05:55:24 +00:00
version = "2.5.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2023-04-25 01:26:27 +00:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
"serde",
]
[[package]]
name = "value-bag"
2023-12-23 05:55:24 +00:00
version = "1.4.2"
2023-06-25 16:46:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "4a72e1902dde2bd6441347de2b70b7f5d59bf157c6c62f0c44572607a1d55bbe"
2023-06-25 16:46:07 +00:00
dependencies = [
"value-bag-serde1",
"value-bag-sval2",
]
[[package]]
name = "value-bag-serde1"
2023-12-23 05:55:24 +00:00
version = "1.4.2"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "07ba39dc791ecb35baad371a3fc04c6eab688c04937d2e0ac6c22b612c0357bf"
2023-04-25 01:26:27 +00:00
dependencies = [
"erased-serde",
"serde",
"serde_fmt",
2023-06-25 16:46:07 +00:00
]
[[package]]
name = "value-bag-sval2"
2023-12-23 05:55:24 +00:00
version = "1.4.2"
2023-06-25 16:46:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "c3e06c10810a57bbf45778d023d432a50a1daa7d185991ae06bcfb6c654d0945"
2023-06-25 16:46:07 +00:00
dependencies = [
2023-04-25 01:26:27 +00:00
"sval",
2023-06-25 16:46:07 +00:00
"sval_buffer",
"sval_dynamic",
"sval_fmt",
"sval_json",
"sval_ref",
"sval_serde",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "waker-fn"
2023-12-23 05:55:24 +00:00
version = "1.1.1"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
2023-04-25 01:26:27 +00:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2023-12-23 05:55:24 +00:00
version = "0.2.89"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
2023-04-25 01:26:27 +00:00
dependencies = [
"cfg-if 1.0.0",
"serde",
"serde_json",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-12-23 05:55:24 +00:00
version = "0.2.89"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
2023-04-25 01:26:27 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-12-23 05:55:24 +00:00
"syn 2.0.42",
2023-04-25 01:26:27 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-12-23 05:55:24 +00:00
version = "0.4.39"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12"
2023-04-25 01:26:27 +00:00
dependencies = [
"cfg-if 1.0.0",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-12-23 05:55:24 +00:00
version = "0.2.89"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
2023-04-25 01:26:27 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-12-23 05:55:24 +00:00
version = "0.2.89"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
2023-04-25 01:26:27 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-12-23 05:55:24 +00:00
"syn 2.0.42",
2023-04-25 01:26:27 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-12-23 05:55:24 +00:00
version = "0.2.89"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
2023-04-25 01:26:27 +00:00
[[package]]
name = "web-sys"
2023-12-23 05:55:24 +00:00
version = "0.3.66"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f"
2023-04-25 01:26:27 +00: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"
[[package]]
2023-12-23 05:55:24 +00:00
name = "windows-core"
version = "0.51.1"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00:00
"windows-targets 0.48.5",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-12-23 05:55:24 +00: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.0",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "windows-targets"
2023-12-23 05:55:24 +00:00
version = "0.48.5"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-04-25 01:26:27 +00:00
dependencies = [
2023-12-23 05:55:24 +00: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.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
dependencies = [
"windows_aarch64_gnullvm 0.52.0",
"windows_aarch64_msvc 0.52.0",
"windows_i686_gnu 0.52.0",
"windows_i686_msvc 0.52.0",
"windows_x86_64_gnu 0.52.0",
"windows_x86_64_gnullvm 0.52.0",
"windows_x86_64_msvc 0.52.0",
2023-04-25 01:26:27 +00:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-12-23 05:55:24 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
2023-04-25 01:26:27 +00:00
[[package]]
name = "windows_aarch64_msvc"
2023-12-23 05:55:24 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
2023-04-25 01:26:27 +00:00
[[package]]
name = "windows_i686_gnu"
2023-12-23 05:55:24 +00:00
version = "0.48.5"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
[[package]]
name = "windows_i686_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
2023-04-25 01:26:27 +00:00
[[package]]
name = "windows_i686_msvc"
2023-12-23 05:55:24 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
[[package]]
name = "windows_i686_msvc"
version = "0.52.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
2023-04-25 01:26:27 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-12-23 05:55:24 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
2023-04-25 01:26:27 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-12-23 05:55:24 +00:00
version = "0.48.5"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
2023-04-25 01:26:27 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-12-23 05:55:24 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.0"
2023-04-25 01:26:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-23 05:55:24 +00:00
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"