1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2024-11-22 13:29:21 +00:00
comunicapiv3/Cargo.lock

3978 lines
95 KiB
Plaintext
Raw Normal View History

2020-05-20 15:46:05 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-02-05 12:21:10 +00:00
[[package]]
name = "actix"
2021-02-19 15:44:50 +00:00
version = "0.10.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "1be241f88f3b1e7e9a3fbe3b5a8a0f6915b5a1d7ee0d9a248d3376d01068cc60"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-02-19 16:08:13 +00:00
"actix-rt",
2021-02-05 12:21:10 +00:00
"actix_derive",
"bitflags",
2021-02-19 15:31:45 +00:00
"bytes 0.5.6",
"crossbeam-channel 0.4.4",
2021-02-05 12:21:10 +00:00
"derive_more",
2021-02-19 15:44:50 +00:00
"futures-channel",
"futures-util",
2021-02-05 12:21:10 +00:00
"log",
2021-02-19 15:44:50 +00:00
"once_cell",
"parking_lot",
2021-05-29 15:10:46 +00:00
"pin-project 0.4.28",
2021-02-05 12:21:10 +00:00
"smallvec",
2021-02-19 15:44:50 +00:00
"tokio 0.2.25",
"tokio-util 0.3.1",
2021-02-05 12:21:10 +00:00
"trust-dns-proto",
"trust-dns-resolver",
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "actix-codec"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78d1833b3838dbe990df0f1f87baf640cf6146e898166afe401839d1b001e570"
dependencies = [
"bitflags",
"bytes 0.5.6",
"futures-core",
"futures-sink",
"log",
2021-05-29 15:10:46 +00:00
"pin-project 0.4.28",
2021-02-19 15:44:50 +00:00
"tokio 0.2.25",
2021-02-19 15:31:45 +00:00
"tokio-util 0.3.1",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "actix-connect"
2021-02-19 15:44:50 +00:00
version = "2.0.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "177837a10863f15ba8d3ae3ec12fac1099099529ed20083a27fdfe247381d0dc"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"actix-codec",
2021-02-19 16:08:13 +00:00
"actix-rt",
2020-05-21 13:28:07 +00:00
"actix-service",
2021-02-19 15:44:50 +00:00
"actix-utils",
2020-05-21 13:28:07 +00:00
"derive_more",
"either",
2021-02-19 15:44:50 +00:00
"futures-util",
2020-05-21 13:28:07 +00:00
"http",
"log",
"trust-dns-proto",
"trust-dns-resolver",
]
[[package]]
name = "actix-files"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c51e8a9146c12fce92a6e4c24b8c4d9b05268130bfd8d61bc587e822c32ce689"
dependencies = [
"actix-service",
"actix-web",
"bitflags",
"bytes 0.5.6",
"derive_more",
"futures-core",
"futures-util",
"log",
"mime",
"mime_guess",
"percent-encoding",
"v_htmlescape",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "actix-http"
2021-02-19 15:44:50 +00:00
version = "2.2.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "452299e87817ae5673910e53c243484ca38be3828db819b6011736fc6982e874"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"actix-codec",
2020-05-21 13:28:07 +00:00
"actix-connect",
2021-02-19 16:08:13 +00:00
"actix-rt",
2020-05-21 13:28:07 +00:00
"actix-service",
"actix-threadpool",
2021-02-19 15:44:50 +00:00
"actix-utils",
"base64 0.13.0",
2020-05-21 13:28:07 +00:00
"bitflags",
"brotli2",
2021-02-19 15:31:45 +00:00
"bytes 0.5.6",
2021-02-19 15:44:50 +00:00
"cookie",
2020-05-21 13:28:07 +00:00
"copyless",
"derive_more",
"either",
"encoding_rs",
"flate2",
"futures-channel",
"futures-core",
"futures-util",
"fxhash",
2021-02-19 15:44:50 +00:00
"h2 0.2.7",
2020-05-21 13:28:07 +00:00
"http",
"httparse",
"indexmap",
2021-02-19 15:44:50 +00:00
"itoa",
2020-05-21 13:28:07 +00:00
"language-tags",
"lazy_static",
"log",
"mime",
"percent-encoding",
2021-05-29 15:10:46 +00:00
"pin-project 1.0.7",
2021-02-19 15:31:45 +00:00
"rand 0.7.3",
2020-05-21 13:28:07 +00:00
"regex",
"serde",
"serde_json",
"serde_urlencoded 0.7.0",
2021-02-19 15:44:50 +00:00
"sha-1",
2020-05-21 13:28:07 +00:00
"slab",
2021-05-29 15:10:46 +00:00
"time 0.2.26",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "actix-macros"
2021-02-19 15:31:45 +00:00
version = "0.1.3"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "b4ca8ce00b267af8ccebbd647de0d61e0674b6e61185cc7a592ff88772bed655"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 13:28:07 +00:00
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "actix-multipart"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "774bfeb11b54bf9c857a005b8ab893293da4eaff79261a66a9200dab7f5ab6e3"
2020-06-20 08:31:58 +00:00
dependencies = [
"actix-service",
2021-02-19 15:44:50 +00:00
"actix-utils",
2020-06-20 08:31:58 +00:00
"actix-web",
2021-02-19 15:31:45 +00:00
"bytes 0.5.6",
2020-06-20 08:31:58 +00:00
"derive_more",
2021-02-19 15:44:50 +00:00
"futures-util",
2020-06-20 08:31:58 +00:00
"httparse",
"log",
"mime",
"twoway",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "actix-router"
2021-02-19 15:31:45 +00:00
version = "0.2.7"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "2ad299af73649e1fc893e333ccf86f377751eb95ff875d095131574c6f43452c"
2020-05-21 13:28:07 +00:00
dependencies = [
"bytestring",
"http",
"log",
"regex",
"serde",
]
[[package]]
name = "actix-rt"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "143fcc2912e0d1de2bcf4e2f720d2a60c28652ab4179685a1ee159e0fb3db227"
dependencies = [
2021-02-19 16:08:13 +00:00
"actix-macros",
2020-05-21 13:28:07 +00:00
"actix-threadpool",
"copyless",
"futures-channel",
"futures-util",
"smallvec",
2021-02-19 15:44:50 +00:00
"tokio 0.2.25",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "actix-server"
2021-02-19 15:31:45 +00:00
version = "1.0.4"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "45407e6e672ca24784baa667c5d32ef109ccdd8d5e0b5ebb9ef8a67f4dfb708e"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"actix-codec",
2021-02-19 16:08:13 +00:00
"actix-rt",
2020-05-21 13:28:07 +00:00
"actix-service",
2021-02-19 15:44:50 +00:00
"actix-utils",
2020-05-21 13:28:07 +00:00
"futures-channel",
"futures-util",
"log",
2021-02-19 15:44:50 +00:00
"mio 0.6.23",
2020-05-21 13:28:07 +00:00
"mio-uds",
"num_cpus",
"slab",
2021-05-29 15:10:46 +00:00
"socket2 0.3.19",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "actix-service"
2021-02-19 15:31:45 +00:00
version = "1.0.6"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "0052435d581b5be835d11f4eb3bce417c8af18d87ddf8ace99f8e67e595882bb"
2020-05-21 13:28:07 +00:00
dependencies = [
"futures-util",
2021-05-29 15:10:46 +00:00
"pin-project 0.4.28",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "actix-testing"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47239ca38799ab74ee6a8a94d1ce857014b2ac36f242f70f3f75a66f691e791c"
dependencies = [
2021-02-19 16:08:13 +00:00
"actix-macros",
"actix-rt",
2020-05-21 13:28:07 +00:00
"actix-server",
"actix-service",
"log",
2021-05-29 15:10:46 +00:00
"socket2 0.3.19",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "actix-threadpool"
2021-02-19 15:31:45 +00:00
version = "0.3.3"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "d209f04d002854b9afd3743032a27b066158817965bf5d036824d19ac2cc0e30"
2020-05-21 13:28:07 +00:00
dependencies = [
"derive_more",
"futures-channel",
"lazy_static",
"log",
"num_cpus",
2021-02-19 15:44:50 +00:00
"parking_lot",
2020-05-21 13:28:07 +00:00
"threadpool",
]
[[package]]
name = "actix-tls"
2021-02-19 15:44:50 +00:00
version = "2.0.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "24789b7d7361cf5503a504ebe1c10806896f61e96eca9a7350e23001aca715fb"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"actix-codec",
2020-05-21 13:28:07 +00:00
"actix-service",
2021-02-19 15:44:50 +00:00
"actix-utils",
"futures-util",
2021-02-19 15:31:45 +00:00
]
[[package]]
name = "actix-utils"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9022dec56632d1d7979e59af14f0597a28a830a9c1c7fec8b2327eb9f16b5a"
dependencies = [
2021-02-19 15:44:50 +00:00
"actix-codec",
2021-02-19 16:08:13 +00:00
"actix-rt",
2021-02-19 15:31:45 +00:00
"actix-service",
"bitflags",
"bytes 0.5.6",
"either",
"futures-channel",
"futures-sink",
"futures-util",
"log",
2021-05-29 15:10:46 +00:00
"pin-project 0.4.28",
2020-05-21 13:28:07 +00:00
"slab",
]
[[package]]
name = "actix-web"
2021-02-19 15:44:50 +00:00
version = "3.3.2"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "e641d4a172e7faa0862241a20ff4f1f5ab0ab7c279f00c2d4587b77483477b86"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"actix-codec",
2020-05-21 13:28:07 +00:00
"actix-http",
2021-02-19 16:08:13 +00:00
"actix-macros",
2020-05-21 13:28:07 +00:00
"actix-router",
2021-02-19 16:08:13 +00:00
"actix-rt",
2020-05-21 13:28:07 +00:00
"actix-server",
"actix-service",
"actix-testing",
"actix-threadpool",
"actix-tls",
2021-02-19 15:44:50 +00:00
"actix-utils",
2020-05-21 13:28:07 +00:00
"actix-web-codegen",
"awc",
2021-02-19 15:31:45 +00:00
"bytes 0.5.6",
2020-05-21 13:28:07 +00:00
"derive_more",
"encoding_rs",
2021-02-19 15:44:50 +00:00
"futures-channel",
"futures-core",
"futures-util",
2020-05-21 13:28:07 +00:00
"fxhash",
"log",
"mime",
2021-05-29 15:10:46 +00:00
"pin-project 1.0.7",
2020-05-21 13:28:07 +00:00
"regex",
"serde",
"serde_json",
"serde_urlencoded 0.7.0",
2021-05-29 15:10:46 +00:00
"socket2 0.3.19",
"time 0.2.26",
2021-02-19 15:44:50 +00:00
"tinyvec",
2020-05-21 13:28:07 +00:00
"url",
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "actix-web-actors"
2021-02-19 15:44:50 +00:00
version = "3.0.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "7f6edf3c2693e2a8c422800c87ee89a6a4eac7dd01109bc172a1093ce1f4f001"
2021-02-05 12:21:10 +00:00
dependencies = [
"actix",
2021-02-19 15:44:50 +00:00
"actix-codec",
2021-02-05 12:21:10 +00:00
"actix-http",
"actix-web",
2021-02-19 15:31:45 +00:00
"bytes 0.5.6",
2021-02-19 15:44:50 +00:00
"futures-channel",
"futures-core",
2021-05-29 15:10:46 +00:00
"pin-project 0.4.28",
2021-02-05 12:21:10 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "actix-web-codegen"
2021-02-19 15:44:50 +00:00
version = "0.4.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "ad26f77093333e0e7c6ffe54ebe3582d908a104e448723eec6d43d08b07143fb"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2021-02-05 12:21:10 +00:00
]
[[package]]
name = "actix_derive"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b95aceadaf327f18f0df5962fedc1bde2f870566a0b9f65c89508a3b1f79334c"
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 13:28:07 +00:00
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "adler"
2021-05-29 15:10:46 +00:00
version = "1.0.2"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-02-19 15:31:45 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "adler32"
2021-02-19 15:31:45 +00:00
version = "1.2.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "aes"
version = "0.6.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"aes-soft",
"aesni",
"cipher",
2020-05-21 07:21:58 +00:00
]
2021-01-22 18:39:14 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "aes-soft"
version = "0.6.4"
2021-01-22 18:39:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072"
2021-01-22 18:39:14 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"cipher",
"opaque-debug 0.3.0",
2021-01-22 18:39:14 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "aesni"
version = "0.10.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"cipher",
"opaque-debug 0.3.0",
2020-05-21 07:21:58 +00:00
]
2020-07-08 15:14:55 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "ahash"
version = "0.4.7"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e"
2020-07-08 15:14:55 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "aho-corasick"
2021-05-29 15:10:46 +00:00
version = "0.7.18"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"memchr",
2020-05-21 07:21:58 +00:00
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2020-05-23 15:09:28 +00:00
[[package]]
name = "ascii_utils"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a"
2020-05-21 13:28:07 +00:00
[[package]]
name = "async-trait"
2021-05-29 15:10:46 +00:00
version = "0.1.50"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "0b98e84bbb4cbcdd97da190ba0c58a1bb0de2c1fdf67d159e192ed766aeca722"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "attohttpc"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe174d1b67f7b2bafed829c09db039301eb5841f66e43be2cf60b326e7f8e2cc"
dependencies = [
"flate2",
"http",
"log",
"url",
]
[[package]]
name = "attohttpc"
2021-05-29 15:10:46 +00:00
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "9a8bda305457262b339322106c776e3fd21df860018e566eb6a5b1aa4b6ae02d"
dependencies = [
"flate2",
"http",
"log",
"rustls",
"serde",
"serde_urlencoded 0.6.1",
"url",
"webpki",
"webpki-roots",
"wildmatch",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "autocfg"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
2020-05-21 07:21:58 +00:00
[[package]]
name = "autocfg"
2021-02-19 15:31:45 +00:00
version = "1.0.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-05-21 07:21:58 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
name = "awc"
2021-02-19 15:44:50 +00:00
version = "2.0.3"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "b381e490e7b0cfc37ebc54079b0413d8093ef43d14a4e4747083f7fa47a9e691"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"actix-codec",
2020-05-21 13:28:07 +00:00
"actix-http",
2021-02-19 16:08:13 +00:00
"actix-rt",
2020-05-21 13:28:07 +00:00
"actix-service",
2021-02-19 15:44:50 +00:00
"base64 0.13.0",
2021-02-19 15:31:45 +00:00
"bytes 0.5.6",
2021-02-19 15:44:50 +00:00
"cfg-if 1.0.0",
2020-05-21 13:28:07 +00:00
"derive_more",
"futures-core",
"log",
"mime",
"percent-encoding",
2021-02-19 15:31:45 +00:00
"rand 0.7.3",
2020-05-21 13:28:07 +00:00
"serde",
"serde_json",
"serde_urlencoded 0.7.0",
2020-05-21 13:28:07 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "base-x"
version = "0.2.8"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"
2020-05-21 07:21:58 +00:00
2021-02-05 12:21:10 +00:00
[[package]]
name = "base64"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
2021-02-19 15:31:45 +00:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2021-02-13 09:52:04 +00:00
[[package]]
name = "bcrypt"
2021-02-19 15:44:50 +00:00
version = "0.9.0"
2021-02-13 09:52:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "a4d0faafe9e089674fc3efdb311ff5253d445c79d85d1d28bd3ace76d45e7164"
2021-02-13 09:52:04 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"base64 0.13.0",
2021-02-13 09:52:04 +00:00
"blowfish",
2021-05-29 15:10:46 +00:00
"getrandom 0.2.3",
2021-02-13 09:52:04 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "bigdecimal"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1374191e2dd25f9ae02e3aa95041ed5d747fc77b3c102b49fe2dd9a8117a6244"
dependencies = [
2021-03-06 08:35:36 +00:00
"num-bigint 0.2.6",
2020-05-21 07:21:58 +00:00
"num-integer",
2021-02-19 15:44:50 +00:00
"num-traits",
2020-05-21 07:21:58 +00:00
"serde",
]
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
name = "block-buffer"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
2021-02-19 15:44:50 +00:00
"block-padding 0.1.5",
2020-05-21 07:21:58 +00:00
"byte-tools",
"byteorder",
2021-05-29 15:10:46 +00:00
"generic-array 0.12.4",
2021-02-13 09:52:04 +00:00
]
[[package]]
2021-02-19 15:44:50 +00:00
name = "block-buffer"
version = "0.9.0"
2021-02-13 09:52:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
2021-02-13 09:52:04 +00:00
dependencies = [
"generic-array 0.14.4",
2020-05-21 07:21:58 +00:00
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "block-modes"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0"
dependencies = [
"block-padding 0.2.1",
"cipher",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
"byte-tools",
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "block-padding"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
2021-02-13 09:52:04 +00:00
[[package]]
name = "blowfish"
2021-02-19 15:44:50 +00:00
version = "0.7.0"
2021-02-13 09:52:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "32fa6a061124e37baba002e496d203e23ba3d7b73750be82dbfbc92913048a5b"
2021-02-13 09:52:04 +00:00
dependencies = [
"byteorder",
2021-02-19 15:44:50 +00:00
"cipher",
2021-02-13 09:52:04 +00:00
"opaque-debug 0.3.0",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "brotli-sys"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4445dea95f4c2b41cde57cc9fee236ae4dbae88d8fcbdb4750fc1bb5d86aaecd"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "brotli2"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0cb036c3eade309815c15ddbacec5b22c4d1f3983a774ab2eac2e3e9ea85568e"
dependencies = [
"brotli-sys",
"libc",
]
[[package]]
name = "buf-min"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa17aa1cf56bdd6bb30518767d00e58019d326f3f05d8c3e0730b549d332ea83"
dependencies = [
"bytes 0.5.6",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "bufstream"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8"
2021-02-05 12:21:10 +00:00
[[package]]
name = "bumpalo"
2021-05-29 15:10:46 +00:00
version = "3.7.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
2021-02-05 12:21:10 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
2020-06-20 13:22:41 +00:00
[[package]]
name = "bytemuck"
2021-02-19 15:31:45 +00:00
version = "1.5.1"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "bed57e2090563b83ba8f83366628ce535a7584c9afa4c9fc0612a03925c6df58"
2020-06-20 13:22:41 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "byteorder"
2021-05-29 15:10:46 +00:00
version = "1.4.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-05-21 07:21:58 +00:00
[[package]]
name = "bytes"
2021-02-19 15:31:45 +00:00
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
[[package]]
name = "bytes"
version = "1.0.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
2020-05-21 07:21:58 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
name = "bytestring"
2021-02-19 15:31:45 +00:00
version = "1.0.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"bytes 1.0.1",
2020-05-21 13:28:07 +00:00
]
2021-03-06 08:35:36 +00:00
[[package]]
name = "bzip2"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42b7c3cbf0fa9c1b82308d57191728ca0256cb821220f4e2fd410a72ade26e3b"
dependencies = [
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
version = "0.1.10+1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17fa3d1ac1ca21c5c4e36a97f3c3eb25084576f6fc47bf0139c1123434216c6c"
dependencies = [
"cc",
"libc",
"pkg-config",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "cc"
2021-05-29 15:10:46 +00:00
version = "1.0.68"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787"
2020-05-21 07:21:58 +00:00
[[package]]
name = "cfg-if"
2021-01-22 18:39:14 +00:00
version = "0.1.10"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-22 18:39:14 +00:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2020-05-21 07:21:58 +00:00
2021-02-19 15:31:45 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-05-21 07:21:58 +00:00
[[package]]
name = "chrono"
2021-02-19 15:31:45 +00:00
version = "0.4.19"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"libc",
2020-05-21 07:21:58 +00:00
"num-integer",
2021-02-19 15:44:50 +00:00
"num-traits",
2020-05-21 07:21:58 +00:00
"serde",
2021-02-19 15:44:50 +00:00
"time 0.1.44",
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "cipher"
version = "0.2.5"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"generic-array 0.14.4",
2020-05-21 13:28:07 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
dependencies = [
"bitflags",
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "color_quant"
2021-02-19 15:31:45 +00:00
version = "1.1.0"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2020-06-20 13:22:41 +00:00
2020-05-20 15:46:05 +00:00
[[package]]
name = "comunic_server"
version = "0.1.0"
2020-05-20 17:05:59 +00:00
dependencies = [
2021-02-05 12:21:10 +00:00
"actix",
"actix-files",
2020-06-20 08:31:58 +00:00
"actix-multipart",
2021-02-19 16:08:13 +00:00
"actix-rt",
2020-05-21 13:28:07 +00:00
"actix-web",
2021-02-05 12:21:10 +00:00
"actix-web-actors",
2021-02-13 09:52:04 +00:00
"bcrypt",
2021-02-19 15:44:50 +00:00
"bytes 1.0.1",
2020-06-01 07:38:00 +00:00
"chrono",
2021-01-22 18:39:14 +00:00
"dashmap",
2020-05-23 07:37:21 +00:00
"encoding_rs",
"futures",
"gouth",
2020-06-20 13:22:41 +00:00
"image",
2020-06-22 08:35:39 +00:00
"kamadak-exif",
2020-06-23 16:55:23 +00:00
"lazy_static",
2020-05-23 15:09:28 +00:00
"mailchecker",
2020-07-08 09:03:17 +00:00
"mime_guess",
2021-03-06 08:35:36 +00:00
"mp3-metadata",
"mp4",
2020-05-21 07:21:58 +00:00
"mysql",
2020-07-08 15:14:55 +00:00
"pdf",
2020-05-23 07:37:21 +00:00
"percent-encoding",
2021-02-19 15:44:50 +00:00
"rand 0.8.3",
2021-01-20 17:31:01 +00:00
"regex",
2021-02-05 12:21:10 +00:00
"reqwest",
2020-05-21 13:28:07 +00:00
"serde",
2020-06-18 16:16:46 +00:00
"serde_json",
2020-05-24 12:23:03 +00:00
"sha1",
2021-05-04 17:18:47 +00:00
"tokio 0.2.25",
"webauthn-rs",
2021-04-08 14:45:29 +00:00
"webpage",
2021-02-11 17:29:29 +00:00
"webrtc-sdp",
2020-05-20 17:05:59 +00:00
"yaml-rust",
2021-03-06 08:35:36 +00:00
"zip",
2020-05-20 17:05:59 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "const_fn"
2021-05-29 15:10:46 +00:00
version = "0.4.8"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7"
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "cookie"
2021-05-29 15:10:46 +00:00
version = "0.14.4"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"percent-encoding",
2021-05-29 15:10:46 +00:00
"time 0.2.26",
"version_check 0.9.3",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "copyless"
2021-02-19 15:31:45 +00:00
version = "0.1.5"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "a2df960f5d869b2dd8532793fde43eb5427cceb126c929747a26823ab0eeb536"
2020-05-21 13:28:07 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "core-foundation"
2021-02-19 15:31:45 +00:00
version = "0.9.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
2020-05-21 07:21:58 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2021-02-19 15:31:45 +00:00
version = "0.8.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
2020-05-21 07:21:58 +00:00
2021-02-19 15:44:50 +00:00
[[package]]
2021-05-29 15:10:46 +00:00
name = "cpufeatures"
version = "0.1.4"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "ed00c67cb5d0a7d64a44f6ad2668db7e7530311dd53ea79bcd4fb022c64911c8"
dependencies = [
"libc",
]
2021-02-19 15:44:50 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "crc32fast"
2021-02-19 15:31:45 +00:00
version = "1.2.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2020-05-21 07:21:58 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "crossbeam-channel"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
dependencies = [
2021-02-19 15:31:45 +00:00
"crossbeam-utils 0.7.2",
2021-02-05 12:21:10 +00:00
"maybe-uninit",
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "crossbeam-channel"
2021-05-29 15:10:46 +00:00
version = "0.5.1"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
2021-02-19 15:31:45 +00:00
dependencies = [
"cfg-if 1.0.0",
2021-05-29 15:10:46 +00:00
"crossbeam-utils 0.8.4",
2021-02-19 15:31:45 +00:00
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "crossbeam-deque"
2021-02-19 15:31:45 +00:00
version = "0.8.0"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2020-06-20 13:22:41 +00:00
"crossbeam-epoch",
2021-05-29 15:10:46 +00:00
"crossbeam-utils 0.8.4",
2020-06-20 13:22:41 +00:00
]
[[package]]
name = "crossbeam-epoch"
2021-05-29 15:10:46 +00:00
version = "0.9.4"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "52fb27eab85b17fbb9f6fd667089e07d6a2eb8743d02639ee7f6a7a7729c9c94"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2021-05-29 15:10:46 +00:00
"crossbeam-utils 0.8.4",
2020-06-20 13:22:41 +00:00
"lazy_static",
"memoffset",
"scopeguard",
]
[[package]]
2021-02-19 15:31:45 +00:00
name = "crossbeam-utils"
version = "0.7.2"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2021-02-19 15:31:45 +00:00
"cfg-if 0.1.10",
"lazy_static",
2020-06-20 13:22:41 +00:00
]
[[package]]
name = "crossbeam-utils"
2021-05-29 15:10:46 +00:00
version = "0.8.4"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "4feb231f0d4d6af81aed15928e58ecf5816aa62a2393e2c82f46973e92a9a278"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2020-06-20 13:22:41 +00:00
"lazy_static",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "curl"
2021-05-29 15:10:46 +00:00
version = "0.4.38"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "003cb79c1c6d1c93344c7e1201bb51c2148f24ec2bd9c253709d6b2efb796515"
2021-04-08 14:45:29 +00:00
dependencies = [
"curl-sys",
"libc",
"openssl-probe",
"openssl-sys",
"schannel",
2021-05-29 15:10:46 +00:00
"socket2 0.4.0",
2021-04-08 14:45:29 +00:00
"winapi 0.3.9",
]
[[package]]
name = "curl-sys"
2021-05-29 15:10:46 +00:00
version = "0.4.44+curl-7.77.0"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "4b6d85e9322b193f117c966e79c2d6929ec08c02f339f950044aba12e20bbaf1"
2021-04-08 14:45:29 +00:00
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
"winapi 0.3.9",
]
2021-01-22 18:39:14 +00:00
[[package]]
name = "dashmap"
2021-02-19 15:44:50 +00:00
version = "4.0.2"
2021-01-22 18:39:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c"
2021-01-22 18:39:14 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"cfg-if 1.0.0",
2021-01-22 18:39:14 +00:00
"num_cpus",
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "deflate"
2021-02-19 15:31:45 +00:00
version = "0.8.6"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174"
2020-06-20 13:22:41 +00:00
dependencies = [
"adler32",
"byteorder",
]
2021-05-29 15:10:46 +00:00
[[package]]
name = "deflate"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f95bf05dffba6e6cce8dfbb30def788154949ccd9aed761b472119c21e01c70"
dependencies = [
"adler32",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "derive_more"
2021-05-29 15:10:46 +00:00
version = "0.99.14"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "5cc7b9cef1e351660e5443924e4f43ab25fbbed3e9a5f052df3677deb4d6b320"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"convert_case",
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 13:28:07 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "derive_utils"
2021-02-19 15:31:45 +00:00
version = "0.11.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "532b4c15dccee12c7044f1fcad956e98410860b22231e44a3b827464797ca7bf"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "digest"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
2021-05-29 15:10:46 +00:00
"generic-array 0.12.4",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "digest"
version = "0.9.0"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
2020-07-08 15:14:55 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"generic-array 0.14.4",
2020-07-08 15:14:55 +00:00
]
[[package]]
2021-02-19 15:44:50 +00:00
name = "discard"
version = "1.0.4"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
2020-07-08 15:14:55 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "doc-comment"
version = "0.3.3"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2020-07-08 15:14:55 +00:00
[[package]]
name = "dtoa"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
2020-07-08 15:14:55 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "either"
version = "1.6.1"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2020-07-08 15:14:55 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
name = "encoding_rs"
2021-02-19 15:31:45 +00:00
version = "0.8.28"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "enum-as-inner"
2021-02-19 15:31:45 +00:00
version = "0.3.3"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "7c5f0096a91d210159eceb2ff5e1c4da18388a170e1e3ce948aac9c8fdbbf595"
2020-05-21 13:28:07 +00:00
dependencies = [
"heck",
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-07-08 15:14:55 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
2020-05-23 15:09:28 +00:00
[[package]]
name = "fast_chemail"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4"
dependencies = [
"ascii_utils",
]
2021-05-29 15:10:46 +00:00
[[package]]
name = "fax"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "299eeb2ab30c38ad4a829180b626a6666ebd7f4b8230ee9e1073582d5a2b6375"
dependencies = [
"fax_derive",
]
[[package]]
name = "fax_derive"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c1d7ffc9f2dc8316348c75281a99c8fdc60c1ddf4f82a366d117bf1b74d5a39"
dependencies = [
"proc-macro2 1.0.27",
"quote 1.0.9",
"syn 1.0.72",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "flate2"
2021-05-29 15:10:46 +00:00
version = "1.0.20"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"cfg-if 1.0.0",
2020-05-21 07:21:58 +00:00
"crc32fast",
"libc",
"libz-sys",
2021-05-29 15:10:46 +00:00
"miniz_oxide 0.4.4",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-05-21 07:21:58 +00:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2021-02-19 15:31:45 +00:00
[[package]]
name = "form_urlencoded"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
2020-05-21 13:28:07 +00:00
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
"bitflags",
"fuchsia-zircon-sys",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2021-04-08 14:45:29 +00:00
[[package]]
name = "futf"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c9c1ce3fa9336301af935ab852c437817d14cd33690446569392e65170aac3b"
dependencies = [
"mac",
"new_debug_unreachable",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "futures"
2021-05-29 15:10:46 +00:00
version = "0.3.15"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "0e7e43a803dae2fa37c1f6a8fe121e1f7bf9548b4dfc0522a42f34145dadfc27"
2020-05-21 13:28:07 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2021-05-29 15:10:46 +00:00
version = "0.3.15"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "e682a68b29a882df0545c143dc3646daefe80ba479bcdede94d5a703de2871e2"
2020-05-21 13:28:07 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2021-05-29 15:10:46 +00:00
version = "0.3.15"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "0402f765d8a89a26043b889b26ce3c4679d268fa6bb22cd7c6aad98340e179d1"
2020-05-21 13:28:07 +00:00
[[package]]
name = "futures-executor"
2021-05-29 15:10:46 +00:00
version = "0.3.15"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "badaa6a909fac9e7236d0620a2f57f7664640c56575b71a7552fbd68deafab79"
2020-05-21 13:28:07 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2021-05-29 15:10:46 +00:00
version = "0.3.15"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "acc499defb3b348f8d8f3f66415835a9131856ff7714bf10dadfc4ec4bdb29a1"
2020-05-21 13:28:07 +00:00
[[package]]
name = "futures-macro"
2021-05-29 15:10:46 +00:00
version = "0.3.15"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "a4c40298486cdf52cc00cd6d6987892ba502c7656a16a4192a9992b1ccedd121"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"autocfg 1.0.1",
2020-05-21 13:28:07 +00:00
"proc-macro-hack",
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "futures-sink"
2021-05-29 15:10:46 +00:00
version = "0.3.15"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "a57bead0ceff0d6dde8f465ecd96c9338121bb7717d3e7b108059531870c4282"
2020-05-21 13:28:07 +00:00
[[package]]
name = "futures-task"
2021-05-29 15:10:46 +00:00
version = "0.3.15"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "8a16bef9fc1a4dddb5bee51c989e3fbba26569cbb0e31f5b303c184e3dd33dae"
2020-05-21 13:28:07 +00:00
[[package]]
name = "futures-util"
2021-05-29 15:10:46 +00:00
version = "0.3.15"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "feb5c238d27e2bf94ffdfd27b2c29e3df4a68c4193bb6427384259e2bf191967"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"autocfg 1.0.1",
2020-05-21 13:28:07 +00:00
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-05-29 15:10:46 +00:00
"pin-project-lite 0.2.6",
2020-05-21 13:28:07 +00:00
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
"slab",
]
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
[[package]]
name = "gcemeta"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64b740806c16b381ca8d78cb3869fb47ce5b490db28c5f19bc0336a9b9aaca6e"
dependencies = [
"attohttpc 0.15.0",
"lazy_static",
"serde_json",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "generic-array"
2021-05-29 15:10:46 +00:00
version = "0.12.4"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
2020-05-21 07:21:58 +00:00
dependencies = [
"typenum",
]
2021-02-13 09:52:04 +00:00
[[package]]
name = "generic-array"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
dependencies = [
"typenum",
2021-05-29 15:10:46 +00:00
"version_check 0.9.3",
2021-02-13 09:52:04 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "getrandom"
2021-02-19 15:31:45 +00:00
version = "0.1.16"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2020-05-21 07:21:58 +00:00
"libc",
2021-02-19 15:31:45 +00:00
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
2021-05-29 15:10:46 +00:00
version = "0.2.3"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
2021-02-19 15:31:45 +00:00
dependencies = [
"cfg-if 1.0.0",
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
2020-05-21 07:21:58 +00:00
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "gif"
2021-05-29 15:10:46 +00:00
version = "0.11.2"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "5a668f699973d0f573d15749b7002a9ac9e1f9c6b220e7b165601334c173d8de"
2020-06-20 13:22:41 +00:00
dependencies = [
"color_quant",
2021-02-19 15:31:45 +00:00
"weezl",
2020-06-20 13:22:41 +00:00
]
2020-07-08 15:14:55 +00:00
[[package]]
name = "glob"
2021-02-19 15:44:50 +00:00
version = "0.3.0"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2020-07-08 15:14:55 +00:00
[[package]]
name = "gouth"
2021-05-29 15:10:46 +00:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "c138d157085ba4eb1aaa86e622dc348b956d5ac9d2e446b65941467ebffefdd6"
dependencies = [
2021-05-29 15:10:46 +00:00
"attohttpc 0.17.0",
"gcemeta",
"jsonwebtoken",
"serde",
"serde_json",
"url",
]
2020-05-21 07:21:58 +00:00
[[package]]
2020-05-21 13:28:07 +00:00
name = "h2"
2021-02-19 15:31:45 +00:00
version = "0.2.7"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"bytes 0.5.6",
2020-05-21 13:28:07 +00:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-02-19 15:44:50 +00:00
"tokio 0.2.25",
2020-05-21 13:28:07 +00:00
"tokio-util 0.3.1",
2021-02-19 15:31:45 +00:00
"tracing",
"tracing-futures",
2020-05-21 13:28:07 +00:00
]
[[package]]
2021-02-19 15:44:50 +00:00
name = "h2"
2021-05-29 15:10:46 +00:00
version = "0.3.3"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "825343c4eef0b63f541f8903f395dc5beb362a979b5799a84062527ef1e37726"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"bytes 1.0.1",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-05-29 15:10:46 +00:00
"tokio 1.6.1",
"tokio-util 0.6.7",
2021-02-19 15:44:50 +00:00
"tracing",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "half"
version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62aca2aba2d62b4a7f5b33f3712cb1b0692779a56fb510499d5c0aa594daeaf3"
2021-02-19 15:31:45 +00:00
[[package]]
name = "hashbrown"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
2021-02-19 15:44:50 +00:00
dependencies = [
"ahash",
]
2021-02-19 15:31:45 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
name = "heck"
2021-02-19 15:31:45 +00:00
version = "0.3.2"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac"
2020-05-21 13:28:07 +00:00
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
2021-02-19 15:31:45 +00:00
version = "0.1.18"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
2020-05-21 13:28:07 +00:00
dependencies = [
"libc",
]
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
"libc",
"match_cfg",
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2020-05-21 13:28:07 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "html5ever"
version = "0.22.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c213fa6a618dc1da552f54f85cba74b05d8e883c92ec4e89067736938084c26e"
dependencies = [
"log",
"mac",
"markup5ever",
"proc-macro2 0.4.30",
"quote 0.6.13",
"syn 0.15.44",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "http"
2021-05-29 15:10:46 +00:00
version = "0.2.4"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "527e8c9ac747e28542699a951517aa9a6945af506cd1f2e1b53a576c17b6cc11"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"bytes 1.0.1",
2020-05-21 13:28:07 +00:00
"fnv",
"itoa",
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "http-body"
2021-05-29 15:10:46 +00:00
version = "0.4.2"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"bytes 1.0.1",
2021-02-05 12:21:10 +00:00
"http",
2021-05-29 15:10:46 +00:00
"pin-project-lite 0.2.6",
2021-02-05 12:21:10 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "httparse"
2021-05-29 15:10:46 +00:00
version = "1.4.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "f3a87b616e37e93c22fb19bcd386f02f3af5ea98a25670ad0fce773de23c5e68"
2020-05-21 07:21:58 +00:00
2021-02-05 12:21:10 +00:00
[[package]]
name = "httpdate"
2021-05-29 15:10:46 +00:00
version = "1.0.1"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
2021-02-05 12:21:10 +00:00
[[package]]
name = "hyper"
2021-05-29 15:10:46 +00:00
version = "0.14.8"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "d3f71a7eea53a3f8257a7b4795373ff886397178cd634430ea94e12d7fe4fe34"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"bytes 1.0.1",
2021-02-05 12:21:10 +00:00
"futures-channel",
"futures-core",
"futures-util",
2021-05-29 15:10:46 +00:00
"h2 0.3.3",
2021-02-05 12:21:10 +00:00
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
2021-05-29 15:10:46 +00:00
"pin-project 1.0.7",
"socket2 0.4.0",
"tokio 1.6.1",
2021-02-05 12:21:10 +00:00
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-tls"
2021-02-19 15:44:50 +00:00
version = "0.5.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"bytes 1.0.1",
2021-02-05 12:21:10 +00:00
"hyper",
"native-tls",
2021-05-29 15:10:46 +00:00
"tokio 1.6.1",
2021-02-19 15:44:50 +00:00
"tokio-native-tls",
2021-02-05 12:21:10 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "idna"
2021-05-29 15:10:46 +00:00
version = "0.2.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2020-05-21 07:21:58 +00:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "image"
2021-05-29 15:10:46 +00:00
version = "0.23.14"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1"
2020-06-20 13:22:41 +00:00
dependencies = [
"bytemuck",
"byteorder",
2021-02-19 15:31:45 +00:00
"color_quant",
2020-06-20 13:22:41 +00:00
"gif",
"jpeg-decoder",
"num-iter",
"num-rational",
2021-02-19 15:44:50 +00:00
"num-traits",
2020-06-20 13:22:41 +00:00
"png",
"scoped_threadpool",
"tiff",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "indexmap"
2021-05-29 15:10:46 +00:00
version = "1.6.2"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2021-02-19 15:44:50 +00:00
"hashbrown",
2020-05-21 13:28:07 +00:00
]
2020-07-08 15:14:55 +00:00
[[package]]
name = "inflate"
2021-02-19 15:44:50 +00:00
version = "0.4.5"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff"
dependencies = [
"adler32",
]
2020-07-08 15:14:55 +00:00
2021-02-19 15:31:45 +00:00
[[package]]
name = "instant"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
dependencies = [
"cfg-if 1.0.0",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "io-enum"
2021-02-19 15:31:45 +00:00
version = "0.2.6"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "94534fd32a986dd34d97ddefe5198630d5ed99efd4e9b9b9ed4359e6b23a9cf7"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2020-05-21 07:21:58 +00:00
"derive_utils",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
]
[[package]]
name = "ipconfig"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7"
dependencies = [
2021-05-29 15:10:46 +00:00
"socket2 0.3.19",
2020-05-21 13:28:07 +00:00
"widestring",
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2021-02-05 12:21:10 +00:00
"winreg 0.6.2",
2020-05-21 13:28:07 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "ipnet"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47be2f14c678be2fdcab04ab1171db51b2762ce6f0a8ee87c8dd4a04ed216135"
2020-07-08 15:14:55 +00:00
[[package]]
name = "itertools"
2021-02-19 15:44:50 +00:00
version = "0.10.0"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "37d572918e350e82412fe766d24b15e6682fb2ed2bbe018280caa810397cb319"
2020-07-08 15:14:55 +00:00
dependencies = [
"either",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "itoa"
2021-02-19 15:31:45 +00:00
version = "0.4.7"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
2020-05-21 07:21:58 +00:00
2020-06-20 13:22:41 +00:00
[[package]]
name = "jpeg-decoder"
2021-02-19 15:31:45 +00:00
version = "0.1.22"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2"
2020-06-20 13:22:41 +00:00
dependencies = [
"rayon",
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "js-sys"
2021-05-29 15:10:46 +00:00
version = "0.3.51"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "83bdfbace3a0e81a4253f73b49e960b053e396a11012cbd49b9b74d6a2b67062"
2021-02-05 12:21:10 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "jsonwebtoken"
version = "7.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afabcc15e437a6484fc4f12d0fd63068fe457bf93f1c148d3d9649c60b103f32"
dependencies = [
"base64 0.12.3",
"pem",
"ring",
"serde",
"serde_json",
"simple_asn1",
]
2020-06-22 08:35:39 +00:00
[[package]]
name = "kamadak-exif"
2021-05-29 15:10:46 +00:00
version = "0.5.4"
2020-06-22 08:35:39 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "70494964492bf8e491eb3951c5d70c9627eb7100ede6cc56d748b9a3f302cfb6"
2020-06-22 08:35:39 +00:00
dependencies = [
"mutate_once",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
[[package]]
name = "language-tags"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a"
2020-05-21 07:21:58 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lexical"
2021-05-29 15:10:46 +00:00
version = "5.2.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "f404a90a744e32e8be729034fc33b90cf2a56418fbf594d69aa3c0214ad414e5"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"cfg-if 1.0.0",
2020-05-21 07:21:58 +00:00
"lexical-core",
]
[[package]]
name = "lexical-core"
2021-05-29 15:10:46 +00:00
version = "0.7.6"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"arrayvec",
"bitflags",
"cfg-if 1.0.0",
2020-05-21 07:21:58 +00:00
"ryu",
2021-02-19 15:44:50 +00:00
"static_assertions",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "libc"
2021-05-29 15:10:46 +00:00
version = "0.2.95"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "789da6d93f1b866ffe175afc5322a4d76c038605a1c3319bb57b06967ca98a36"
2020-05-21 07:21:58 +00:00
[[package]]
name = "libz-sys"
2021-05-29 15:10:46 +00:00
version = "1.1.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "de5435b8549c16d423ed0c03dbaafe57cf6c3344744f1242520d59c9d8ecec66"
2020-05-21 07:21:58 +00:00
dependencies = [
"cc",
2021-03-06 08:35:36 +00:00
"libc",
2020-05-21 07:21:58 +00:00
"pkg-config",
"vcpkg",
]
2020-05-20 17:05:59 +00:00
[[package]]
name = "linked-hash-map"
2021-02-19 15:31:45 +00:00
version = "0.5.4"
2020-05-20 17:05:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
2020-05-21 13:28:07 +00:00
2021-02-19 15:31:45 +00:00
[[package]]
name = "lock_api"
2021-05-29 15:10:46 +00:00
version = "0.4.4"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "0382880606dff6d15c9476c416d18690b72742aa7b605bb6dd6ec9030fbf07eb"
2021-02-19 15:31:45 +00:00
dependencies = [
"scopeguard",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "log"
2021-02-19 15:31:45 +00:00
version = "0.4.14"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "lru"
2021-02-19 15:44:50 +00:00
version = "0.6.5"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "1f374d42cdfc1d7dbf3d3dec28afab2eb97ffbf43a3234d795b5986dbf4b90ba"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"hashbrown",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "lru-cache"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
dependencies = [
"linked-hash-map",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
2020-05-23 15:09:28 +00:00
[[package]]
name = "mailchecker"
2021-05-29 15:10:46 +00:00
version = "4.0.7"
2020-05-23 15:09:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "69c344169a75d7b7d55ab2ac34be92c31c4f9b33fabd8f32dedd826c330d211f"
2020-05-23 15:09:28 +00:00
dependencies = [
"fast_chemail",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "markup5ever"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "897636f9850c3eef4905a5540683ed53dc9393860f0846cab2c2ddf9939862ff"
dependencies = [
"phf",
"phf_codegen",
"serde",
"serde_derive",
"serde_json",
"string_cache",
"string_cache_codegen",
"tendril",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
2020-05-21 07:21:58 +00:00
[[package]]
name = "matches"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
2020-06-20 13:22:41 +00:00
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "md5"
version = "0.7.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2020-05-21 07:21:58 +00:00
2020-07-08 15:14:55 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "memchr"
2021-05-29 15:10:46 +00:00
version = "2.4.0"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
2020-07-08 15:14:55 +00:00
2020-06-20 13:22:41 +00:00
[[package]]
name = "memoffset"
2021-05-29 15:10:46 +00:00
version = "0.6.4"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2020-06-20 13:22:41 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2020-07-08 09:03:17 +00:00
[[package]]
name = "mime_guess"
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
dependencies = [
"mime",
"unicase",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "miniz_oxide"
2021-02-19 15:31:45 +00:00
version = "0.3.7"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
2020-05-21 07:21:58 +00:00
dependencies = [
"adler32",
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "miniz_oxide"
2021-05-29 15:10:46 +00:00
version = "0.4.4"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
2021-02-19 15:31:45 +00:00
dependencies = [
"adler",
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2021-02-19 15:31:45 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "mio"
2021-02-19 15:31:45 +00:00
version = "0.6.23"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 0.1.10",
2020-05-21 13:28:07 +00:00
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
2021-02-19 15:44:50 +00:00
"miow 0.2.2",
2020-05-21 13:28:07 +00:00
"net2",
"slab",
"winapi 0.2.8",
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "mio"
2021-05-29 15:10:46 +00:00
version = "0.7.11"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "cf80d3e903b34e0bd7282b218398aec54e082c840d9baf8339e0080a0c542956"
2021-02-19 15:44:50 +00:00
dependencies = [
"libc",
"log",
2021-05-29 15:10:46 +00:00
"miow 0.3.7",
2021-02-19 15:44:50 +00:00
"ntapi",
"winapi 0.3.9",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "mio-uds"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
dependencies = [
"iovec",
"libc",
2021-02-19 15:44:50 +00:00
"mio 0.6.23",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "miow"
2021-02-19 15:31:45 +00:00
version = "0.2.2"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
2020-05-21 13:28:07 +00:00
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "miow"
2021-05-29 15:10:46 +00:00
version = "0.3.7"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2021-02-19 15:44:50 +00:00
dependencies = [
"winapi 0.3.9",
]
2021-03-06 08:35:36 +00:00
[[package]]
name = "mp3-metadata"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb969bc3573726b0bf60238d5d70f1aa6cc0f9e87f8db3e047b8309317319699"
[[package]]
name = "mp4"
2021-05-29 15:10:46 +00:00
version = "0.8.2"
2021-03-06 08:35:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "369762a9ab26451c57e0860102029db0f5c6b142baf6f373e759f311a828b50e"
2021-03-06 08:35:36 +00:00
dependencies = [
"byteorder",
"bytes 0.5.6",
"num-rational",
"serde",
"serde_json",
"thiserror",
]
2020-06-22 08:35:39 +00:00
[[package]]
name = "mutate_once"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b"
2020-05-21 07:21:58 +00:00
[[package]]
name = "mysql"
2021-02-19 15:44:50 +00:00
version = "20.1.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "e5a8660184af84975ac1639aa692a539c37739cec8a22a414de3db9cb573c1aa"
2020-05-21 07:21:58 +00:00
dependencies = [
"bufstream",
"io-enum",
"libc",
"lru",
"mysql_common",
"named_pipe",
"native-tls",
"nix",
2021-02-19 15:44:50 +00:00
"pem",
2020-05-21 07:21:58 +00:00
"percent-encoding",
"serde",
"serde_json",
2021-05-29 15:10:46 +00:00
"socket2 0.3.19",
2020-05-21 07:21:58 +00:00
"twox-hash",
"url",
]
[[package]]
name = "mysql_common"
2021-02-19 15:44:50 +00:00
version = "0.24.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "de63b87a5f24c5db252418a6f04abb2f62823bd838dc9b1d7fdb8ae972ef76cf"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"base64 0.12.3",
2020-05-21 07:21:58 +00:00
"bigdecimal",
"bitflags",
"byteorder",
2021-02-19 15:31:45 +00:00
"bytes 0.5.6",
2020-05-21 07:21:58 +00:00
"chrono",
"flate2",
"lazy_static",
"lexical",
2021-03-06 08:35:36 +00:00
"num-bigint 0.2.6",
2021-02-19 15:44:50 +00:00
"num-traits",
2021-02-19 15:31:45 +00:00
"rand 0.7.3",
2020-05-21 07:21:58 +00:00
"regex",
"rust_decimal",
"serde",
"serde_json",
"sha1",
2021-02-19 15:44:50 +00:00
"sha2 0.8.2",
2021-05-29 15:10:46 +00:00
"time 0.2.26",
2020-05-21 07:21:58 +00:00
"twox-hash",
"uuid",
]
[[package]]
name = "named_pipe"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad9c443cce91fc3e12f017290db75dde490d685cdaaf508d7159d7cf41f0eb2b"
dependencies = [
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "native-tls"
2021-02-19 15:31:45 +00:00
version = "0.2.7"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "b8d96b2e1c8da3957d58100b09f102c6d9cfdfced01b7ec5a8974044bb09dbd4"
2020-05-21 07:21:58 +00:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
[[package]]
name = "net2"
2021-02-19 15:31:45 +00:00
version = "0.2.37"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 0.1.10",
2020-05-21 07:21:58 +00:00
"libc",
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2020-05-21 07:21:58 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
2020-05-21 07:21:58 +00:00
[[package]]
name = "nix"
2021-02-19 15:44:50 +00:00
version = "0.19.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "b2ccba0cfe4fdf15982d1674c69b1fd80bad427d293849982668dfe454bd61f2"
2020-05-21 07:21:58 +00:00
dependencies = [
"bitflags",
"cc",
2021-02-19 15:44:50 +00:00
"cfg-if 1.0.0",
2020-05-21 07:21:58 +00:00
"libc",
]
[[package]]
name = "nom"
version = "4.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
dependencies = [
"memchr",
"version_check 0.1.5",
]
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "ntapi"
version = "0.3.6"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi 0.3.9",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "num-bigint"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2020-05-21 07:21:58 +00:00
"num-integer",
2021-02-19 15:44:50 +00:00
"num-traits",
2020-05-21 07:21:58 +00:00
]
2021-03-06 08:35:36 +00:00
[[package]]
name = "num-bigint"
2021-05-29 15:10:46 +00:00
version = "0.3.2"
2021-03-06 08:35:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "7d0a3d5e207573f948a9e5376662aa743a2ea13f7c50a554d7af443a73fbfeba"
2021-03-06 08:35:36 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2021-03-06 08:35:36 +00:00
"num-integer",
"num-traits",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "num-integer"
2021-02-19 15:31:45 +00:00
version = "0.1.44"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2021-02-19 15:44:50 +00:00
"num-traits",
2020-05-21 07:21:58 +00:00
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "num-iter"
2021-02-19 15:31:45 +00:00
version = "0.1.42"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2020-06-20 13:22:41 +00:00
"num-integer",
2021-02-19 15:44:50 +00:00
"num-traits",
2020-06-20 13:22:41 +00:00
]
[[package]]
name = "num-rational"
2021-02-19 15:31:45 +00:00
version = "0.3.2"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2021-05-29 15:10:46 +00:00
"num-bigint 0.3.2",
2020-06-20 13:22:41 +00:00
"num-integer",
2021-02-19 15:44:50 +00:00
"num-traits",
2021-03-06 08:35:36 +00:00
"serde",
2020-06-20 13:22:41 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "num-traits"
2021-02-19 15:31:45 +00:00
version = "0.2.14"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "num_cpus"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "once_cell"
2021-05-29 15:10:46 +00:00
version = "1.7.2"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
2020-05-21 13:28:07 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
2021-02-13 09:52:04 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2020-05-21 07:21:58 +00:00
[[package]]
name = "openssl"
2021-05-29 15:10:46 +00:00
version = "0.10.34"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "6d7830286ad6a3973c0f1d9b73738f69c76b739301d0229c4b96501695cbe4c8"
2020-05-21 07:21:58 +00:00
dependencies = [
"bitflags",
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2020-05-21 07:21:58 +00:00
"foreign-types",
"libc",
2021-05-29 15:10:46 +00:00
"once_cell",
2020-05-21 07:21:58 +00:00
"openssl-sys",
]
[[package]]
name = "openssl-probe"
2021-05-29 15:10:46 +00:00
version = "0.1.4"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
2020-05-21 07:21:58 +00:00
[[package]]
name = "openssl-sys"
2021-05-29 15:10:46 +00:00
version = "0.9.63"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "b6b0d6fb7d80f877617dfcb014e605e2b5ab2fb0afdf27935219bb6bd984cb98"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2020-05-21 07:21:58 +00:00
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2020-07-08 15:14:55 +00:00
[[package]]
name = "ordermap"
2021-02-19 15:44:50 +00:00
version = "0.4.2"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "91409674c628d07a6b4b79cc877c6b63ba5ccbfbadddd77ca822f55069ed1bd4"
2021-02-19 15:31:45 +00:00
[[package]]
name = "parking_lot"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
dependencies = [
"instant",
2021-02-19 15:44:50 +00:00
"lock_api",
"parking_lot_core",
2021-02-19 15:31:45 +00:00
]
[[package]]
name = "parking_lot_core"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
dependencies = [
"cfg-if 1.0.0",
"instant",
"libc",
2021-02-19 15:44:50 +00:00
"redox_syscall",
2021-02-19 15:31:45 +00:00
"smallvec",
"winapi 0.3.9",
2020-05-21 13:28:07 +00:00
]
2020-07-08 15:14:55 +00:00
[[package]]
name = "pdf"
2021-05-29 15:10:46 +00:00
version = "0.7.2"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "6f48644b2f4e9c3f3468d7c31fa75e9b823dfb167c8581ec15e90a90c34430d9"
2020-07-08 15:14:55 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"aes",
"block-modes",
2020-07-08 15:14:55 +00:00
"byteorder",
"chrono",
2021-05-29 15:10:46 +00:00
"deflate 0.9.1",
"fax",
2020-07-08 15:14:55 +00:00
"glob",
"inflate",
"itertools",
2021-02-19 15:44:50 +00:00
"jpeg-decoder",
"log",
"md5",
"num-traits",
"once_cell",
2020-07-08 15:14:55 +00:00
"ordermap",
"pdf_derive",
2021-05-29 15:10:46 +00:00
"sha2 0.9.5",
2021-02-19 15:44:50 +00:00
"snafu",
"stringprep",
2021-05-29 15:10:46 +00:00
"weezl",
2020-07-08 15:14:55 +00:00
]
[[package]]
name = "pdf_derive"
2021-05-29 15:10:46 +00:00
version = "0.1.22"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "7f4007262775d0798de87b15cbc64cf1aed5f7ee87eec847e297b69d8ed4b4f8"
2020-07-08 15:14:55 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-07-08 15:14:55 +00:00
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "pem"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb"
dependencies = [
"base64 0.13.0",
"once_cell",
"regex",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2021-04-08 14:45:29 +00:00
[[package]]
name = "phf"
version = "0.7.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18"
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_codegen"
version = "0.7.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b03e85129e324ad4166b06b2c7491ae27fe3ec353af72e72cd1654c7225d517e"
dependencies = [
"phf_generator",
"phf_shared",
]
[[package]]
name = "phf_generator"
version = "0.7.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662"
dependencies = [
"phf_shared",
"rand 0.6.5",
]
[[package]]
name = "phf_shared"
version = "0.7.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0"
dependencies = [
"siphasher",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "pin-project"
2021-05-29 15:10:46 +00:00
version = "0.4.28"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "918192b5c59119d51e0cd221f4d49dde9112824ba717369e903c97d076083d0f"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"pin-project-internal 0.4.28",
2021-02-05 12:21:10 +00:00
]
[[package]]
name = "pin-project"
2021-05-29 15:10:46 +00:00
version = "1.0.7"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "c7509cc106041c40a4518d2af7a61530e1eed0e6285296a3d8c5472806ccc4a4"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"pin-project-internal 1.0.7",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "pin-project-internal"
2021-05-29 15:10:46 +00:00
version = "0.4.28"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "3be26700300be6d9d23264c73211d8190e755b6b5ca7a1b28230025511b52a5e"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2021-02-05 12:21:10 +00:00
]
[[package]]
name = "pin-project-internal"
2021-05-29 15:10:46 +00:00
version = "1.0.7"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "48c950132583b500556b1efd71d45b319029f2b71518d979fcc208e16b42426f"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "pin-project-lite"
2021-05-29 15:10:46 +00:00
version = "0.1.12"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
2021-02-19 15:31:45 +00:00
[[package]]
name = "pin-project-lite"
2021-05-29 15:10:46 +00:00
version = "0.2.6"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
2020-05-21 13:28:07 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-05-21 07:21:58 +00:00
[[package]]
name = "pkg-config"
2021-02-19 15:31:45 +00:00
version = "0.3.19"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
2020-05-21 07:21:58 +00:00
2020-06-20 13:22:41 +00:00
[[package]]
name = "png"
2021-02-19 15:31:45 +00:00
version = "0.16.8"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6"
2020-06-20 13:22:41 +00:00
dependencies = [
"bitflags",
"crc32fast",
2021-05-29 15:10:46 +00:00
"deflate 0.8.6",
2021-02-19 15:31:45 +00:00
"miniz_oxide 0.3.7",
2020-06-20 13:22:41 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "ppv-lite86"
2021-02-19 15:31:45 +00:00
version = "0.2.10"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2020-05-21 07:21:58 +00:00
2021-04-08 14:45:29 +00:00
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2020-05-21 07:21:58 +00:00
[[package]]
name = "proc-macro-hack"
2021-02-19 15:31:45 +00:00
version = "0.5.19"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-05-21 07:21:58 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
name = "proc-macro-nested"
2021-02-19 15:31:45 +00:00
version = "0.1.7"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
2020-05-21 13:28:07 +00:00
2021-04-08 14:45:29 +00:00
[[package]]
name = "proc-macro2"
version = "0.4.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
dependencies = [
"unicode-xid 0.1.0",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "proc-macro2"
2021-05-29 15:10:46 +00:00
version = "1.0.27"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"unicode-xid 0.2.2",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2021-04-08 14:45:29 +00:00
[[package]]
name = "quote"
version = "0.6.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
dependencies = [
"proc-macro2 0.4.30",
]
2020-07-08 15:14:55 +00:00
[[package]]
name = "quote"
2021-02-19 15:31:45 +00:00
version = "1.0.9"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
]
[[package]]
name = "rand"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
dependencies = [
"autocfg 0.1.7",
"libc",
"rand_chacha 0.1.1",
"rand_core 0.4.2",
"rand_hc 0.1.0",
"rand_isaac",
"rand_jitter",
"rand_os",
"rand_pcg",
"rand_xorshift",
"winapi 0.3.9",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
2021-02-19 15:31:45 +00:00
"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.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
dependencies = [
2020-05-21 07:21:58 +00:00
"libc",
2021-02-19 15:31:45 +00:00
"rand_chacha 0.3.0",
"rand_core 0.6.2",
"rand_hc 0.3.0",
2020-05-21 07:21:58 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "rand_chacha"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
dependencies = [
"autocfg 0.1.7",
"rand_core 0.3.1",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
2021-02-19 15:31:45 +00:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
dependencies = [
"ppv-lite86",
"rand_core 0.6.2",
2020-05-21 07:21:58 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "rand_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
dependencies = [
"rand_core 0.4.2",
]
[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
2020-05-21 07:21:58 +00:00
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
2021-02-19 15:31:45 +00:00
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
dependencies = [
2021-05-29 15:10:46 +00:00
"getrandom 0.2.3",
2020-05-21 07:21:58 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "rand_hc"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
dependencies = [
"rand_core 0.3.1",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
2021-02-19 15:31:45 +00:00
"rand_core 0.5.1",
]
[[package]]
name = "rand_hc"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
dependencies = [
"rand_core 0.6.2",
2020-05-21 07:21:58 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "rand_isaac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
dependencies = [
"rand_core 0.3.1",
]
[[package]]
name = "rand_jitter"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
dependencies = [
"libc",
"rand_core 0.4.2",
"winapi 0.3.9",
]
[[package]]
name = "rand_os"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
dependencies = [
"cloudabi",
"fuchsia-cprng",
"libc",
"rand_core 0.4.2",
"rdrand",
"winapi 0.3.9",
]
[[package]]
name = "rand_pcg"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
dependencies = [
"autocfg 0.1.7",
"rand_core 0.4.2",
]
[[package]]
name = "rand_xorshift"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
dependencies = [
"rand_core 0.3.1",
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "rayon"
2021-05-29 15:10:46 +00:00
version = "1.5.1"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2020-06-20 13:22:41 +00:00
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2021-05-29 15:10:46 +00:00
version = "1.9.1"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"crossbeam-channel 0.5.1",
2020-06-20 13:22:41 +00:00
"crossbeam-deque",
2021-05-29 15:10:46 +00:00
"crossbeam-utils 0.8.4",
2020-06-20 13:22:41 +00:00
"lazy_static",
"num_cpus",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
dependencies = [
"rand_core 0.3.1",
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "redox_syscall"
2021-05-29 15:10:46 +00:00
version = "0.2.8"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "742739e41cd49414de871ea5e549afb7e2a3ac77b589bcbebe8c82fab37147fc"
2021-02-19 15:31:45 +00:00
dependencies = [
"bitflags",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "regex"
2021-05-29 15:10:46 +00:00
version = "1.5.4"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2020-05-21 07:21:58 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2021-05-29 15:10:46 +00:00
version = "0.6.25"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2020-05-21 07:21:58 +00:00
[[package]]
name = "remove_dir_all"
2021-02-19 15:31:45 +00:00
version = "0.5.3"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2020-05-21 13:28:07 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "reqwest"
2021-05-29 15:10:46 +00:00
version = "0.11.3"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "2296f2fac53979e8ccbc4a1136b25dcefd37be9ed7e4a1f6b05a6029c84ff124"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"base64 0.13.0",
2021-02-19 15:44:50 +00:00
"bytes 1.0.1",
2021-02-05 12:21:10 +00:00
"encoding_rs",
"futures-core",
"futures-util",
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"native-tls",
"percent-encoding",
2021-05-29 15:10:46 +00:00
"pin-project-lite 0.2.6",
2021-02-05 12:21:10 +00:00
"serde",
"serde_json",
"serde_urlencoded 0.7.0",
2021-05-29 15:10:46 +00:00
"tokio 1.6.1",
2021-02-19 15:44:50 +00:00
"tokio-native-tls",
2021-02-05 12:21:10 +00:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg 0.7.0",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "resolv-conf"
2021-02-19 15:44:50 +00:00
version = "0.7.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
2020-05-21 13:28:07 +00:00
dependencies = [
"hostname",
"quick-error",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi 0.3.9",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "rust_decimal"
2021-05-29 15:10:46 +00:00
version = "1.14.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "d52f6513cf330c84095570b1f3ac073d718a50541c8392a98eaac9c6333324bf"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"arrayvec",
"num-traits",
2020-05-21 07:21:58 +00:00
"serde",
]
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
"semver",
]
[[package]]
name = "rustls"
version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d1126dcf58e93cee7d098dbda643b5f92ed724f1f6a63007c1116eed6700c81"
dependencies = [
"base64 0.12.3",
"log",
"ring",
"sct",
"webpki",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "ryu"
2021-02-19 15:31:45 +00:00
version = "1.0.5"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2020-05-21 07:21:58 +00:00
[[package]]
name = "schannel"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
dependencies = [
"lazy_static",
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2020-05-21 07:21:58 +00:00
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
2020-05-21 13:28:07 +00:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "sct"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce"
dependencies = [
"ring",
"untrusted",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "security-framework"
2021-05-29 15:10:46 +00:00
version = "2.2.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "3670b1d2fdf6084d192bc71ead7aabe6c06aa2ea3fbd9cc3ac111fa5c2b1bd84"
2020-05-21 07:21:58 +00:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2021-05-29 15:10:46 +00:00
version = "2.2.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "3676258fd3cfe2c9a0ec99ce3038798d847ce3e4bb17746373eb9f0f1ac16339"
2020-05-21 07:21:58 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[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"
2021-05-29 15:10:46 +00:00
version = "1.0.126"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03"
2020-05-21 13:28:07 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_bytes"
version = "0.11.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16ae07dd2f88a366f15bd0632ba725227018c69a1c8550a927324f8eb8368bb9"
dependencies = [
"serde",
]
[[package]]
name = "serde_cbor"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e18acfa2f90e8b735b2836ab8d538de304cbb6729a7360729ea5a895d15a622"
dependencies = [
"half",
"serde",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "serde_derive"
2021-05-29 15:10:46 +00:00
version = "1.0.126"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 13:28:07 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "serde_json"
2021-05-29 15:10:46 +00:00
version = "1.0.64"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
2020-05-21 07:21:58 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
dependencies = [
"dtoa",
"itoa",
"serde",
"url",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "serde_urlencoded"
2021-02-19 15:44:50 +00:00
version = "0.7.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"form_urlencoded",
2020-05-21 13:28:07 +00:00
"itoa",
2021-02-19 15:44:50 +00:00
"ryu",
2020-05-21 13:28:07 +00:00
"serde",
]
2021-02-19 15:31:45 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "sha-1"
2021-05-29 15:10:46 +00:00
version = "0.9.6"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "8c4cfa741c5832d0ef7fab46cabed29c2aae926db0b11bb2069edd8db5e64e16"
2021-02-19 15:31:45 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"block-buffer 0.9.0",
"cfg-if 1.0.0",
2021-05-29 15:10:46 +00:00
"cpufeatures",
2021-02-19 15:44:50 +00:00
"digest 0.9.0",
"opaque-debug 0.3.0",
2021-02-19 15:31:45 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "sha1"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
[[package]]
name = "sha2"
2021-02-19 15:31:45 +00:00
version = "0.8.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"block-buffer 0.7.3",
"digest 0.8.1",
2020-05-21 07:21:58 +00:00
"fake-simd",
2021-02-13 09:52:04 +00:00
"opaque-debug 0.2.3",
2020-05-21 07:21:58 +00:00
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "sha2"
2021-05-29 15:10:46 +00:00
version = "0.9.5"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "b362ae5752fd2137731f9fa25fd4d9058af34666ca1966fb969119cc35719f12"
2021-02-19 15:44:50 +00:00
dependencies = [
"block-buffer 0.9.0",
"cfg-if 1.0.0",
2021-05-29 15:10:46 +00:00
"cpufeatures",
2021-02-19 15:44:50 +00:00
"digest 0.9.0",
"opaque-debug 0.3.0",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "signal-hook-registry"
2021-02-19 15:31:45 +00:00
version = "1.3.0"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6"
2020-05-21 13:28:07 +00:00
dependencies = [
"libc",
]
[[package]]
name = "simple_asn1"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "692ca13de57ce0613a363c8c2f1de925adebc81b04c923ac60c5488bb44abe4b"
dependencies = [
"chrono",
"num-bigint 0.2.6",
"num-traits",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "siphasher"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac"
2020-05-21 13:28:07 +00:00
[[package]]
name = "slab"
2021-05-29 15:10:46 +00:00
version = "0.4.3"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "f173ac3d1a7e3b28003f40de0b5ce7fe2710f9b9dc3fc38664cebee46b3b6527"
2020-05-21 13:28:07 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "smallvec"
2021-02-19 15:31:45 +00:00
version = "1.6.1"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
2020-05-21 07:21:58 +00:00
2021-02-19 15:44:50 +00:00
[[package]]
name = "snafu"
version = "0.6.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eab12d3c261b2308b0d80c26fffb58d17eba81a4be97890101f416b478c79ca7"
dependencies = [
"doc-comment",
"snafu-derive",
]
[[package]]
name = "snafu-derive"
version = "0.6.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1508efa03c362e23817f96cde18abed596a25219a8b2c66e8db33c03543d315b"
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2021-02-19 15:44:50 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "socket2"
2021-02-19 15:31:45 +00:00
version = "0.3.19"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2020-05-21 13:28:07 +00:00
"libc",
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2020-05-21 13:28:07 +00:00
]
2021-05-29 15:10:46 +00:00
[[package]]
name = "socket2"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e3dfc207c526015c632472a77be09cf1b6e46866581aecae5cc38fb4235dea2"
dependencies = [
"libc",
"winapi 0.3.9",
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "standback"
2021-05-29 15:10:46 +00:00
version = "0.2.17"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2021-02-19 15:44:50 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"version_check 0.9.3",
2021-02-19 15:44:50 +00:00
]
2020-05-21 07:21:58 +00:00
2020-07-08 15:14:55 +00:00
[[package]]
2021-02-19 15:31:45 +00:00
name = "static_assertions"
version = "1.1.0"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2020-07-08 15:14:55 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "stdweb"
version = "0.4.20"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
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"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-02-19 15:44:50 +00:00
"serde",
"serde_derive",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 07:21:58 +00:00
]
[[package]]
2021-02-19 15:44:50 +00:00
name = "stdweb-internal-macros"
version = "0.2.9"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"base-x",
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-02-19 15:44:50 +00:00
"serde",
"serde_derive",
"serde_json",
"sha1",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2021-02-19 15:44:50 +00:00
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
2021-04-08 14:45:29 +00:00
[[package]]
name = "string_cache"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89c058a82f9fd69b1becf8c274f412281038877c553182f1d02eb027045a2d67"
dependencies = [
"lazy_static",
"new_debug_unreachable",
"phf_shared",
"precomputed-hash",
"serde",
"string_cache_codegen",
"string_cache_shared",
]
[[package]]
name = "string_cache_codegen"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0f45ed1b65bf9a4bf2f7b7dc59212d1926e9eaf00fa998988e420fd124467c6"
dependencies = [
"phf_generator",
"phf_shared",
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
"string_cache_shared",
]
[[package]]
name = "string_cache_shared"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc"
2021-02-19 15:44:50 +00:00
[[package]]
name = "stringprep"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "syn"
version = "0.15.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
dependencies = [
"proc-macro2 0.4.30",
"quote 0.6.13",
"unicode-xid 0.1.0",
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "syn"
2021-05-29 15:10:46 +00:00
version = "1.0.72"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82"
2021-02-19 15:44:50 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"unicode-xid 0.2.2",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "tempfile"
2021-02-19 15:31:45 +00:00
version = "3.2.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2020-05-21 07:21:58 +00:00
"libc",
2021-02-19 15:31:45 +00:00
"rand 0.8.3",
2021-02-19 15:44:50 +00:00
"redox_syscall",
2020-05-21 07:21:58 +00:00
"remove_dir_all",
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2020-05-21 07:21:58 +00:00
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "tendril"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9ef557cb397a4f0a5a3a628f06515f78563f2209e64d47055d9dc6052bf5e33"
dependencies = [
"futf",
"mac",
"utf-8",
]
2021-02-19 15:44:50 +00:00
[[package]]
name = "thiserror"
2021-05-29 15:10:46 +00:00
version = "1.0.25"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "fa6f76457f59514c7eeb4e59d891395fab0b2fd1d40723ae737d64153392e9c6"
2021-02-19 15:44:50 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-05-29 15:10:46 +00:00
version = "1.0.25"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "8a36768c0fbf1bb15eca10defa29526bda730a2376c2ab4393ccfa16fb1a318d"
2021-02-19 15:44:50 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "threadpool"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
dependencies = [
"num_cpus",
]
2020-06-20 13:22:41 +00:00
[[package]]
name = "tiff"
2021-02-19 15:31:45 +00:00
version = "0.6.1"
2020-06-20 13:22:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "9a53f4706d65497df0c4349241deddf35f84cee19c87ed86ea8ca590f4464437"
2020-06-20 13:22:41 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"jpeg-decoder",
2021-05-29 15:10:46 +00:00
"miniz_oxide 0.4.4",
2021-02-19 15:31:45 +00:00
"weezl",
2020-06-20 13:22:41 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "time"
2021-02-19 15:31:45 +00:00
version = "0.1.44"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2020-05-21 07:21:58 +00:00
dependencies = [
"libc",
2021-02-19 15:31:45 +00:00
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi 0.3.9",
2020-05-21 13:28:07 +00:00
]
2021-02-19 15:31:45 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "time"
2021-05-29 15:10:46 +00:00
version = "0.2.26"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "08a8cbfbf47955132d0202d1662f49b2423ae35862aee471f3ba4b133358f372"
2021-02-19 15:44:50 +00:00
dependencies = [
"const_fn",
"libc",
"standback",
"stdweb",
"time-macros",
2021-05-29 15:10:46 +00:00
"version_check 0.9.3",
2021-02-19 15:44:50 +00:00
"winapi 0.3.9",
]
[[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.1"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "e5c3be1edfad6027c69f5491cf4cb310d1a71ecd6af742788c6ff8bced86b8fa"
2021-02-19 15:31:45 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"proc-macro-hack",
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-02-19 15:44:50 +00:00
"standback",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2021-02-19 15:31:45 +00:00
]
[[package]]
name = "tinyvec"
2021-05-29 15:10:46 +00:00
version = "1.2.0"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "5b5220f05bb7de7f3f53c7c065e1199b3172696fe2db9f9c4d8ad9b4ee74c342"
2021-02-19 15:31:45 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-05-21 13:28:07 +00:00
[[package]]
name = "tokio"
2021-02-19 15:31:45 +00:00
version = "0.2.25"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"bytes 0.5.6",
2021-02-05 12:21:10 +00:00
"fnv",
2020-05-21 13:28:07 +00:00
"futures-core",
"iovec",
"lazy_static",
"libc",
"memchr",
2021-02-19 15:44:50 +00:00
"mio 0.6.23",
2020-05-21 13:28:07 +00:00
"mio-uds",
2021-05-29 15:10:46 +00:00
"pin-project-lite 0.1.12",
2020-05-21 13:28:07 +00:00
"signal-hook-registry",
"slab",
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2020-05-21 13:28:07 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
2021-02-19 15:44:50 +00:00
name = "tokio"
2021-05-29 15:10:46 +00:00
version = "1.6.1"
2021-02-19 15:44:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "0a38d31d7831c6ed7aad00aa4c12d9375fd225a6dd77da1d25b707346319a975"
2021-02-19 15:44:50 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"autocfg 1.0.1",
2021-02-19 15:44:50 +00:00
"bytes 1.0.1",
"libc",
"memchr",
2021-05-29 15:10:46 +00:00
"mio 0.7.11",
2021-02-19 15:44:50 +00:00
"num_cpus",
2021-05-29 15:10:46 +00:00
"pin-project-lite 0.2.6",
2021-02-19 15:44:50 +00:00
]
[[package]]
name = "tokio-native-tls"
version = "0.3.0"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
2021-02-05 12:21:10 +00:00
dependencies = [
"native-tls",
2021-05-29 15:10:46 +00:00
"tokio 1.6.1",
2021-02-05 12:21:10 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "tokio-util"
2021-02-19 15:44:50 +00:00
version = "0.3.1"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:44:50 +00:00
checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"bytes 0.5.6",
2020-05-21 13:28:07 +00:00
"futures-core",
2021-02-19 15:44:50 +00:00
"futures-io",
2020-05-21 13:28:07 +00:00
"futures-sink",
"log",
2021-05-29 15:10:46 +00:00
"pin-project-lite 0.1.12",
2021-02-19 15:44:50 +00:00
"tokio 0.2.25",
2020-05-21 13:28:07 +00:00
]
[[package]]
name = "tokio-util"
2021-05-29 15:10:46 +00:00
version = "0.6.7"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "1caa0b0c8d94a049db56b5acf8cba99dc0623aab1b26d5b5f5e2d945846b3592"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:44:50 +00:00
"bytes 1.0.1",
2020-05-21 13:28:07 +00:00
"futures-core",
"futures-sink",
"log",
2021-05-29 15:10:46 +00:00
"pin-project-lite 0.2.6",
"tokio 1.6.1",
2020-05-21 13:28:07 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "tower-service"
2021-02-19 15:31:45 +00:00
version = "0.3.1"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2021-02-05 12:21:10 +00:00
[[package]]
name = "tracing"
2021-05-29 15:10:46 +00:00
version = "0.1.26"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "09adeb8c97449311ccd28a427f96fb563e7fd31aabf994189879d9da2394b89d"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2021-02-05 12:21:10 +00:00
"log",
2021-05-29 15:10:46 +00:00
"pin-project-lite 0.2.6",
2021-02-05 12:21:10 +00:00
"tracing-core",
]
[[package]]
name = "tracing-core"
2021-05-29 15:10:46 +00:00
version = "0.1.18"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "a9ff14f98b1a4b289c6248a023c1c2fa1491062964e9fed67ab29c4e4da4a052"
2021-02-05 12:21:10 +00:00
dependencies = [
"lazy_static",
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
2021-05-29 15:10:46 +00:00
"pin-project 1.0.7",
2021-02-19 15:31:45 +00:00
"tracing",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "trust-dns-proto"
2021-05-29 15:10:46 +00:00
version = "0.19.7"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "1cad71a0c0d68ab9941d2fb6e82f8fb2e86d9945b94e1661dd0aaea2b88215a9"
2020-05-21 13:28:07 +00:00
dependencies = [
"async-trait",
2021-05-29 15:10:46 +00:00
"cfg-if 1.0.0",
2020-05-21 13:28:07 +00:00
"enum-as-inner",
"futures",
"idna",
"lazy_static",
"log",
2021-02-19 15:31:45 +00:00
"rand 0.7.3",
2020-05-21 13:28:07 +00:00
"smallvec",
2021-02-19 15:44:50 +00:00
"thiserror",
"tokio 0.2.25",
2020-05-21 13:28:07 +00:00
"url",
]
[[package]]
name = "trust-dns-resolver"
2021-05-29 15:10:46 +00:00
version = "0.19.7"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "710f593b371175db53a26d0b38ed2978fafb9e9e8d3868b1acd753ea18df0ceb"
2020-05-21 13:28:07 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 0.1.10",
2020-05-21 13:28:07 +00:00
"futures",
"ipconfig",
"lazy_static",
"log",
"lru-cache",
"resolv-conf",
"smallvec",
2021-02-19 15:44:50 +00:00
"thiserror",
"tokio 0.2.25",
2020-05-21 13:28:07 +00:00
"trust-dns-proto",
2020-05-21 07:21:58 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2020-06-20 08:31:58 +00:00
[[package]]
name = "twoway"
2021-05-29 15:10:46 +00:00
version = "0.2.2"
2020-06-20 08:31:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47"
2020-06-20 08:31:58 +00:00
dependencies = [
"memchr",
"unchecked-index",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "twox-hash"
2021-02-19 15:31:45 +00:00
version = "1.6.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "04f8ab788026715fa63b31960869617cba39117e520eb415b0139543e325ab59"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 0.1.10",
"rand 0.7.3",
2021-02-19 15:44:50 +00:00
"static_assertions",
2020-05-21 07:21:58 +00:00
]
[[package]]
name = "typenum"
2021-05-29 15:10:46 +00:00
version = "1.13.0"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06"
2020-05-21 07:21:58 +00:00
2020-06-20 08:31:58 +00:00
[[package]]
name = "unchecked-index"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c"
2020-07-08 09:03:17 +00:00
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
2021-05-29 15:10:46 +00:00
"version_check 0.9.3",
2020-07-08 09:03:17 +00:00
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "unicode-bidi"
2021-05-29 15:10:46 +00:00
version = "0.3.5"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "eeb8be209bb1c96b7c177c7420d26e04eccacb0eeae6b980e35fcb74678107e0"
2020-05-21 07:21:58 +00:00
dependencies = [
"matches",
]
[[package]]
name = "unicode-normalization"
2021-05-29 15:10:46 +00:00
version = "0.1.18"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "33717dca7ac877f497014e10d73f3acf948c342bee31b5ca7892faf94ccc6b49"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"tinyvec",
2020-05-21 07:21:58 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "unicode-segmentation"
2021-02-19 15:31:45 +00:00
version = "1.7.1"
2020-07-08 15:14:55 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
2020-07-08 15:14:55 +00:00
2021-04-08 14:45:29 +00:00
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
2020-05-21 07:21:58 +00:00
[[package]]
name = "unicode-xid"
2021-05-29 15:10:46 +00:00
version = "0.2.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2020-05-21 07:21:58 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2020-05-21 07:21:58 +00:00
[[package]]
name = "url"
2021-05-29 15:10:46 +00:00
version = "2.2.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2020-05-21 07:21:58 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"form_urlencoded",
2020-05-21 07:21:58 +00:00
"idna",
"matches",
"percent-encoding",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "utf-8"
2021-05-29 15:10:46 +00:00
version = "0.7.6"
2021-04-08 14:45:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2021-04-08 14:45:29 +00:00
2020-05-21 07:21:58 +00:00
[[package]]
name = "uuid"
2021-02-19 15:31:45 +00:00
version = "0.8.2"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
2020-05-21 07:21:58 +00:00
[[package]]
name = "v_escape"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3e0ab5fab1db278a9413d2ea794cb66f471f898c5b020c3c394f6447625d9d4"
dependencies = [
"buf-min",
"v_escape_derive",
]
[[package]]
name = "v_escape_derive"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c860ad1273f4eee7006cee05db20c9e60e5d24cba024a32e1094aa8e574f3668"
dependencies = [
"nom",
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
]
[[package]]
name = "v_htmlescape"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f9a8af610ad6f7fc9989c9d2590d9764bc61f294884e9ee93baa58795174572"
dependencies = [
"cfg-if 1.0.0",
"v_escape",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "vcpkg"
2021-05-29 15:10:46 +00:00
version = "0.2.13"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "025ce40a007e1907e58d5bc1a594def78e5573bb0b1160bc389634e8f12e4faa"
2020-05-21 07:21:58 +00:00
[[package]]
name = "version_check"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
2020-07-08 09:03:17 +00:00
[[package]]
name = "version_check"
2021-05-29 15:10:46 +00:00
version = "0.9.3"
2020-07-08 09:03:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2020-07-08 09:03:17 +00:00
2021-02-05 12:21:10 +00:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2020-05-21 07:21:58 +00:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2021-02-19 15:31:45 +00:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2021-02-05 12:21:10 +00:00
[[package]]
name = "wasm-bindgen"
2021-05-29 15:10:46 +00:00
version = "0.2.74"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "d54ee1d4ed486f78874278e63e4069fc1ab9f6a18ca492076ffb90c5eb2997fd"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2021-02-05 12:21:10 +00:00
"serde",
"serde_json",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2021-05-29 15:10:46 +00:00
version = "0.2.74"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "3b33f6a0694ccfea53d94db8b2ed1c3a8a4c86dd936b13b9f0a15ec4a451b900"
2021-02-05 12:21:10 +00:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2021-02-05 12:21:10 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2021-05-29 15:10:46 +00:00
version = "0.4.24"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "5fba7978c679d53ce2d0ac80c8c175840feb849a161664365d1287b41f2e67f1"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-02-19 15:31:45 +00:00
"cfg-if 1.0.0",
2021-02-05 12:21:10 +00:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2021-05-29 15:10:46 +00:00
version = "0.2.74"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "088169ca61430fe1e58b8096c24975251700e7b1f6fd91cc9d59b04fb9b18bd4"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-02-05 12:21:10 +00:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-05-29 15:10:46 +00:00
version = "0.2.74"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "be2241542ff3d9f241f5e2cb6dd09b37efe786df8851c54957683a49f0987a97"
2021-02-05 12:21:10 +00:00
dependencies = [
2021-05-29 15:10:46 +00:00
"proc-macro2 1.0.27",
2021-04-08 14:45:29 +00:00
"quote 1.0.9",
2021-05-29 15:10:46 +00:00
"syn 1.0.72",
2021-02-05 12:21:10 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2021-05-29 15:10:46 +00:00
version = "0.2.74"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "d7cff876b8f18eed75a66cf49b65e7f967cb354a7aa16003fb55dbfd25b44b4f"
2021-02-05 12:21:10 +00:00
[[package]]
name = "web-sys"
2021-05-29 15:10:46 +00:00
version = "0.3.51"
2021-02-05 12:21:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "e828417b379f3df7111d3a2a9e5753706cae29c41f7c4029ee9fd77f3e09e582"
2021-02-05 12:21:10 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webauthn-rs"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dca232368e409a186d2cc0a83380398429a5b6c39608143c2a9bcc16e96b08d0"
dependencies = [
"base64 0.12.3",
"log",
"nom",
"openssl",
"rand 0.7.3",
"serde",
"serde_bytes",
"serde_cbor",
"serde_derive",
"serde_json",
"thiserror",
]
2021-04-08 14:45:29 +00:00
[[package]]
name = "webpage"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c43e3b084108bb83f9db80ca0e2f7485b508f01b2103c106450ee5b1d259bae1"
dependencies = [
"curl",
"html5ever",
"serde_json",
]
[[package]]
name = "webpki"
version = "0.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8eff4b7516a57307f9349c64bf34caa34b940b66fed4b2fb3136cb7386e5739"
dependencies = [
"webpki",
]
2021-02-11 17:29:29 +00:00
[[package]]
name = "webrtc-sdp"
2021-02-19 15:31:45 +00:00
version = "0.3.8"
2021-02-11 17:29:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "98db6ff463a94d727ee7c1188bab33146468add6dfb94df30a1f4a3495a700d9"
2021-02-11 17:29:29 +00:00
dependencies = [
"log",
"url",
]
2021-02-19 15:31:45 +00:00
[[package]]
name = "weezl"
2021-05-29 15:10:46 +00:00
version = "0.1.5"
2021-02-19 15:31:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "d8b77fdfd5a253be4ab714e4ffa3c49caf146b4de743e97510c0656cf90f1e8e"
2021-02-19 15:31:45 +00:00
2020-05-21 13:28:07 +00:00
[[package]]
name = "widestring"
2021-02-19 15:31:45 +00:00
version = "0.4.3"
2020-05-21 13:28:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
2020-05-21 13:28:07 +00:00
[[package]]
name = "wildmatch"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f44b95f62d34113cf558c93511ac93027e03e9c29a60dd0fd70e6e025c7270a"
2020-05-21 13:28:07 +00:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2020-05-21 07:21:58 +00:00
[[package]]
name = "winapi"
2021-02-19 15:31:45 +00:00
version = "0.3.9"
2020-05-21 07:21:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2020-05-21 07:21:58 +00:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2020-05-21 07:21:58 +00:00
[[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"
2020-05-21 13:28:07 +00:00
[[package]]
name = "winreg"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
dependencies = [
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2020-05-21 13:28:07 +00:00
]
2021-02-05 12:21:10 +00:00
[[package]]
name = "winreg"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69"
dependencies = [
2021-02-19 15:31:45 +00:00
"winapi 0.3.9",
2021-02-05 12:21:10 +00:00
]
2020-05-21 13:28:07 +00:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
2020-05-20 17:05:59 +00:00
[[package]]
name = "yaml-rust"
2021-02-19 15:31:45 +00:00
version = "0.4.5"
2020-05-20 17:05:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-19 15:31:45 +00:00
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
2020-05-20 17:05:59 +00:00
dependencies = [
"linked-hash-map",
]
2021-03-06 08:35:36 +00:00
[[package]]
name = "zip"
2021-05-29 15:10:46 +00:00
version = "0.5.12"
2021-03-06 08:35:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:10:46 +00:00
checksum = "9c83dc9b784d252127720168abd71ea82bf8c3d96b17dc565b5e2a02854f2b27"
2021-03-06 08:35:36 +00:00
dependencies = [
"byteorder",
"bzip2",
"crc32fast",
"flate2",
"thiserror",
"time 0.1.44",
]