You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1740 lines
42 KiB
1740 lines
42 KiB
# 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", |
|
] |
|
|
|
[[package]] |
|
name = "anyhow" |
|
version = "1.0.53" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "94a45b455c14666b85fc40a019e8ab9eb75e3a124e05494f5397122bc9eb06e0" |
|
|
|
[[package]] |
|
name = "arrayref" |
|
version = "0.3.6" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" |
|
|
|
[[package]] |
|
name = "arrayvec" |
|
version = "0.5.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" |
|
|
|
[[package]] |
|
name = "async-attributes" |
|
version = "1.1.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5" |
|
dependencies = [ |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "async-channel" |
|
version = "1.6.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319" |
|
dependencies = [ |
|
"concurrent-queue", |
|
"event-listener", |
|
"futures-core", |
|
] |
|
|
|
[[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" |
|
version = "1.4.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965" |
|
dependencies = [ |
|
"async-task", |
|
"concurrent-queue", |
|
"fastrand", |
|
"futures-lite", |
|
"once_cell", |
|
"slab", |
|
] |
|
|
|
[[package]] |
|
name = "async-global-executor" |
|
version = "2.0.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "9586ec52317f36de58453159d48351bc244bc24ced3effc1fce22f3d48664af6" |
|
dependencies = [ |
|
"async-channel", |
|
"async-executor", |
|
"async-io", |
|
"async-mutex", |
|
"blocking", |
|
"futures-lite", |
|
"num_cpus", |
|
"once_cell", |
|
] |
|
|
|
[[package]] |
|
name = "async-h1" |
|
version = "2.3.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "8101020758a4fc3a7c326cb42aa99e9fa77cbfb76987c128ad956406fe1f70a7" |
|
dependencies = [ |
|
"async-channel", |
|
"async-dup", |
|
"async-std", |
|
"futures-core", |
|
"http-types", |
|
"httparse", |
|
"log", |
|
"pin-project", |
|
] |
|
|
|
[[package]] |
|
name = "async-io" |
|
version = "1.6.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a811e6a479f2439f0c04038796b5cfb3d2ad56c230e0f2d3f7b04d68cfee607b" |
|
dependencies = [ |
|
"concurrent-queue", |
|
"futures-lite", |
|
"libc", |
|
"log", |
|
"once_cell", |
|
"parking", |
|
"polling", |
|
"slab", |
|
"socket2", |
|
"waker-fn", |
|
"winapi", |
|
] |
|
|
|
[[package]] |
|
name = "async-lock" |
|
version = "2.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "e6a8ea61bf9947a1007c5cada31e647dbc77b103c679858150003ba697ea798b" |
|
dependencies = [ |
|
"event-listener", |
|
] |
|
|
|
[[package]] |
|
name = "async-mutex" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e" |
|
dependencies = [ |
|
"event-listener", |
|
] |
|
|
|
[[package]] |
|
name = "async-process" |
|
version = "1.3.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "83137067e3a2a6a06d67168e49e68a0957d215410473a740cea95a2425c0b7c6" |
|
dependencies = [ |
|
"async-io", |
|
"blocking", |
|
"cfg-if 1.0.0", |
|
"event-listener", |
|
"futures-lite", |
|
"libc", |
|
"once_cell", |
|
"signal-hook", |
|
"winapi", |
|
] |
|
|
|
[[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", |
|
] |
|
|
|
[[package]] |
|
name = "async-sse" |
|
version = "4.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "53bba003996b8fd22245cd0c59b869ba764188ed435392cf2796d03b805ade10" |
|
dependencies = [ |
|
"async-channel", |
|
"async-std", |
|
"http-types", |
|
"log", |
|
"memchr", |
|
"pin-project-lite 0.1.12", |
|
] |
|
|
|
[[package]] |
|
name = "async-std" |
|
version = "1.10.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f8056f1455169ab86dd47b47391e4ab0cbd25410a70e9fe675544f49bafaf952" |
|
dependencies = [ |
|
"async-attributes", |
|
"async-channel", |
|
"async-global-executor", |
|
"async-io", |
|
"async-lock", |
|
"async-process", |
|
"crossbeam-utils", |
|
"futures-channel", |
|
"futures-core", |
|
"futures-io", |
|
"futures-lite", |
|
"gloo-timers", |
|
"kv-log-macro", |
|
"log", |
|
"memchr", |
|
"num_cpus", |
|
"once_cell", |
|
"pin-project-lite 0.2.8", |
|
"pin-utils", |
|
"slab", |
|
"wasm-bindgen-futures", |
|
] |
|
|
|
[[package]] |
|
name = "async-task" |
|
version = "4.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "677d306121baf53310a3fd342d88dc0824f6bbeace68347593658525565abee8" |
|
|
|
[[package]] |
|
name = "async-trait" |
|
version = "0.1.52" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "atomic-waker" |
|
version = "1.0.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a" |
|
|
|
[[package]] |
|
name = "atty" |
|
version = "0.2.14" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" |
|
dependencies = [ |
|
"hermit-abi", |
|
"libc", |
|
"winapi", |
|
] |
|
|
|
[[package]] |
|
name = "autocfg" |
|
version = "1.0.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" |
|
|
|
[[package]] |
|
name = "base-x" |
|
version = "0.2.8" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b" |
|
|
|
[[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.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" |
|
|
|
[[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" |
|
|
|
[[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" |
|
version = "1.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "046e47d4b2d391b1f6f8b407b1deb8dee56c1852ccd868becf2710f601b5f427" |
|
dependencies = [ |
|
"async-channel", |
|
"async-task", |
|
"atomic-waker", |
|
"fastrand", |
|
"futures-lite", |
|
"once_cell", |
|
] |
|
|
|
[[package]] |
|
name = "bumpalo" |
|
version = "3.9.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899" |
|
|
|
[[package]] |
|
name = "cache-padded" |
|
version = "1.2.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c" |
|
|
|
[[package]] |
|
name = "cc" |
|
version = "1.0.72" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee" |
|
|
|
[[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" |
|
version = "0.4.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" |
|
dependencies = [ |
|
"libc", |
|
"num-integer", |
|
"num-traits", |
|
"serde", |
|
"time 0.1.44", |
|
"winapi", |
|
] |
|
|
|
[[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" |
|
version = "3.0.14" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "b63edc3f163b3c71ec8aa23f9bd6070f77edbf3d1d198b164afa90ff00e4ec62" |
|
dependencies = [ |
|
"atty", |
|
"bitflags", |
|
"indexmap", |
|
"os_str_bytes", |
|
"strsim", |
|
"termcolor", |
|
"textwrap", |
|
] |
|
|
|
[[package]] |
|
name = "concurrent-queue" |
|
version = "1.2.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3" |
|
dependencies = [ |
|
"cache-padded", |
|
] |
|
|
|
[[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.0", |
|
"hkdf", |
|
"hmac 0.10.1", |
|
"percent-encoding", |
|
"rand 0.8.4", |
|
"sha2", |
|
"time 0.2.27", |
|
"version_check", |
|
] |
|
|
|
[[package]] |
|
name = "cpufeatures" |
|
version = "0.2.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469" |
|
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" |
|
version = "0.8.6" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "cfcae03edb34f947e64acdb1c33ec169824e20657e9ecb61cef6c8c74dcb8120" |
|
dependencies = [ |
|
"cfg-if 1.0.0", |
|
"lazy_static", |
|
] |
|
|
|
[[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" |
|
version = "0.10.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a" |
|
dependencies = [ |
|
"generic-array", |
|
"subtle", |
|
] |
|
|
|
[[package]] |
|
name = "ctor" |
|
version = "0.1.21" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "ccc0a48a9b826acdf4028595adc9db92caea352f7af011a3034acd172a52a0aa" |
|
dependencies = [ |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "ctr" |
|
version = "0.6.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f" |
|
dependencies = [ |
|
"cipher", |
|
] |
|
|
|
[[package]] |
|
name = "dashmap" |
|
version = "4.0.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" |
|
dependencies = [ |
|
"cfg-if 1.0.0", |
|
"num_cpus", |
|
] |
|
|
|
[[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 = "event-listener" |
|
version = "2.5.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71" |
|
|
|
[[package]] |
|
name = "fastrand" |
|
version = "1.7.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf" |
|
dependencies = [ |
|
"instant", |
|
] |
|
|
|
[[package]] |
|
name = "femme" |
|
version = "2.1.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "2af1a24f391a5a94d756db5092c6576aad494b88a71a5a36b20c67b63e0df034" |
|
dependencies = [ |
|
"cfg-if 0.1.10", |
|
"js-sys", |
|
"log", |
|
"serde", |
|
"serde_derive", |
|
"serde_json", |
|
"wasm-bindgen", |
|
"web-sys", |
|
] |
|
|
|
[[package]] |
|
name = "form_urlencoded" |
|
version = "1.0.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" |
|
dependencies = [ |
|
"matches", |
|
"percent-encoding", |
|
] |
|
|
|
[[package]] |
|
name = "futures-channel" |
|
version = "0.3.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "ba3dda0b6588335f360afc675d0564c17a77a2bda81ca178a4b6081bd86c7f0b" |
|
dependencies = [ |
|
"futures-core", |
|
] |
|
|
|
[[package]] |
|
name = "futures-core" |
|
version = "0.3.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d0c8ff0461b82559810cdccfde3215c3f373807f5e5232b71479bff7bb2583d7" |
|
|
|
[[package]] |
|
name = "futures-io" |
|
version = "0.3.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "b1f9d34af5a1aac6fb380f735fe510746c38067c5bf16c7fd250280503c971b2" |
|
|
|
[[package]] |
|
name = "futures-lite" |
|
version = "1.12.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" |
|
dependencies = [ |
|
"fastrand", |
|
"futures-core", |
|
"futures-io", |
|
"memchr", |
|
"parking", |
|
"pin-project-lite 0.2.8", |
|
"waker-fn", |
|
] |
|
|
|
[[package]] |
|
name = "futures-macro" |
|
version = "0.3.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "6dbd947adfffb0efc70599b3ddcf7b5597bb5fa9e245eb99f62b3a5f7bb8bd3c" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "futures-task" |
|
version = "0.3.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "6ee7c6485c30167ce4dfb83ac568a849fe53274c831081476ee13e0dce1aad72" |
|
|
|
[[package]] |
|
name = "futures-util" |
|
version = "0.3.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d9b5cf40b47a271f77a8b1bec03ca09044d99d2372c0de244e66430761127164" |
|
dependencies = [ |
|
"futures-core", |
|
"futures-macro", |
|
"futures-task", |
|
"pin-project-lite 0.2.8", |
|
"pin-utils", |
|
"slab", |
|
] |
|
|
|
[[package]] |
|
name = "generic-array" |
|
version = "0.14.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803" |
|
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" |
|
version = "0.2.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c" |
|
dependencies = [ |
|
"cfg-if 1.0.0", |
|
"libc", |
|
"wasi 0.10.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.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "4d12a7f4e95cfe710f1d624fb1210b7d961a5fb05c4fd942f4feab06e61f590e" |
|
dependencies = [ |
|
"futures-channel", |
|
"futures-core", |
|
"js-sys", |
|
"wasm-bindgen", |
|
] |
|
|
|
[[package]] |
|
name = "hashbrown" |
|
version = "0.11.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" |
|
|
|
[[package]] |
|
name = "hermit-abi" |
|
version = "0.1.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" |
|
dependencies = [ |
|
"libc", |
|
] |
|
|
|
[[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 = [ |
|
"crypto-mac 0.10.1", |
|
"digest", |
|
] |
|
|
|
[[package]] |
|
name = "http-client" |
|
version = "6.5.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "ea880b03c18a7e981d7fb3608b8904a98425d53c440758fcebf7d934aa56547c" |
|
dependencies = [ |
|
"async-trait", |
|
"cfg-if 1.0.0", |
|
"dashmap", |
|
"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", |
|
"async-channel", |
|
"async-std", |
|
"base64 0.13.0", |
|
"cookie", |
|
"futures-lite", |
|
"infer", |
|
"pin-project-lite 0.2.8", |
|
"rand 0.7.3", |
|
"serde", |
|
"serde_json", |
|
"serde_qs", |
|
"serde_urlencoded", |
|
"url", |
|
] |
|
|
|
[[package]] |
|
name = "httparse" |
|
version = "1.5.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503" |
|
|
|
[[package]] |
|
name = "idna" |
|
version = "0.2.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" |
|
dependencies = [ |
|
"matches", |
|
"unicode-bidi", |
|
"unicode-normalization", |
|
] |
|
|
|
[[package]] |
|
name = "indexmap" |
|
version = "1.8.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223" |
|
dependencies = [ |
|
"autocfg", |
|
"hashbrown", |
|
] |
|
|
|
[[package]] |
|
name = "infer" |
|
version = "0.2.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" |
|
|
|
[[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 = "itoa" |
|
version = "1.0.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" |
|
|
|
[[package]] |
|
name = "js-sys" |
|
version = "0.3.56" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04" |
|
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 = "kyo-rs" |
|
version = "0.1.0" |
|
dependencies = [ |
|
"anyhow", |
|
"async-std", |
|
"clap", |
|
"once_cell", |
|
"serde", |
|
"serde_json", |
|
"tide", |
|
] |
|
|
|
[[package]] |
|
name = "lazy_static" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" |
|
|
|
[[package]] |
|
name = "libc" |
|
version = "0.2.116" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "565dbd88872dbe4cc8a46e527f26483c1d1f7afa6b884a3bd6cd893d4f98da74" |
|
|
|
[[package]] |
|
name = "log" |
|
version = "0.4.14" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" |
|
dependencies = [ |
|
"cfg-if 1.0.0", |
|
"value-bag", |
|
] |
|
|
|
[[package]] |
|
name = "matches" |
|
version = "0.1.9" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" |
|
|
|
[[package]] |
|
name = "memchr" |
|
version = "2.4.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" |
|
|
|
[[package]] |
|
name = "num-integer" |
|
version = "0.1.44" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" |
|
dependencies = [ |
|
"autocfg", |
|
"num-traits", |
|
] |
|
|
|
[[package]] |
|
name = "num-traits" |
|
version = "0.2.14" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" |
|
dependencies = [ |
|
"autocfg", |
|
] |
|
|
|
[[package]] |
|
name = "num_cpus" |
|
version = "1.13.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" |
|
dependencies = [ |
|
"hermit-abi", |
|
"libc", |
|
] |
|
|
|
[[package]] |
|
name = "once_cell" |
|
version = "1.9.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5" |
|
|
|
[[package]] |
|
name = "opaque-debug" |
|
version = "0.3.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" |
|
|
|
[[package]] |
|
name = "os_str_bytes" |
|
version = "6.0.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" |
|
dependencies = [ |
|
"memchr", |
|
] |
|
|
|
[[package]] |
|
name = "parking" |
|
version = "2.0.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" |
|
|
|
[[package]] |
|
name = "percent-encoding" |
|
version = "2.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" |
|
|
|
[[package]] |
|
name = "pin-project" |
|
version = "1.0.10" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e" |
|
dependencies = [ |
|
"pin-project-internal", |
|
] |
|
|
|
[[package]] |
|
name = "pin-project-internal" |
|
version = "1.0.10" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[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" |
|
version = "0.2.8" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c" |
|
|
|
[[package]] |
|
name = "pin-utils" |
|
version = "0.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" |
|
|
|
[[package]] |
|
name = "polling" |
|
version = "2.2.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "685404d509889fade3e86fe3a5803bca2ec09b0c0778d5ada6ec8bf7a8de5259" |
|
dependencies = [ |
|
"cfg-if 1.0.0", |
|
"libc", |
|
"log", |
|
"wepoll-ffi", |
|
"winapi", |
|
] |
|
|
|
[[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.16" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872" |
|
|
|
[[package]] |
|
name = "proc-macro-hack" |
|
version = "0.5.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" |
|
|
|
[[package]] |
|
name = "proc-macro2" |
|
version = "1.0.36" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029" |
|
dependencies = [ |
|
"unicode-xid", |
|
] |
|
|
|
[[package]] |
|
name = "quote" |
|
version = "1.0.15" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145" |
|
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 0.2.0", |
|
] |
|
|
|
[[package]] |
|
name = "rand" |
|
version = "0.8.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" |
|
dependencies = [ |
|
"libc", |
|
"rand_chacha 0.3.1", |
|
"rand_core 0.6.3", |
|
"rand_hc 0.3.1", |
|
] |
|
|
|
[[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.3", |
|
] |
|
|
|
[[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.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" |
|
dependencies = [ |
|
"getrandom 0.2.4", |
|
] |
|
|
|
[[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 = "rand_hc" |
|
version = "0.3.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" |
|
dependencies = [ |
|
"rand_core 0.6.3", |
|
] |
|
|
|
[[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 = "ryu" |
|
version = "1.0.9" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f" |
|
|
|
[[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" |
|
version = "1.0.136" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789" |
|
dependencies = [ |
|
"serde_derive", |
|
] |
|
|
|
[[package]] |
|
name = "serde_derive" |
|
version = "1.0.136" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "serde_json" |
|
version = "1.0.78" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d23c1ba4cf0efd44be32017709280b32d1cea5c3f1275c3b6d9e8bc54f758085" |
|
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_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 = "signal-hook" |
|
version = "0.3.13" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "647c97df271007dcea485bb74ffdb57f2e683f1306c854f468a0c244badabf2d" |
|
dependencies = [ |
|
"libc", |
|
"signal-hook-registry", |
|
] |
|
|
|
[[package]] |
|
name = "signal-hook-registry" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0" |
|
dependencies = [ |
|
"libc", |
|
] |
|
|
|
[[package]] |
|
name = "simple-mutex" |
|
version = "1.1.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "38aabbeafa6f6dead8cebf246fe9fae1f9215c8d29b3a69f93bd62a9e4a3dcd6" |
|
dependencies = [ |
|
"event-listener", |
|
] |
|
|
|
[[package]] |
|
name = "slab" |
|
version = "0.4.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" |
|
|
|
[[package]] |
|
name = "socket2" |
|
version = "0.4.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0" |
|
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", |
|
] |
|
|
|
[[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", |
|
] |
|
|
|
[[package]] |
|
name = "stdweb-internal-runtime" |
|
version = "0.1.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" |
|
|
|
[[package]] |
|
name = "strsim" |
|
version = "0.10.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" |
|
|
|
[[package]] |
|
name = "subtle" |
|
version = "2.4.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" |
|
|
|
[[package]] |
|
name = "sval" |
|
version = "1.0.0-alpha.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "45f6ee7c7b87caf59549e9fe45d6a69c75c8019e79e212a835c5da0e92f0ba08" |
|
|
|
[[package]] |
|
name = "syn" |
|
version = "1.0.86" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"unicode-xid", |
|
] |
|
|
|
[[package]] |
|
name = "termcolor" |
|
version = "1.1.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" |
|
dependencies = [ |
|
"winapi-util", |
|
] |
|
|
|
[[package]] |
|
name = "textwrap" |
|
version = "0.14.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" |
|
|
|
[[package]] |
|
name = "thiserror" |
|
version = "1.0.30" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" |
|
dependencies = [ |
|
"thiserror-impl", |
|
] |
|
|
|
[[package]] |
|
name = "thiserror-impl" |
|
version = "1.0.30" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[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", |
|
"pin-project-lite 0.2.8", |
|
"route-recognizer", |
|
"serde", |
|
"serde_json", |
|
] |
|
|
|
[[package]] |
|
name = "time" |
|
version = "0.1.44" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" |
|
dependencies = [ |
|
"libc", |
|
"wasi 0.10.0+wasi-snapshot-preview1", |
|
"winapi", |
|
] |
|
|
|
[[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", |
|
] |
|
|
|
[[package]] |
|
name = "tinyvec" |
|
version = "1.5.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2" |
|
dependencies = [ |
|
"tinyvec_macros", |
|
] |
|
|
|
[[package]] |
|
name = "tinyvec_macros" |
|
version = "0.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" |
|
|
|
[[package]] |
|
name = "typenum" |
|
version = "1.15.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" |
|
|
|
[[package]] |
|
name = "unicode-bidi" |
|
version = "0.3.7" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f" |
|
|
|
[[package]] |
|
name = "unicode-normalization" |
|
version = "0.1.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9" |
|
dependencies = [ |
|
"tinyvec", |
|
] |
|
|
|
[[package]] |
|
name = "unicode-xid" |
|
version = "0.2.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" |
|
|
|
[[package]] |
|
name = "universal-hash" |
|
version = "0.4.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" |
|
dependencies = [ |
|
"generic-array", |
|
"subtle", |
|
] |
|
|
|
[[package]] |
|
name = "url" |
|
version = "2.2.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" |
|
dependencies = [ |
|
"form_urlencoded", |
|
"idna", |
|
"matches", |
|
"percent-encoding", |
|
"serde", |
|
] |
|
|
|
[[package]] |
|
name = "value-bag" |
|
version = "1.0.0-alpha.8" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "79923f7731dc61ebfba3633098bf3ac533bbd35ccd8c57e7088d9a5eebe0263f" |
|
dependencies = [ |
|
"ctor", |
|
"sval", |
|
"version_check", |
|
] |
|
|
|
[[package]] |
|
name = "version_check" |
|
version = "0.9.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" |
|
|
|
[[package]] |
|
name = "waker-fn" |
|
version = "1.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" |
|
|
|
[[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.10.0+wasi-snapshot-preview1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" |
|
|
|
[[package]] |
|
name = "wasm-bindgen" |
|
version = "0.2.79" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06" |
|
dependencies = [ |
|
"cfg-if 1.0.0", |
|
"serde", |
|
"serde_json", |
|
"wasm-bindgen-macro", |
|
] |
|
|
|
[[package]] |
|
name = "wasm-bindgen-backend" |
|
version = "0.2.79" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca" |
|
dependencies = [ |
|
"bumpalo", |
|
"lazy_static", |
|
"log", |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
"wasm-bindgen-shared", |
|
] |
|
|
|
[[package]] |
|
name = "wasm-bindgen-futures" |
|
version = "0.4.29" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395" |
|
dependencies = [ |
|
"cfg-if 1.0.0", |
|
"js-sys", |
|
"wasm-bindgen", |
|
"web-sys", |
|
] |
|
|
|
[[package]] |
|
name = "wasm-bindgen-macro" |
|
version = "0.2.79" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01" |
|
dependencies = [ |
|
"quote", |
|
"wasm-bindgen-macro-support", |
|
] |
|
|
|
[[package]] |
|
name = "wasm-bindgen-macro-support" |
|
version = "0.2.79" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
"wasm-bindgen-backend", |
|
"wasm-bindgen-shared", |
|
] |
|
|
|
[[package]] |
|
name = "wasm-bindgen-shared" |
|
version = "0.2.79" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2" |
|
|
|
[[package]] |
|
name = "web-sys" |
|
version = "0.3.56" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "c060b319f29dd25724f09a2ba1418f142f539b2be99fbf4d2d5a8f7330afb8eb" |
|
dependencies = [ |
|
"js-sys", |
|
"wasm-bindgen", |
|
] |
|
|
|
[[package]] |
|
name = "wepoll-ffi" |
|
version = "0.1.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb" |
|
dependencies = [ |
|
"cc", |
|
] |
|
|
|
[[package]] |
|
name = "winapi" |
|
version = "0.3.9" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" |
|
dependencies = [ |
|
"winapi-i686-pc-windows-gnu", |
|
"winapi-x86_64-pc-windows-gnu", |
|
] |
|
|
|
[[package]] |
|
name = "winapi-i686-pc-windows-gnu" |
|
version = "0.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
|
|
|
[[package]] |
|
name = "winapi-util" |
|
version = "0.1.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" |
|
dependencies = [ |
|
"winapi", |
|
] |
|
|
|
[[package]] |
|
name = "winapi-x86_64-pc-windows-gnu" |
|
version = "0.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|