bitque/Cargo.lock

4106 lines
96 KiB
Plaintext
Raw Normal View History

2020-03-27 12:17:27 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-04-11 22:09:42 +02:00
version = 3
2020-10-18 10:35:41 +02:00
[[package]]
name = "actix"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1be241f88f3b1e7e9a3fbe3b5a8a0f6915b5a1d7ee0d9a248d3376d01068cc60"
dependencies = [
"actix-rt",
2021-08-13 13:11:51 +02:00
"actix_derive",
2020-10-18 10:35:41 +02:00
"bitflags",
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-10-18 10:35:41 +02:00
"crossbeam-channel",
"derive_more",
"futures-channel",
"futures-util",
"log",
"once_cell",
2021-08-13 13:11:51 +02:00
"parking_lot",
2021-04-11 22:09:42 +02:00
"pin-project 0.4.28",
2020-10-18 10:35:41 +02:00
"smallvec",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
"tokio-util 0.3.1",
2021-08-13 13:11:51 +02:00
"trust-dns-proto",
"trust-dns-resolver",
2020-03-27 12:17:27 +01:00
]
2020-10-18 10:35:41 +02:00
[[package]]
name = "actix-codec"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78d1833b3838dbe990df0f1f87baf640cf6146e898166afe401839d1b001e570"
dependencies = [
"bitflags",
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-10-18 10:35:41 +02:00
"futures-core",
"futures-sink",
"log",
2021-04-11 22:09:42 +02:00
"pin-project 0.4.28",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
"tokio-util 0.3.1",
2020-10-18 10:35:41 +02:00
]
[[package]]
name = "actix-connect"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "177837a10863f15ba8d3ae3ec12fac1099099529ed20083a27fdfe247381d0dc"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix-codec",
2020-03-27 12:17:27 +01:00
"actix-rt",
2021-08-13 13:11:51 +02:00
"actix-service",
"actix-utils",
2020-03-27 12:17:27 +01:00
"derive_more",
"either",
2020-10-18 10:35:41 +02:00
"futures-util",
2020-03-27 12:17:27 +01:00
"http",
"log",
2021-08-13 13:11:51 +02:00
"trust-dns-proto",
"trust-dns-resolver",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "actix-cors"
2021-04-11 22:09:42 +02:00
version = "0.5.4"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "36b133d8026a9f209a9aeeeacd028e7451bcca975f592881b305d37983f303d7"
2020-03-27 12:17:27 +01:00
dependencies = [
"actix-web",
"derive_more",
2020-10-18 10:35:41 +02:00
"futures-util",
2020-10-23 11:36:34 +02:00
"log",
"once_cell",
2020-11-25 20:14:52 +01:00
"tinyvec",
2020-03-27 12:17:27 +01:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "actix-files"
version = "0.5.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c51e8a9146c12fce92a6e4c24b8c4d9b05268130bfd8d61bc587e822c32ce689"
2020-05-05 08:33:40 +02:00
dependencies = [
2021-08-13 13:11:51 +02:00
"actix-service",
2020-05-05 08:33:40 +02:00
"actix-web",
"bitflags",
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-05-05 08:33:40 +02:00
"derive_more",
2020-06-10 22:03:00 +02:00
"futures-core",
"futures-util",
"log",
2020-05-05 08:33:40 +02:00
"mime",
"mime_guess",
"percent-encoding",
2020-05-05 08:33:40 +02:00
"v_htmlescape",
]
2020-10-18 10:35:41 +02:00
[[package]]
name = "actix-http"
2021-08-13 12:42:29 +02:00
version = "2.2.1"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "5cb8958da437716f3f31b0e76f8daf36554128517d7df37ceba7df00f09622ee"
2020-10-18 10:35:41 +02:00
dependencies = [
2021-08-13 13:11:51 +02:00
"actix-codec",
"actix-connect",
2020-10-18 10:35:41 +02:00
"actix-rt",
2021-08-13 13:11:51 +02:00
"actix-service",
2020-10-18 10:35:41 +02:00
"actix-threadpool",
2021-08-13 13:11:51 +02:00
"actix-utils",
2020-11-25 20:14:52 +01:00
"base64 0.13.0",
2020-10-18 10:35:41 +02:00
"bitflags",
"brotli2",
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
"cookie",
2020-10-18 10:35:41 +02:00
"copyless",
"derive_more",
"either",
"encoding_rs",
"flate2",
"futures-channel",
"futures-core",
"futures-util",
"fxhash",
2021-08-13 14:01:00 +02:00
"h2 0.2.7",
2020-10-18 10:35:41 +02:00
"http",
"httparse",
"indexmap",
"itoa",
"language-tags",
"lazy_static",
"log",
"mime",
"percent-encoding",
2021-08-13 12:42:29 +02:00
"pin-project 1.0.8",
2020-10-18 10:35:41 +02:00
"rand 0.7.3",
"regex",
"serde",
"serde_json",
2021-08-13 13:11:51 +02:00
"serde_urlencoded",
2021-10-08 15:20:49 +02:00
"sha-1 0.9.8",
2020-10-18 10:35:41 +02:00
"slab",
2021-08-13 12:42:29 +02:00
"time 0.2.27",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "actix-macros"
version = "0.1.3"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4ca8ce00b267af8ccebbd647de0d61e0674b6e61185cc7a592ff88772bed655"
2020-03-27 12:17:27 +01:00
dependencies = [
"quote",
"syn",
]
2020-05-01 21:40:32 +02:00
[[package]]
name = "actix-multipart"
2020-10-18 10:35:41 +02:00
version = "0.3.0"
2020-05-01 21:40:32 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 10:35:41 +02:00
checksum = "774bfeb11b54bf9c857a005b8ab893293da4eaff79261a66a9200dab7f5ab6e3"
2020-05-01 21:40:32 +02:00
dependencies = [
2021-08-13 13:11:51 +02:00
"actix-service",
"actix-utils",
2020-05-01 21:40:32 +02:00
"actix-web",
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-05-01 21:40:32 +02:00
"derive_more",
2020-10-18 10:35:41 +02:00
"futures-util",
2020-05-01 21:40:32 +02:00
"httparse",
"log",
2020-05-01 21:40:32 +02:00
"mime",
"twoway",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "actix-router"
2021-04-11 22:09:42 +02:00
version = "0.2.7"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "2ad299af73649e1fc893e333ccf86f377751eb95ff875d095131574c6f43452c"
2020-03-27 12:17:27 +01:00
dependencies = [
"bytestring",
"http",
"log",
"regex",
2020-03-27 12:17:27 +01:00
"serde",
]
[[package]]
name = "actix-rt"
2020-05-23 12:54:14 +02:00
version = "1.1.1"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "143fcc2912e0d1de2bcf4e2f720d2a60c28652ab4179685a1ee159e0fb3db227"
2020-03-27 12:17:27 +01:00
dependencies = [
"actix-macros",
"actix-threadpool",
"copyless",
2020-05-23 12:54:14 +02:00
"futures-channel",
"futures-util",
"smallvec",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "actix-server"
2020-10-18 10:35:41 +02:00
version = "1.0.4"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 10:35:41 +02:00
checksum = "45407e6e672ca24784baa667c5d32ef109ccdd8d5e0b5ebb9ef8a67f4dfb708e"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-08-13 13:11:51 +02:00
"actix-codec",
2020-03-27 12:17:27 +01:00
"actix-rt",
2021-08-13 13:11:51 +02:00
"actix-service",
"actix-utils",
2020-05-23 12:54:14 +02:00
"futures-channel",
"futures-util",
"log",
2021-08-13 14:01:00 +02:00
"mio 0.6.23",
2020-03-27 12:17:27 +01:00
"mio-uds",
"num_cpus",
"slab",
2021-08-13 14:01:00 +02:00
"socket2 0.3.19",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "actix-service"
2020-08-10 21:41:51 +02:00
version = "1.0.6"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-10 21:41:51 +02:00
checksum = "0052435d581b5be835d11f4eb3bce417c8af18d87ddf8ace99f8e67e595882bb"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"futures-util",
2021-04-11 22:09:42 +02:00
"pin-project 0.4.28",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "actix-testing"
2020-05-23 12:54:14 +02:00
version = "1.0.1"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "47239ca38799ab74ee6a8a94d1ce857014b2ac36f242f70f3f75a66f691e791c"
2020-03-27 12:17:27 +01:00
dependencies = [
"actix-macros",
"actix-rt",
"actix-server",
2021-08-13 13:11:51 +02:00
"actix-service",
"log",
2021-08-13 14:01:00 +02:00
"socket2 0.3.19",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "actix-threadpool"
version = "0.3.3"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d209f04d002854b9afd3743032a27b066158817965bf5d036824d19ac2cc0e30"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"derive_more",
"futures-channel",
"lazy_static",
"log",
"num_cpus",
2021-08-13 13:11:51 +02:00
"parking_lot",
2020-08-10 22:34:19 +02:00
"threadpool",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "actix-tls"
2020-10-18 10:35:41 +02:00
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24789b7d7361cf5503a504ebe1c10806896f61e96eca9a7350e23001aca715fb"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix-codec",
"actix-service",
"actix-utils",
2020-10-18 10:35:41 +02:00
"futures-util",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "actix-utils"
2020-10-18 10:35:41 +02:00
version = "2.0.0"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 10:35:41 +02:00
checksum = "2e9022dec56632d1d7979e59af14f0597a28a830a9c1c7fec8b2327eb9f16b5a"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-08-13 13:11:51 +02:00
"actix-codec",
2020-03-27 12:17:27 +01:00
"actix-rt",
2021-08-13 13:11:51 +02:00
"actix-service",
2020-03-27 12:17:27 +01:00
"bitflags",
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-03-27 12:17:27 +01:00
"either",
2020-10-18 10:35:41 +02:00
"futures-channel",
"futures-sink",
"futures-util",
"log",
2021-04-11 22:09:42 +02:00
"pin-project 0.4.28",
2020-03-27 12:17:27 +01:00
"slab",
]
[[package]]
name = "actix-web"
version = "3.3.2"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e641d4a172e7faa0862241a20ff4f1f5ab0ab7c279f00c2d4587b77483477b86"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-08-13 13:11:51 +02:00
"actix-codec",
"actix-http",
2020-03-27 12:17:27 +01:00
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
2021-08-13 13:11:51 +02:00
"actix-service",
2020-03-27 12:17:27 +01:00
"actix-testing",
"actix-threadpool",
"actix-tls",
2021-08-13 13:11:51 +02:00
"actix-utils",
2020-03-27 12:17:27 +01:00
"actix-web-codegen",
"awc",
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-03-27 12:17:27 +01:00
"derive_more",
"encoding_rs",
2020-10-18 10:35:41 +02:00
"futures-channel",
"futures-core",
"futures-util",
2020-03-27 12:17:27 +01:00
"fxhash",
"log",
2020-03-27 12:17:27 +01:00
"mime",
2021-08-13 12:42:29 +02:00
"pin-project 1.0.8",
"regex",
2020-03-27 12:17:27 +01:00
"serde",
"serde_json",
2021-08-13 13:11:51 +02:00
"serde_urlencoded",
2021-08-13 14:01:00 +02:00
"socket2 0.3.19",
2021-08-13 12:42:29 +02:00
"time 0.2.27",
2020-11-25 20:14:52 +01:00
"tinyvec",
"url",
2020-03-27 12:17:27 +01:00
]
2020-04-05 15:15:09 +02:00
[[package]]
name = "actix-web-actors"
2020-10-18 10:35:41 +02:00
version = "3.0.0"
2020-04-05 15:15:09 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 10:35:41 +02:00
checksum = "7f6edf3c2693e2a8c422800c87ee89a6a4eac7dd01109bc172a1093ce1f4f001"
2020-04-05 15:15:09 +02:00
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
"actix-codec",
"actix-http",
2020-04-05 15:15:09 +02:00
"actix-web",
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-10-18 10:35:41 +02:00
"futures-channel",
"futures-core",
2021-04-11 22:09:42 +02:00
"pin-project 0.4.28",
2020-04-05 15:15:09 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "actix-web-codegen"
2020-11-25 20:14:52 +01:00
version = "0.4.0"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-25 20:14:52 +01:00
checksum = "ad26f77093333e0e7c6ffe54ebe3582d908a104e448723eec6d43d08b07143fb"
2020-03-27 12:17:27 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "actix_derive"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b95aceadaf327f18f0df5962fedc1bde2f870566a0b9f65c89508a3b1f79334c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "adler"
2021-04-11 22:09:42 +02:00
version = "1.0.2"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-03-27 12:17:27 +01:00
[[package]]
name = "aho-corasick"
2021-08-13 12:42:29 +02:00
version = "0.7.18"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2020-03-27 12:17:27 +01:00
dependencies = [
"memchr",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "amazon-actor"
version = "0.1.0"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
2021-08-13 12:42:29 +02:00
"common",
"futures",
"jirs-config",
"libc",
"openssl-sys",
"rusoto_core",
"rusoto_s3",
"rusoto_signature",
"serde",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
2021-04-11 22:09:42 +02:00
"uuid 0.8.2",
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
dependencies = [
2020-08-10 22:34:19 +02:00
"winapi 0.3.9",
2020-04-10 08:09:40 +02:00
]
[[package]]
name = "ascii_utils"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a"
2020-03-27 12:17:27 +01:00
[[package]]
name = "async-trait"
2021-08-13 12:42:29 +02:00
version = "0.1.51"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-20 23:13:18 +02:00
"proc-macro2",
"quote",
"syn",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
2020-08-10 22:34:19 +02:00
"hermit-abi",
"libc",
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "autocfg"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
2020-03-27 12:17:27 +01:00
[[package]]
name = "autocfg"
2020-08-23 23:07:19 +02:00
version = "1.0.1"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-23 23:07:19 +02:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-03-27 12:17:27 +01:00
[[package]]
name = "awc"
version = "2.0.3"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b381e490e7b0cfc37ebc54079b0413d8093ef43d14a4e4747083f7fa47a9e691"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-08-13 13:11:51 +02:00
"actix-codec",
"actix-http",
2020-03-27 12:17:27 +01:00
"actix-rt",
2021-08-13 13:11:51 +02:00
"actix-service",
2020-11-25 20:14:52 +01:00
"base64 0.13.0",
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-11-25 20:14:52 +01:00
"cfg-if 1.0.0",
2020-03-27 12:17:27 +01:00
"derive_more",
"futures-core",
"log",
2020-03-27 12:17:27 +01:00
"mime",
"percent-encoding",
2020-03-27 12:17:27 +01:00
"rand 0.7.3",
"serde",
"serde_json",
2021-08-13 13:11:51 +02:00
"serde_urlencoded",
2020-03-27 12:17:27 +01:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "base-x"
2020-11-25 20:14:52 +01:00
version = "0.2.8"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-25 20:14:52 +01:00
checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"
2020-05-05 08:33:40 +02:00
[[package]]
name = "base64"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643"
dependencies = [
"byteorder",
"safemem",
]
[[package]]
name = "base64"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
dependencies = [
"byteorder",
]
2020-11-25 20:14:52 +01:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2020-03-27 12:17:27 +01:00
[[package]]
name = "bigdecimal"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "460825c9e21708024d67c07057cd5560e5acdccac85de0de624a81d3de51bacb"
dependencies = [
"num-bigint",
"num-integer",
"num-traits",
]
2020-04-05 15:15:09 +02:00
[[package]]
name = "bincode"
2021-04-11 22:09:42 +02:00
version = "1.3.3"
2020-04-05 15:15:09 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
2020-04-05 15:15:09 +02:00
dependencies = [
2020-08-15 23:16:30 +02:00
"serde",
2020-08-13 23:44:37 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "bitflags"
2021-10-05 14:34:20 +02:00
version = "1.3.2"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-05 14:34:20 +02:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-03-27 12:17:27 +01:00
2020-04-10 08:09:40 +02:00
[[package]]
name = "block-buffer"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
"block-padding",
"byte-tools",
"byteorder",
2021-04-11 22:09:42 +02:00
"generic-array 0.12.4",
2020-10-18 10:35:41 +02:00
]
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array 0.14.4",
2020-04-10 08:09:40 +02:00
]
[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
"byte-tools",
]
2020-03-27 12:17:27 +01: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",
]
2020-10-18 10:35:41 +02:00
[[package]]
name = "buf-min"
version = "0.4.0"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa17aa1cf56bdd6bb30518767d00e58019d326f3f05d8c3e0730b549d332ea83"
2020-10-18 10:35:41 +02:00
dependencies = [
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-10-18 10:35:41 +02:00
]
[[package]]
name = "bufstream"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8"
2020-03-29 19:56:55 +02:00
[[package]]
name = "bumpalo"
2021-10-08 15:20:49 +02:00
version = "3.7.1"
2020-03-29 19:56:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "d9df67f7bf9ef8498769f994239c45613ef0c5899415fb58e9add412d2c1a538"
2020-03-29 19:56:55 +02:00
2020-04-10 08:09:40 +02:00
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
2020-03-27 12:17:27 +01:00
[[package]]
name = "byteorder"
2021-04-11 22:09:42 +02:00
version = "1.4.3"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-03-27 12:17:27 +01:00
[[package]]
name = "bytes"
version = "0.5.6"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
2020-03-27 12:17:27 +01:00
2021-04-11 22:09:42 +02:00
[[package]]
name = "bytes"
2021-10-08 15:20:49 +02:00
version = "1.1.0"
2021-04-11 22:09:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2021-04-11 22:09:42 +02:00
2020-03-27 12:17:27 +01:00
[[package]]
name = "bytestring"
2021-04-11 22:09:42 +02:00
version = "1.0.0"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
2020-03-27 12:17:27 +01:00
]
2020-05-23 12:19:17 +02:00
[[package]]
name = "cassowary"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
2020-03-27 12:17:27 +01:00
[[package]]
name = "cc"
2021-10-08 15:20:49 +02:00
version = "1.0.71"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "79c2681d6594606957bbb8631c4b90a7fcaaa72cdb714743a437b156d6a7eedd"
2020-03-27 12:17:27 +01:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2020-10-18 10:35:41 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-03-27 12:17:27 +01:00
[[package]]
name = "chrono"
2020-10-18 10:35:41 +02:00
version = "0.4.19"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 10:35:41 +02:00
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-15 23:16:30 +02:00
"js-sys",
2020-10-18 10:35:41 +02:00
"libc",
2020-08-15 23:16:30 +02:00
"num-integer",
"num-traits",
"serde",
2021-08-13 14:01:00 +02:00
"time 0.1.43",
2020-08-15 23:16:30 +02:00
"wasm-bindgen",
2020-10-18 10:35:41 +02:00
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "clap"
2020-08-15 23:16:05 +02:00
version = "2.33.3"
2020-04-10 08:09:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-15 23:16:05 +02:00
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
2020-04-10 08:09:40 +02:00
dependencies = [
2020-08-15 23:16:30 +02:00
"ansi_term",
"atty",
"bitflags",
2021-01-13 22:16:22 +01:00
"strsim 0.8.0",
2020-08-15 23:16:30 +02:00
"textwrap",
"unicode-width",
"vec_map",
2020-04-10 08:09:40 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
dependencies = [
2020-08-10 22:34:19 +02:00
"bitflags",
]
2021-08-13 12:42:29 +02:00
[[package]]
name = "common"
version = "0.1.0"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
2021-08-13 12:42:29 +02:00
"actix-cors",
"actix-rt",
2021-08-13 13:11:51 +02:00
"actix-service",
2021-08-13 12:42:29 +02:00
"actix-web",
"actix-web-actors",
2021-08-13 13:11:51 +02:00
"actix_derive",
2021-08-13 14:01:00 +02:00
"bytes 0.5.6",
2021-08-13 12:56:11 +02:00
"env_logger",
"log",
"pretty_env_logger",
2021-08-13 12:42:29 +02:00
"reexport-proc-macro",
"serde",
"serde_derive",
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "comrak"
2021-10-08 15:20:49 +02:00
version = "0.12.1"
2020-04-10 08:09:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "ff3c476e1a33eb4df1212a02db79d0f788bbd760901f34f5897644623e0e4e74"
2020-04-10 08:09:40 +02:00
dependencies = [
2020-08-15 23:16:30 +02:00
"clap",
"entities",
"lazy_static",
"pest",
"pest_derive",
"regex",
"shell-words",
2021-10-08 15:20:49 +02:00
"syntect",
2020-08-15 23:16:30 +02:00
"twoway",
"typed-arena",
"unicode_categories",
"xdg",
2020-04-10 08:09:40 +02:00
]
2020-03-30 08:16:26 +02:00
[[package]]
name = "console_error_panic_hook"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8d976903543e0c48546a91908f21588a680a8c8f984df9a5d69feccb2b2a211"
dependencies = [
2020-10-18 10:35:41 +02:00
"cfg-if 0.1.10",
2020-03-30 08:16:26 +02:00
"wasm-bindgen",
]
2020-10-18 10:35:41 +02:00
[[package]]
name = "const_fn"
2021-08-13 12:42:29 +02:00
version = "0.4.8"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7"
2020-05-05 08:33:40 +02:00
2021-04-11 22:09:42 +02:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-10-18 10:35:41 +02:00
[[package]]
name = "cookie"
2021-04-11 22:09:42 +02:00
version = "0.14.4"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
2020-10-18 10:35:41 +02:00
dependencies = [
"percent-encoding",
2021-08-13 12:42:29 +02:00
"time 0.2.27",
2021-04-11 22:09:42 +02:00
"version_check 0.9.3",
2020-03-30 08:16:26 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "copyless"
2020-06-10 22:03:00 +02:00
version = "0.1.5"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-10 22:03:00 +02:00
checksum = "a2df960f5d869b2dd8532793fde43eb5427cceb126c929747a26823ab0eeb536"
2020-03-27 12:17:27 +01:00
[[package]]
name = "core-foundation"
2020-11-25 20:14:52 +01:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-25 20:14:52 +01:00
checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2020-11-25 20:14:52 +01:00
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-25 20:14:52 +01:00
checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
2020-10-18 10:35:41 +02:00
[[package]]
2021-08-13 12:42:29 +02:00
name = "cpufeatures"
2021-10-08 15:20:49 +02:00
version = "0.2.1"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
2021-08-13 12:42:29 +02:00
dependencies = [
"libc",
]
2020-10-18 10:35:41 +02:00
2020-03-27 12:17:27 +01:00
[[package]]
name = "crc32fast"
2020-10-23 11:36:34 +02:00
version = "1.2.1"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-23 11:36:34 +02:00
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-10-23 11:36:34 +02:00
"cfg-if 1.0.0",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "crossbeam-channel"
2020-10-18 10:35:41 +02:00
version = "0.4.4"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 10:35:41 +02:00
checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
2020-03-27 12:17:27 +01:00
dependencies = [
"crossbeam-utils",
2020-10-18 10:35:41 +02:00
"maybe-uninit",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "crossbeam-utils"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
dependencies = [
2020-10-18 10:35:41 +02:00
"autocfg 1.0.1",
"cfg-if 0.1.10",
"lazy_static",
2020-03-27 12:17:27 +01:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "crypto-mac"
2021-08-13 14:01:00 +02:00
version = "0.11.1"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"
2020-05-05 08:33:40 +02:00
dependencies = [
"generic-array 0.14.4",
2020-05-05 08:33:40 +02:00
"subtle",
]
[[package]]
name = "database-actor"
version = "0.1.0"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
"bigdecimal",
"bincode",
"bitflags",
"byteorder",
"chrono",
2021-08-13 12:42:29 +02:00
"common",
"derive_db_execute",
"diesel",
"dotenv",
"futures",
2021-10-09 14:35:39 +02:00
"ipnetwork 0.16.0",
"jirs-config",
"jirs-data",
"libc",
"num-bigint",
"num-integer",
"num-traits",
"openssl-sys",
"percent-encoding",
"pq-sys",
"r2d2",
"serde",
2021-08-13 14:01:00 +02:00
"time 0.1.43",
"toml",
"url",
2021-04-11 22:09:42 +02:00
"uuid 0.8.2",
]
2020-03-30 08:16:26 +02:00
[[package]]
name = "dbg"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4677188513e0e9d7adced5997cf9a1e7a3c996c994f90093325c5332c1a8b221"
dependencies = [
"version_check 0.1.5",
]
[[package]]
name = "derive_db_execute"
version = "0.1.0"
[[package]]
name = "derive_enum_iter"
version = "0.1.0"
[[package]]
name = "derive_enum_primitive"
version = "0.1.0"
[[package]]
name = "derive_enum_sql"
version = "0.1.0"
2020-03-27 12:17:27 +01:00
[[package]]
name = "derive_more"
2021-08-13 12:42:29 +02:00
version = "0.99.16"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "40eebddd2156ce1bb37b20bbe5151340a31828b1f2d22ba4141f3531710e38df"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-04-11 22:09:42 +02:00
"convert_case",
2020-08-10 22:34:19 +02:00
"proc-macro2",
"quote",
2021-08-13 12:42:29 +02:00
"rustc_version 0.3.3",
2020-08-10 22:34:19 +02:00
"syn",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "diesel"
2021-10-08 15:20:49 +02:00
version = "1.4.8"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "b28135ecf6b7d446b43e27e225622a038cc4e2930a1022f51cdb97ada19b8e4d"
2020-03-27 12:17:27 +01:00
dependencies = [
"bigdecimal",
"bitflags",
"byteorder",
"chrono",
"diesel_derives",
2021-10-09 14:35:39 +02:00
"ipnetwork 0.18.0",
2020-03-27 12:17:27 +01:00
"libc",
"num-bigint",
"num-integer",
"num-traits",
"pq-sys",
"r2d2",
"serde_json",
2021-08-13 14:01:00 +02:00
"time 0.1.43",
2020-03-27 12:17:27 +01:00
"uuid 0.6.5",
2021-04-11 22:09:42 +02:00
"uuid 0.8.2",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "diesel_derives"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "digest"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
2021-04-11 22:09:42 +02:00
"generic-array 0.12.4",
2020-10-18 10:35:41 +02:00
]
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array 0.14.4",
2020-04-10 08:09:40 +02:00
]
2020-05-05 08:33:40 +02:00
[[package]]
2021-08-13 14:01:00 +02:00
name = "dirs-next"
version = "2.0.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
2020-05-05 08:33:40 +02:00
dependencies = [
2021-08-13 14:01:00 +02:00
"cfg-if 1.0.0",
"dirs-sys-next",
2020-05-05 08:33:40 +02:00
]
[[package]]
2021-08-13 14:01:00 +02:00
name = "dirs-sys-next"
version = "0.1.2"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
2020-05-05 08:33:40 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"libc",
"redox_users",
"winapi 0.3.9",
2020-05-05 08:33:40 +02:00
]
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
2020-03-27 12:17:27 +01:00
[[package]]
name = "dotenv"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
[[package]]
name = "either"
2020-10-18 10:35:41 +02:00
version = "1.6.1"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 10:35:41 +02:00
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2020-03-27 12:17:27 +01:00
[[package]]
name = "email"
version = "0.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91549a51bb0241165f13d57fc4c72cef063b4088fb078b019ecbf464a45f22e4"
dependencies = [
"base64 0.9.3",
"chrono",
"encoding",
"lazy_static",
"rand 0.4.6",
2021-08-13 14:01:00 +02:00
"time 0.1.43",
"version_check 0.1.5",
]
2020-03-30 08:16:26 +02:00
[[package]]
name = "enclose"
version = "1.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1056f553da426e9c025a662efa48b52e62e0a3a7648aa2d15aeaaf7f0d329357"
[[package]]
name = "encoding"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
dependencies = [
"encoding-index-japanese",
"encoding-index-korean",
"encoding-index-simpchinese",
"encoding-index-singlebyte",
"encoding-index-tradchinese",
]
[[package]]
name = "encoding-index-japanese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-korean"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-simpchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-singlebyte"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-tradchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding_index_tests"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
2020-03-27 12:17:27 +01:00
[[package]]
name = "encoding_rs"
2021-04-11 22:09:42 +02:00
version = "0.8.28"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-11-25 20:14:52 +01:00
"cfg-if 1.0.0",
2020-03-27 12:17:27 +01:00
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "entities"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
2020-03-27 12:17:27 +01:00
[[package]]
name = "enum-as-inner"
2020-08-10 21:41:51 +02:00
version = "0.3.3"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-10 21:41:51 +02:00
checksum = "7c5f0096a91d210159eceb2ff5e1c4da18388a170e1e3ce948aac9c8fdbbf595"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"heck",
"proc-macro2",
"quote",
"syn",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
dependencies = [
"atty",
"humantime",
"log",
"regex",
2020-03-27 12:17:27 +01:00
"termcolor",
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
[[package]]
name = "fast_chemail"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4"
dependencies = [
2020-08-15 23:16:30 +02:00
"ascii_utils",
]
[[package]]
name = "filesystem-actor"
version = "0.1.0"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
"actix-files",
2021-08-13 12:42:29 +02:00
"common",
"futures",
"jirs-config",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "flate2"
2021-10-08 15:20:49 +02:00
version = "1.0.22"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-11-25 20:14:52 +01:00
"cfg-if 1.0.0",
2020-08-20 23:13:18 +02:00
"crc32fast",
"libc",
"miniz_oxide",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "fnv"
2020-05-23 12:54:14 +02:00
version = "1.0.7"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-03-27 12:17:27 +01: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"
2020-11-25 20:14:52 +01:00
[[package]]
name = "form_urlencoded"
2021-04-11 22:09:42 +02:00
version = "1.0.1"
2020-11-25 20:14:52 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-11-25 20:14:52 +01:00
dependencies = [
"matches",
"percent-encoding",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
[[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"
[[package]]
name = "futures"
2021-10-08 15:20:49 +02:00
version = "0.3.17"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca"
2020-03-27 12:17:27 +01:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2021-10-08 15:20:49 +02:00
version = "0.3.17"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888"
2020-03-27 12:17:27 +01:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2021-10-08 15:20:49 +02:00
version = "0.3.17"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"
2020-03-27 12:17:27 +01:00
[[package]]
name = "futures-executor"
2021-10-08 15:20:49 +02:00
version = "0.3.17"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c"
2020-03-27 12:17:27 +01:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2021-10-08 15:20:49 +02:00
version = "0.3.17"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377"
2020-03-27 12:17:27 +01:00
[[package]]
name = "futures-macro"
2021-10-08 15:20:49 +02:00
version = "0.3.17"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-08-13 12:42:29 +02:00
"autocfg 1.0.1",
2020-03-27 12:17:27 +01:00
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2021-10-08 15:20:49 +02:00
version = "0.3.17"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11"
2020-03-27 12:17:27 +01:00
[[package]]
name = "futures-task"
2021-10-08 15:20:49 +02:00
version = "0.3.17"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99"
2020-03-27 12:17:27 +01:00
[[package]]
name = "futures-util"
2021-10-08 15:20:49 +02:00
version = "0.3.17"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-08-13 12:42:29 +02:00
"autocfg 1.0.1",
2020-03-27 12:17:27 +01:00
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2021-08-13 12:42:29 +02:00
"pin-project-lite 0.2.7",
2020-03-27 12:17:27 +01: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",
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "generic-array"
2021-04-11 22:09:42 +02:00
version = "0.12.4"
2020-04-10 08:09:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd"
2020-04-10 08:09:40 +02:00
dependencies = [
"typenum",
]
2020-10-18 10:35:41 +02:00
[[package]]
name = "generic-array"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
dependencies = [
"typenum",
2021-04-11 22:09:42 +02:00
"version_check 0.9.3",
2020-10-18 10:35:41 +02:00
]
2021-10-09 14:35:39 +02:00
[[package]]
name = "getopts"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
dependencies = [
"unicode-width",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "getrandom"
2021-04-11 22:09:42 +02:00
version = "0.1.16"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-04-11 22:09:42 +02:00
"cfg-if 1.0.0",
2021-10-09 14:35:39 +02:00
"js-sys",
2020-03-27 12:17:27 +01:00
"libc",
2020-10-18 10:35:41 +02:00
"wasi 0.9.0+wasi-snapshot-preview1",
2021-10-09 14:35:39 +02:00
"wasm-bindgen",
2021-04-11 22:09:42 +02:00
]
[[package]]
name = "getrandom"
2021-08-13 12:42:29 +02:00
version = "0.2.3"
2021-04-11 22:09:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
2021-04-11 22:09:42 +02:00
dependencies = [
"cfg-if 1.0.0",
"js-sys",
"libc",
2021-08-13 14:01:00 +02:00
"wasi 0.10.2+wasi-snapshot-preview1",
"wasm-bindgen",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "gloo-events"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "088514ec8ef284891c762c88a66b639b3a730134714692ee31829765c5bc814f"
dependencies = [
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "gloo-file"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f9fecfe46b5dc3cc46f58e98ba580cc714f2c93860796d002eb3527a465ef49"
dependencies = [
"futures-channel",
"gloo-events",
"js-sys",
"wasm-bindgen",
"web-sys",
]
2020-03-30 08:16:26 +02:00
[[package]]
name = "gloo-timers"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47204a46aaff920a1ea58b11d03dec6f704287d27561724a4631e450654a891f"
dependencies = [
"futures-channel",
"futures-core",
2020-03-30 08:16:26 +02:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "h2"
2020-11-25 20:14:52 +01:00
version = "0.2.7"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-25 20:14:52 +01:00
checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-08-10 22:34:19 +02:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
"tokio-util 0.3.1",
2020-08-10 22:34:19 +02:00
"tracing",
2020-11-25 20:14:52 +01:00
"tracing-futures",
]
2021-08-13 14:01:00 +02:00
[[package]]
name = "h2"
2021-10-08 15:20:49 +02:00
version = "0.3.6"
2021-08-13 14:01:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "6c06815895acec637cd6ed6e9662c935b866d20a106f8361892893a7d9234964"
2021-08-13 14:01:00 +02:00
dependencies = [
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
2021-08-13 14:01:00 +02:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-10-08 15:20:49 +02:00
"tokio 1.12.0",
"tokio-util 0.6.8",
2021-08-13 14:01:00 +02:00
"tracing",
]
[[package]]
name = "hashbrown"
2021-08-13 12:42:29 +02:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-03-27 12:17:27 +01:00
[[package]]
name = "heck"
2021-08-13 12:42:29 +02:00
version = "0.3.3"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"unicode-segmentation",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "hermit-abi"
2021-08-13 12:42:29 +02:00
version = "0.1.19"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"libc",
2020-03-27 12:17:27 +01:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "hex"
2021-04-11 22:09:42 +02:00
version = "0.4.3"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2020-05-05 08:33:40 +02:00
[[package]]
name = "highlight-actor"
version = "0.1.0"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
"bincode",
2021-08-13 12:42:29 +02:00
"common",
"flate2",
"jirs-config",
"jirs-data",
"lazy_static",
"serde",
2021-01-13 22:16:22 +01:00
"simsearch",
"syntect",
"toml",
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "hmac"
2021-08-13 14:01:00 +02:00
version = "0.11.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"
2020-05-05 08:33:40 +02:00
dependencies = [
"crypto-mac",
"digest 0.9.0",
2020-05-05 08:33:40 +02:00
]
[[package]]
name = "hostname"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21ceb46a83a85e824ef93669c8b390009623863b5c195d1ba747292c0c72f94e"
dependencies = [
"libc",
"winutil",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
2020-08-10 22:34:19 +02:00
"libc",
"match_cfg",
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "http"
2021-10-08 15:20:49 +02:00
version = "0.2.5"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
2020-03-27 12:17:27 +01:00
"fnv",
"itoa",
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "http-body"
2021-08-13 14:01:00 +02:00
version = "0.4.3"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "399c583b2979440c60be0821a6199eca73bc3c8dcd9d070d75ac726e2c6186e5"
2020-05-05 08:33:40 +02:00
dependencies = [
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
2020-05-05 08:33:40 +02:00
"http",
2021-08-13 14:01:00 +02:00
"pin-project-lite 0.2.7",
2020-05-05 08:33:40 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "httparse"
2021-10-08 15:20:49 +02:00
version = "1.5.1"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
2020-03-27 12:17:27 +01:00
2020-10-18 10:35:41 +02:00
[[package]]
name = "httpdate"
2021-08-13 14:01:00 +02:00
version = "1.0.1"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "6456b8a6c8f33fee7d958fcd1b60d55b11940a79e63ae87013e6d22e26034440"
2020-10-18 10:35:41 +02:00
2020-03-27 12:17:27 +01:00
[[package]]
name = "humantime"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
dependencies = [
"quick-error",
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "hyper"
2021-10-08 15:20:49 +02:00
version = "0.14.13"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "15d1cfb9e4f68655fa04c01f59edb405b6074a0f7118ea881e5026e4a1cd8593"
2020-05-05 08:33:40 +02:00
dependencies = [
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
2020-08-10 22:34:19 +02:00
"futures-channel",
"futures-core",
"futures-util",
2021-10-08 15:20:49 +02:00
"h2 0.3.6",
2020-08-10 22:34:19 +02:00
"http",
"http-body",
"httparse",
2020-10-18 10:35:41 +02:00
"httpdate",
2020-08-10 22:34:19 +02:00
"itoa",
2021-08-13 14:01:00 +02:00
"pin-project-lite 0.2.7",
2021-10-08 15:20:49 +02:00
"socket2 0.4.2",
"tokio 1.12.0",
2020-08-10 22:34:19 +02:00
"tower-service",
"tracing",
"want",
2020-05-05 08:33:40 +02:00
]
[[package]]
name = "hyper-tls"
2021-08-13 14:01:00 +02:00
version = "0.5.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
2020-05-05 08:33:40 +02:00
dependencies = [
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
2020-08-10 22:34:19 +02:00
"hyper",
"native-tls",
2021-10-08 15:20:49 +02:00
"tokio 1.12.0",
2021-08-13 14:01:00 +02:00
"tokio-native-tls",
2020-05-05 08:33:40 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "idna"
2021-04-16 16:52:16 +02:00
version = "0.2.3"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-16 16:52:16 +02:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2020-03-27 12:17:27 +01:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
2021-08-13 12:42:29 +02:00
version = "1.7.0"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-10-18 10:35:41 +02:00
"autocfg 1.0.1",
"hashbrown",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "instant"
2021-10-08 15:20:49 +02:00
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "716d3d89f35ac6a34fd0eed635395f4c3b76fa889338a4632e5231a8684216bd"
2020-10-18 10:35:41 +02:00
dependencies = [
2020-11-25 20:14:52 +01:00
"cfg-if 1.0.0",
2020-10-18 10:35:41 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
2020-08-10 22:34:19 +02:00
"libc",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "ipconfig"
2020-05-23 12:54:14 +02:00
version = "0.2.2"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-08-13 14:01:00 +02:00
"socket2 0.3.19",
2020-08-10 22:34:19 +02:00
"widestring",
"winapi 0.3.9",
"winreg",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "ipnetwork"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8eca9f51da27bc908ef3dd85c21e1bbba794edaf94d7841e37356275b82d31e"
dependencies = [
"serde",
]
2021-10-09 14:35:39 +02:00
[[package]]
name = "ipnetwork"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4088d739b183546b239688ddbc79891831df421773df95e236daf7867866d355"
dependencies = [
"serde",
]
2020-05-23 12:19:17 +02:00
[[package]]
name = "itertools"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
dependencies = [
"either",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "itoa"
2021-10-08 15:20:49 +02:00
version = "0.4.8"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2020-03-27 12:17:27 +01:00
[[package]]
name = "jirs-cli"
version = "0.1.0"
2020-05-23 12:19:17 +02:00
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
2020-05-23 12:19:17 +02:00
"clap",
2021-08-13 13:11:51 +02:00
"common",
2020-05-28 10:30:07 +02:00
"termion",
2020-05-23 12:19:17 +02:00
"tui",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "jirs-config"
version = "0.1.0"
dependencies = [
"rusoto_core",
"rusoto_s3",
"rusoto_signature",
"serde",
"toml",
]
2020-03-28 21:41:16 +01:00
[[package]]
name = "jirs-data"
version = "0.1.0"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
2020-03-28 21:41:16 +01:00
"chrono",
"derive_enum_iter",
"derive_enum_primitive",
"derive_enum_sql",
2020-04-01 13:29:43 +02:00
"diesel",
2020-03-28 21:41:16 +01:00
"serde",
"serde_json",
2021-04-11 22:09:42 +02:00
"uuid 0.8.2",
2020-03-28 21:41:16 +01:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "jirs-server"
version = "0.1.0"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
"amazon-actor",
2021-08-13 12:42:29 +02:00
"common",
"database-actor",
2020-03-27 12:17:27 +01:00
"dotenv",
"filesystem-actor",
"futures",
"highlight-actor",
"jirs-config",
2020-08-20 23:13:18 +02:00
"jirs-data",
"libc",
"mail-actor",
2020-08-20 23:13:18 +02:00
"openssl-sys",
"serde",
"serde_json",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
2020-08-20 23:13:18 +02:00
"toml",
"web-actor",
"websocket-actor",
2020-03-27 12:17:27 +01:00
]
2020-05-01 23:10:54 +02:00
[[package]]
name = "jirs_client"
version = "0.1.0"
dependencies = [
2020-08-15 23:16:30 +02:00
"bincode",
"chrono",
"console_error_panic_hook",
"derive_enum_iter",
"derive_enum_primitive",
2021-04-15 22:32:05 +02:00
"dotenv",
"futures",
2020-08-15 23:16:30 +02:00
"jirs-data",
"js-sys",
"log",
2020-08-15 23:16:30 +02:00
"seed",
"serde",
2020-10-18 10:35:41 +02:00
"serde_json",
2021-04-11 22:09:42 +02:00
"uuid 0.8.2",
2020-08-15 23:16:30 +02:00
"wasm-bindgen",
"wasm-bindgen-futures",
2020-08-15 23:16:30 +02:00
"wasm-bindgen-test",
"wasm-logger",
2020-08-15 23:16:30 +02:00
"web-sys",
"wee_alloc",
2020-05-01 23:10:54 +02:00
]
2020-03-30 08:16:26 +02:00
[[package]]
name = "js-sys"
2021-10-08 15:20:49 +02:00
version = "0.3.55"
2020-03-30 08:16:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84"
2020-03-30 08:16:26 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"wasm-bindgen",
2020-03-30 08:16:26 +02:00
]
2020-03-27 12:17:27 +01: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"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2020-04-23 14:26:43 +02:00
[[package]]
name = "lazycell"
2020-08-15 23:16:05 +02:00
version = "1.3.0"
2020-04-23 14:26:43 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-15 23:16:05 +02:00
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2020-04-23 14:26:43 +02:00
[[package]]
name = "lettre"
2021-08-13 12:42:29 +02:00
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "86ed8677138975b573ab4949c35613931a4addeadd0a8a6aa0327e2a979660de"
dependencies = [
"base64 0.10.1",
"bufstream",
"fast_chemail",
"hostname 0.1.5",
"log",
"native-tls",
"nom",
"serde",
"serde_derive",
"serde_json",
]
[[package]]
name = "lettre_email"
2020-05-23 12:54:14 +02:00
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "fd02480f8dcf48798e62113974d6ccca2129a51d241fa20f1ea349c8a42559d5"
dependencies = [
2020-08-15 23:16:30 +02:00
"base64 0.10.1",
"email",
"lettre",
"mime",
2021-08-13 14:01:00 +02:00
"time 0.1.43",
2020-08-15 23:16:30 +02:00
"uuid 0.7.4",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "libc"
2021-10-08 15:20:49 +02:00
version = "0.2.103"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "dd8f7255a17a627354f321ef0055d63b898c6fb27eff628af4d1b66b7331edf6"
2020-03-27 12:17:27 +01:00
2020-08-13 23:44:37 +02:00
[[package]]
name = "line-wrap"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
dependencies = [
2020-08-15 23:16:30 +02:00
"safemem",
2020-08-13 23:44:37 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "linked-hash-map"
2021-04-11 22:09:42 +02:00
version = "0.5.4"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
2020-03-27 12:17:27 +01:00
[[package]]
name = "lock_api"
2021-10-08 15:20:49 +02:00
version = "0.4.5"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"scopeguard",
2020-03-27 12:17:27 +01:00
]
2020-06-24 12:41:01 +02:00
[[package]]
name = "log"
2021-04-11 22:09:42 +02:00
version = "0.4.14"
2020-06-24 12:41:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2020-06-24 12:41:01 +02:00
dependencies = [
2021-04-11 22:09:42 +02:00
"cfg-if 1.0.0",
2020-06-24 12:41:01 +02:00
]
2020-03-27 12:17:27 +01: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",
]
[[package]]
name = "mail-actor"
version = "0.1.0"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
2021-08-13 12:42:29 +02:00
"common",
"dotenv",
"futures",
"jirs-config",
"lettre",
"lettre_email",
"libc",
2021-10-08 13:56:28 +02:00
"log",
"openssl-sys",
"serde",
"toml",
2021-04-11 22:09:42 +02:00
"uuid 0.8.2",
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "maplit"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
2020-03-27 12:17:27 +01:00
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
[[package]]
name = "matches"
2021-08-13 12:43:08 +02:00
version = "0.1.9"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:43:08 +02:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2020-03-27 12:17:27 +01:00
2020-10-18 10:35:41 +02:00
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
2020-05-05 08:33:40 +02:00
[[package]]
2021-08-13 14:01:00 +02:00
name = "md-5"
version = "0.9.1"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "7b5a279bb9607f9f53c22d496eade00d138d1bdcccd07d74650387cf94942a15"
dependencies = [
"block-buffer 0.9.0",
"digest 0.9.0",
"opaque-debug 0.3.0",
]
2020-05-05 08:33:40 +02:00
2020-03-27 12:17:27 +01:00
[[package]]
name = "memchr"
2021-10-08 15:20:49 +02:00
version = "2.4.1"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2020-03-27 12:17:27 +01:00
2020-06-24 12:41:01 +02:00
[[package]]
name = "memory_units"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3"
2020-03-27 12:17:27 +01:00
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2020-05-05 08:33:40 +02: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-03-27 12:17:27 +01:00
[[package]]
name = "miniz_oxide"
2021-04-11 22:09:42 +02:00
version = "0.4.4"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-10-18 10:35:41 +02:00
"adler",
"autocfg 1.0.1",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "mio"
version = "0.6.23"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-10-18 10:35:41 +02:00
"cfg-if 0.1.10",
2020-03-27 12:17:27 +01:00
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow 0.2.2",
2020-03-27 12:17:27 +01:00
"net2",
"slab",
"winapi 0.2.8",
]
2020-05-05 08:33:40 +02:00
[[package]]
2021-08-13 14:01:00 +02:00
name = "mio"
version = "0.7.13"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
2020-05-05 08:33:40 +02:00
dependencies = [
2021-08-13 14:01:00 +02:00
"libc",
2020-08-10 22:34:19 +02:00
"log",
2021-04-11 22:09:42 +02:00
"miow 0.3.7",
2021-08-13 14:01:00 +02:00
"ntapi",
2020-08-10 22:34:19 +02:00
"winapi 0.3.9",
2020-05-05 08:33:40 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "mio-uds"
2020-05-23 12:54:14 +02:00
version = "0.6.8"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
2020-03-27 12:17:27 +01:00
dependencies = [
"iovec",
"libc",
2021-08-13 14:01:00 +02:00
"mio 0.6.23",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "miow"
version = "0.2.2"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
2020-03-27 12:17:27 +01:00
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "miow"
2021-04-11 22:09:42 +02:00
version = "0.3.7"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2020-05-05 08:33:40 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"winapi 0.3.9",
2020-05-05 08:33:40 +02:00
]
[[package]]
name = "native-tls"
2021-08-13 12:42:29 +02:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "net2"
version = "0.2.37"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-10-18 10:35:41 +02:00
"cfg-if 0.1.10",
2020-08-10 22:34:19 +02:00
"libc",
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
[[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",
]
2021-08-13 14:01:00 +02:00
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi 0.3.9",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "num-bigint"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
dependencies = [
2020-10-18 10:35:41 +02:00
"autocfg 1.0.1",
"num-integer",
"num-traits",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "num-integer"
2020-11-25 20:14:52 +01:00
version = "0.1.44"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-25 20:14:52 +01:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-10-18 10:35:41 +02:00
"autocfg 1.0.1",
"num-traits",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "num-traits"
2020-11-25 20:14:52 +01:00
version = "0.2.14"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-25 20:14:52 +01:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-10-18 10:35:41 +02:00
"autocfg 1.0.1",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "num_cpus"
2020-05-23 12:54:14 +02:00
version = "1.13.0"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2020-03-27 12:17:27 +01:00
dependencies = [
"hermit-abi",
"libc",
]
2020-05-23 12:19:17 +02:00
[[package]]
name = "numtoa"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef"
2020-05-23 12:54:14 +02:00
[[package]]
name = "once_cell"
2021-08-13 12:42:29 +02:00
version = "1.8.0"
2020-05-23 12:54:14 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
2020-05-23 12:54:14 +02:00
2020-12-18 22:31:29 +01:00
[[package]]
name = "onig"
2021-10-08 15:20:49 +02:00
version = "6.3.0"
2020-12-18 22:31:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "b17403cf40f61e3ee059e3e90b7fc0a2953297168d4379b160f80d18fed848a4"
2020-12-18 22:31:29 +01:00
dependencies = [
"bitflags",
"lazy_static",
"libc",
"onig_sys",
]
[[package]]
name = "onig_sys"
2021-10-08 15:20:49 +02:00
version = "69.7.1"
2020-12-18 22:31:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "5dd3eee045c84695b53b20255bb7317063df090b68e18bfac0abb6c39cf7f33e"
2020-12-18 22:31:29 +01:00
dependencies = [
"cc",
"pkg-config",
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
2020-10-18 10:35:41 +02:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "openssl"
2021-10-08 15:20:49 +02:00
version = "0.10.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "8d9facdb76fec0b73c406f125d44d86fdad818d66fef0531eec9233ca425ff4a"
dependencies = [
2020-08-10 22:34:19 +02:00
"bitflags",
"cfg-if 1.0.0",
2020-08-10 22:34:19 +02:00
"foreign-types",
2020-08-20 23:13:18 +02:00
"libc",
2021-04-11 22:09:42 +02:00
"once_cell",
2020-08-20 23:13:18 +02:00
"openssl-sys",
]
[[package]]
name = "openssl-probe"
2021-08-13 12:42:29 +02:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
2020-08-20 23:08:26 +02:00
[[package]]
name = "openssl-src"
2021-10-08 15:20:49 +02:00
version = "111.16.0+1.1.1l"
2020-08-20 23:08:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "7ab2173f69416cf3ec12debb5823d244127d23a9b127d5a5189aa97c5fa2859f"
2020-08-20 23:08:26 +02:00
dependencies = [
2020-08-20 23:13:18 +02:00
"cc",
2020-08-20 23:08:26 +02:00
]
[[package]]
name = "openssl-sys"
2021-10-08 15:20:49 +02:00
version = "0.9.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "69df2d8dfc6ce3aaf44b40dec6f487d5a886516cf6879c49e98e0710f310a058"
dependencies = [
2020-10-18 10:35:41 +02:00
"autocfg 1.0.1",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
[[package]]
name = "parking_lot"
2021-10-08 15:20:49 +02:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
2020-08-10 22:34:19 +02:00
"instant",
2021-08-13 13:11:51 +02:00
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2021-10-08 15:20:49 +02:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
dependencies = [
"cfg-if 1.0.0",
2020-08-10 22:34:19 +02:00
"instant",
"libc",
2021-08-13 13:11:51 +02:00
"redox_syscall",
2020-08-10 22:34:19 +02:00
"smallvec",
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2020-04-10 08:09:40 +02:00
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
dependencies = [
"maplit",
"pest",
2020-10-18 10:35:41 +02:00
"sha-1 0.8.2",
2020-04-10 08:09:40 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "pin-project"
2021-04-11 22:09:42 +02:00
version = "0.4.28"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "918192b5c59119d51e0cd221f4d49dde9112824ba717369e903c97d076083d0f"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-04-11 22:09:42 +02:00
"pin-project-internal 0.4.28",
2020-11-25 20:14:52 +01:00
]
[[package]]
name = "pin-project"
2021-08-13 12:42:29 +02:00
version = "1.0.8"
2020-11-25 20:14:52 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08"
2020-11-25 20:14:52 +01:00
dependencies = [
2021-08-13 12:42:29 +02:00
"pin-project-internal 1.0.8",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "pin-project-internal"
2021-04-11 22:09:42 +02:00
version = "0.4.28"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "3be26700300be6d9d23264c73211d8190e755b6b5ca7a1b28230025511b52a5e"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"proc-macro2",
"quote",
"syn",
2020-03-27 12:17:27 +01:00
]
2020-11-25 20:14:52 +01:00
[[package]]
name = "pin-project-internal"
2021-08-13 12:42:29 +02:00
version = "1.0.8"
2020-11-25 20:14:52 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389"
2020-11-25 20:14:52 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "pin-project-lite"
2021-04-11 22:09:42 +02:00
version = "0.1.12"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
2020-03-27 12:17:27 +01:00
[[package]]
name = "pin-project-lite"
2021-08-13 12:42:29 +02:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
2020-03-27 12:17:27 +01:00
[[package]]
name = "pin-utils"
2020-05-23 12:54:14 +02:00
version = "0.1.0"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-03-27 12:17:27 +01:00
[[package]]
name = "pkg-config"
2021-10-08 15:20:49 +02:00
version = "0.3.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "7c9b1041b4387893b91ee6746cddfc28516aff326a3519fb2adf820932c5e6cb"
2020-08-13 23:44:37 +02:00
[[package]]
name = "plist"
2021-08-13 12:42:29 +02:00
version = "1.2.1"
2020-08-13 23:44:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "a38d026d73eeaf2ade76309d0c65db5a35ecf649e3cec428db316243ea9d6711"
2020-08-13 23:44:37 +02:00
dependencies = [
2021-04-11 22:09:42 +02:00
"base64 0.13.0",
2020-08-15 23:16:30 +02:00
"chrono",
"indexmap",
"line-wrap",
"serde",
"xml-rs",
2020-08-13 23:44:37 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "ppv-lite86"
2020-11-25 20:14:52 +01:00
version = "0.2.10"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-25 20:14:52 +01:00
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2020-03-27 12:17:27 +01:00
[[package]]
name = "pq-sys"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ac25eee5a0582f45a67e837e350d784e7003bd29a5f460796772061ca49ffda"
dependencies = [
"vcpkg",
]
2020-04-03 14:29:30 +02:00
[[package]]
name = "pretty_env_logger"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d"
dependencies = [
"env_logger",
"log",
2020-04-03 14:29:30 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "proc-macro-hack"
2020-11-25 20:14:52 +01:00
version = "0.5.19"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-25 20:14:52 +01:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-03-27 12:17:27 +01:00
[[package]]
name = "proc-macro-nested"
2021-04-11 22:09:42 +02:00
version = "0.1.7"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
2020-03-27 12:17:27 +01:00
[[package]]
name = "proc-macro2"
2021-10-08 15:20:49 +02:00
version = "1.0.29"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "b9f5105d4fdaab20335ca9565e106a5d9b82b6219b5ba735731124ac6711d23d"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"unicode-xid",
2020-03-27 12:17:27 +01:00
]
2021-10-09 14:35:39 +02:00
[[package]]
name = "pulldown-cmark"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8"
dependencies = [
"bitflags",
"getopts",
"memchr",
"unicase",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
[[package]]
name = "quote"
2021-10-08 15:20:49 +02:00
version = "1.0.10"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
2020-03-27 12:17:27 +01:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "r2d2"
version = "0.8.9"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "545c5bc2b880973c9c10e4067418407a0ccaa3091781d1671d46eb35107cb26f"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"log",
2021-08-13 13:11:51 +02:00
"parking_lot",
2020-08-10 22:34:19 +02:00
"scheduled-thread-pool",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "rand"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
dependencies = [
2020-08-10 22:34:19 +02:00
"fuchsia-cprng",
"libc",
"rand_core 0.3.1",
"rdrand",
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "rand"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
dependencies = [
2020-08-10 22:34:19 +02:00
"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",
2021-10-09 14:35:39 +02:00
"rand_pcg 0.1.2",
2020-08-10 22:34:19 +02:00
"rand_xorshift",
"winapi 0.3.9",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
2021-04-11 22:09:42 +02:00
"getrandom 0.1.16",
2020-03-27 12:17:27 +01:00
"libc",
"rand_chacha 0.2.2",
2020-03-27 12:17:27 +01:00
"rand_core 0.5.1",
"rand_hc 0.2.0",
2021-10-09 14:35:39 +02:00
"rand_pcg 0.2.1",
2021-04-11 22:09:42 +02:00
]
[[package]]
name = "rand"
2021-08-13 12:42:29 +02:00
version = "0.8.4"
2021-04-11 22:09:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
2021-04-11 22:09:42 +02:00
dependencies = [
"libc",
2021-08-13 12:42:29 +02:00
"rand_chacha 0.3.1",
"rand_core 0.6.3",
"rand_hc 0.3.1",
]
[[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-03-27 12:17:27 +01:00
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core 0.5.1",
]
2021-04-11 22:09:42 +02:00
[[package]]
name = "rand_chacha"
2021-08-13 12:42:29 +02:00
version = "0.3.1"
2021-04-11 22:09:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-04-11 22:09:42 +02:00
dependencies = [
"ppv-lite86",
2021-08-13 12:42:29 +02:00
"rand_core 0.6.3",
2021-04-11 22:09:42 +02:00
]
2020-03-27 12:17:27 +01: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"
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
2021-04-11 22:09:42 +02:00
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
2021-08-13 12:42:29 +02:00
version = "0.6.3"
2021-04-11 22:09:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2021-04-11 22:09:42 +02:00
dependencies = [
2021-08-13 12:42:29 +02:00
"getrandom 0.2.3",
2020-03-27 12:17:27 +01: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-03-27 12:17:27 +01:00
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core 0.5.1",
]
2021-04-11 22:09:42 +02:00
[[package]]
name = "rand_hc"
2021-08-13 12:42:29 +02:00
version = "0.3.1"
2021-04-11 22:09:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
2021-04-11 22:09:42 +02:00
dependencies = [
2021-08-13 12:42:29 +02:00
"rand_core 0.6.3",
2021-04-11 22:09:42 +02: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 = [
2020-08-10 22:34:19 +02:00
"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",
2020-08-10 22:34:19 +02:00
"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",
]
2021-10-09 14:35:39 +02:00
[[package]]
name = "rand_pcg"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
dependencies = [
"rand_core 0.5.1",
]
[[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-03-27 12:17:27 +01: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-04-11 22:09:42 +02:00
[[package]]
name = "redox_syscall"
2021-08-13 12:42:29 +02:00
version = "0.2.10"
2021-04-11 22:09:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
2021-04-11 22:09:42 +02:00
dependencies = [
"bitflags",
]
2020-05-23 12:19:17 +02:00
[[package]]
name = "redox_termios"
2021-04-11 22:09:42 +02:00
version = "0.1.2"
2020-05-23 12:19:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "8440d8acb4fd3d277125b4bd01a6f38aee8d814b3b5fc09b3f2b825d37d3fe8f"
2020-05-23 12:19:17 +02:00
dependencies = [
2021-08-13 13:11:51 +02:00
"redox_syscall",
2020-05-23 12:19:17 +02:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "redox_users"
version = "0.4.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
2020-05-05 08:33:40 +02:00
dependencies = [
2021-08-13 12:42:29 +02:00
"getrandom 0.2.3",
2021-08-13 13:11:51 +02:00
"redox_syscall",
2020-05-05 08:33:40 +02:00
]
2021-08-13 12:42:29 +02:00
[[package]]
name = "reexport-proc-macro"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b90ec417f693152463d468b6d06ccc45ae3833f0538ef9e1cc154cf09eb1f575"
2020-03-27 12:17:27 +01:00
[[package]]
name = "regex"
2021-08-13 12:42:29 +02:00
version = "1.5.4"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2020-03-27 12:17:27 +01:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "regex-syntax"
2021-08-13 12:42:29 +02:00
version = "0.6.25"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2020-03-27 12:17:27 +01:00
[[package]]
name = "remove_dir_all"
2020-06-12 22:35:20 +02:00
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-12 22:35:20 +02:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
2020-08-10 22:34:19 +02:00
"winapi 0.3.9",
]
2020-11-25 20:14:52 +01:00
[[package]]
name = "resolv-conf"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
dependencies = [
"hostname 0.3.1",
"quick-error",
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "rusoto_core"
2021-08-13 14:01:00 +02:00
version = "0.47.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "5b4f000e8934c1b4f70adde180056812e7ea6b1a247952db8ee98c94cd3116cc"
2020-05-05 08:33:40 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"async-trait",
2021-08-13 14:01:00 +02:00
"base64 0.13.0",
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
"crc32fast",
"futures",
2020-08-10 22:34:19 +02:00
"http",
"hyper",
"hyper-tls",
"lazy_static",
"log",
"rusoto_credential",
"rusoto_signature",
2021-08-13 14:01:00 +02:00
"rustc_version 0.4.0",
2020-08-10 22:34:19 +02:00
"serde",
"serde_json",
2021-10-08 15:20:49 +02:00
"tokio 1.12.0",
2020-08-10 22:34:19 +02:00
"xml-rs",
2020-05-05 08:33:40 +02:00
]
[[package]]
name = "rusoto_credential"
2021-08-13 14:01:00 +02:00
version = "0.47.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "6a46b67db7bb66f5541e44db22b0a02fed59c9603e146db3a9e633272d3bac2f"
2020-05-05 08:33:40 +02:00
dependencies = [
"async-trait",
"chrono",
2021-08-13 14:01:00 +02:00
"dirs-next",
"futures",
2020-05-05 08:33:40 +02:00
"hyper",
"serde",
"serde_json",
"shlex",
2021-10-08 15:20:49 +02:00
"tokio 1.12.0",
2020-05-05 08:33:40 +02:00
"zeroize",
]
[[package]]
name = "rusoto_s3"
2021-08-13 14:01:00 +02:00
version = "0.47.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "048c2fe811a823ad5a9acc976e8bf4f1d910df719dcf44b15c3e96c5b7a51027"
2020-05-05 08:33:40 +02:00
dependencies = [
"async-trait",
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
"futures",
2020-05-05 08:33:40 +02:00
"rusoto_core",
"xml-rs",
]
[[package]]
name = "rusoto_signature"
2021-08-13 14:01:00 +02:00
version = "0.47.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "6264e93384b90a747758bcc82079711eacf2e755c3a8b5091687b5349d870bcc"
2020-05-05 08:33:40 +02:00
dependencies = [
2021-08-13 14:01:00 +02:00
"base64 0.13.0",
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
2021-08-13 14:01:00 +02:00
"chrono",
"digest 0.9.0",
"futures",
2020-08-10 22:34:19 +02:00
"hex",
"hmac",
"http",
"hyper",
"log",
2021-08-13 14:01:00 +02:00
"md-5",
2020-08-10 22:34:19 +02:00
"percent-encoding",
2021-08-13 14:01:00 +02:00
"pin-project-lite 0.2.7",
2020-08-10 22:34:19 +02:00
"rusoto_credential",
2021-08-13 14:01:00 +02:00
"rustc_version 0.4.0",
2020-08-10 22:34:19 +02:00
"serde",
"sha2",
2021-10-08 15:20:49 +02:00
"tokio 1.12.0",
2020-05-05 08:33:40 +02:00
]
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
2021-08-13 12:42:29 +02:00
"semver 0.9.0",
]
[[package]]
name = "rustc_version"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
dependencies = [
"semver 0.11.0",
2020-05-05 08:33:40 +02:00
]
2021-08-13 14:01:00 +02:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver 1.0.4",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "ryu"
2020-06-10 22:03:00 +02:00
version = "1.0.5"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-10 22:03:00 +02:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2020-03-27 12:17:27 +01:00
[[package]]
name = "safemem"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2020-04-23 14:26:43 +02:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
[[package]]
name = "schannel"
2020-05-23 12:54:14 +02:00
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
dependencies = [
2020-08-10 22:34:19 +02:00
"lazy_static",
"winapi 0.3.9",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "scheduled-thread-pool"
version = "0.2.5"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc6f74fd1204073fa02d5d5d68bec8021be4c38690b61264b2fdb48083d0e7d7"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-08-13 13:11:51 +02:00
"parking_lot",
2020-03-27 12:17:27 +01:00
]
2020-05-01 23:10:54 +02:00
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2020-03-27 12:17:27 +01:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "security-framework"
2021-10-08 15:20:49 +02:00
version = "2.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "525bc1abfda2e1998d152c45cf13e696f76d0a4972310b22fac1658b05df7c87"
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2021-10-08 15:20:49 +02:00
version = "2.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "a9dd14d83160b528b7bfd66439110573efcfbe281b17fc2ca9f39f550d619c7e"
dependencies = [
"core-foundation-sys",
"libc",
]
2020-03-29 19:56:55 +02:00
[[package]]
2020-03-30 08:16:26 +02:00
name = "seed"
version = "0.8.0"
2021-10-09 14:35:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b599be9cc57456f4b7fc99b8abfb154d4819f7b6c147e80be5580663dad4536"
2020-03-29 19:56:55 +02:00
dependencies = [
2020-03-30 08:16:26 +02:00
"console_error_panic_hook",
"cookie",
2020-03-30 08:16:26 +02:00
"dbg",
"enclose",
"futures",
"gloo-file",
2020-03-30 08:16:26 +02:00
"gloo-timers",
"indexmap",
"js-sys",
2021-10-09 14:35:39 +02:00
"pulldown-cmark",
"rand 0.7.3",
2020-03-30 08:16:26 +02:00
"serde",
2021-10-09 14:35:39 +02:00
"serde_json",
2021-04-11 22:09:42 +02:00
"uuid 0.8.2",
"version_check 0.9.3",
2020-03-30 08:16:26 +02:00
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2020-03-29 19:56:55 +02:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
2021-08-13 12:42:29 +02:00
"semver-parser 0.7.0",
]
[[package]]
name = "semver"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
dependencies = [
"semver-parser 0.10.2",
2020-05-05 08:33:40 +02:00
]
2021-08-13 14:01:00 +02:00
[[package]]
name = "semver"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "568a8e6258aa33c13358f81fd834adb854c6f7c9468520910a9b1e8fac068012"
2020-05-05 08:33:40 +02:00
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2021-08-13 12:42:29 +02:00
[[package]]
name = "semver-parser"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
dependencies = [
"pest",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "serde"
2021-10-08 15:20:49 +02:00
version = "1.0.130"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-15 23:16:30 +02:00
"serde_derive",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "serde_derive"
2021-10-08 15:20:49 +02:00
version = "1.0.130"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-15 23:16:30 +02:00
"proc-macro2",
"quote",
"syn",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "serde_json"
2021-10-08 15:20:49 +02:00
version = "1.0.68"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"itoa",
"ryu",
"serde",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "serde_urlencoded"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "sha-1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
dependencies = [
2020-10-18 10:35:41 +02:00
"block-buffer 0.7.3",
"digest 0.8.1",
2020-04-10 08:09:40 +02:00
"fake-simd",
2020-10-18 10:35:41 +02:00
"opaque-debug 0.2.3",
]
[[package]]
name = "sha-1"
2021-10-08 15:20:49 +02:00
version = "0.9.8"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
2020-10-18 10:35:41 +02:00
dependencies = [
"block-buffer 0.9.0",
2020-11-25 20:14:52 +01:00
"cfg-if 1.0.0",
2021-08-13 12:42:29 +02:00
"cpufeatures",
2020-10-18 10:35:41 +02:00
"digest 0.9.0",
"opaque-debug 0.3.0",
2020-04-10 08:09:40 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "sha1"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
2020-05-05 08:33:40 +02:00
[[package]]
name = "sha2"
2021-10-08 15:20:49 +02:00
version = "0.9.8"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "b69f9a4c9740d74c5baa3fd2e547f9525fa8088a8a958e0ca2409a514e33f5fa"
2020-05-05 08:33:40 +02:00
dependencies = [
"block-buffer 0.9.0",
"cfg-if 1.0.0",
2021-08-13 12:42:29 +02:00
"cpufeatures",
"digest 0.9.0",
"opaque-debug 0.3.0",
2020-05-05 08:33:40 +02:00
]
2020-08-15 23:16:05 +02:00
[[package]]
name = "shell-words"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6fa3938c99da4914afedd13bf3d79bcb6c277d1b2c398d23257a304d9e1b074"
2020-05-05 08:33:40 +02:00
[[package]]
name = "shlex"
2021-10-08 15:20:49 +02:00
version = "1.1.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
2020-05-05 08:33:40 +02:00
2020-03-27 12:17:27 +01:00
[[package]]
name = "signal-hook-registry"
2021-08-13 12:42:29 +02:00
version = "1.4.0"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"libc",
2020-03-27 12:17:27 +01:00
]
2021-01-13 22:16:22 +01:00
[[package]]
name = "simsearch"
2021-04-11 22:09:42 +02:00
version = "0.2.3"
2021-01-13 22:16:22 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "ec7c616f4afa8be07117e344990cc90651fbaad06055655f3d8cc4a668675398"
2021-01-13 22:16:22 +01:00
dependencies = [
"strsim 0.10.0",
"triple_accel",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "slab"
2021-08-13 12:42:29 +02:00
version = "0.4.4"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
2020-03-27 12:17:27 +01:00
[[package]]
name = "smallvec"
2021-10-08 15:20:49 +02:00
version = "1.7.0"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309"
2020-03-27 12:17:27 +01:00
[[package]]
name = "socket2"
version = "0.3.19"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-11-25 20:14:52 +01:00
"cfg-if 1.0.0",
2020-08-10 22:34:19 +02:00
"libc",
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
2021-08-13 14:01:00 +02:00
[[package]]
name = "socket2"
2021-10-08 15:20:49 +02:00
version = "0.4.2"
2021-08-13 14:01:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "5dc90fe6c7be1a323296982db1836d1ea9e47b6839496dde9a541bc496df3516"
2021-08-13 14:01:00 +02:00
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-05 08:33:40 +02:00
[[package]]
name = "standback"
2021-04-11 22:09:42 +02:00
version = "0.2.17"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2020-06-10 22:03:00 +02:00
dependencies = [
2021-04-11 22:09:42 +02:00
"version_check 0.9.3",
2020-06-10 22:03:00 +02:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
2021-08-13 12:42:29 +02:00
"rustc_version 0.2.3",
2020-05-05 08:33:40 +02:00
"stdweb-derive",
"stdweb-internal-macros",
"stdweb-internal-runtime",
"wasm-bindgen",
]
[[package]]
name = "stdweb-derive"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
dependencies = [
"proc-macro2",
"quote",
"serde",
"serde_derive",
"syn",
]
[[package]]
name = "stdweb-internal-macros"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
dependencies = [
"base-x",
"proc-macro2",
"quote",
"serde",
"serde_derive",
"serde_json",
"sha1",
"syn",
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
2020-04-10 08:09:40 +02:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2021-01-13 22:16:22 +01:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2020-05-05 08:33:40 +02:00
[[package]]
name = "subtle"
2021-08-13 12:42:29 +02:00
version = "2.4.1"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2020-05-05 08:33:40 +02:00
2020-03-27 12:17:27 +01:00
[[package]]
name = "syn"
2021-10-08 15:20:49 +02:00
version = "1.0.80"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "d010a1623fbd906d51d650a9916aaefc05ffa0e4053ff7fe601167f3e715d194"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-10-18 10:35:41 +02:00
"proc-macro2",
"quote",
"unicode-xid",
2020-03-27 12:17:27 +01:00
]
2020-12-18 22:31:29 +01:00
[[package]]
name = "syntect"
2021-08-13 12:42:29 +02:00
version = "4.6.0"
2020-12-18 22:31:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "8b20815bbe80ee0be06e6957450a841185fcf690fe0178f14d77a05ce2caa031"
2020-12-18 22:31:29 +01:00
dependencies = [
"bincode",
"bitflags",
"flate2",
"fnv",
"lazy_static",
"lazycell",
"onig",
"plist",
"regex-syntax",
"serde",
"serde_derive",
"serde_json",
"walkdir",
"yaml-rust",
]
[[package]]
name = "tempfile"
2021-04-11 22:09:42 +02:00
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
dependencies = [
2021-04-11 22:09:42 +02:00
"cfg-if 1.0.0",
2020-08-15 23:16:30 +02:00
"libc",
2021-08-13 12:42:29 +02:00
"rand 0.8.4",
2021-08-13 13:11:51 +02:00
"redox_syscall",
2020-08-15 23:16:30 +02:00
"remove_dir_all",
"winapi 0.3.9",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "termcolor"
2020-11-25 20:14:52 +01:00
version = "1.1.2"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-25 20:14:52 +01:00
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
2020-03-27 12:17:27 +01:00
dependencies = [
"winapi-util",
]
2020-05-23 12:19:17 +02:00
[[package]]
name = "termion"
2021-04-11 22:09:42 +02:00
version = "1.5.6"
2020-05-23 12:19:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e"
2020-05-23 12:19:17 +02:00
dependencies = [
"libc",
"numtoa",
2021-08-13 13:11:51 +02:00
"redox_syscall",
2020-05-23 12:19:17 +02:00
"redox_termios",
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
2020-10-18 10:35:41 +02:00
[[package]]
name = "thiserror"
2021-10-09 14:35:39 +02:00
version = "1.0.30"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-09 14:35:39 +02:00
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
2020-10-18 10:35:41 +02:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-10-09 14:35:39 +02:00
version = "1.0.30"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-09 14:35:39 +02:00
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
2020-10-18 10:35:41 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "threadpool"
2020-05-23 12:54:14 +02:00
version = "1.8.1"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
2020-03-27 12:17:27 +01:00
dependencies = [
"num_cpus",
]
[[package]]
name = "time"
2021-08-13 14:01:00 +02:00
version = "0.1.43"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"libc",
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "time"
2021-08-13 12:42:29 +02:00
version = "0.2.27"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
2020-05-05 08:33:40 +02:00
dependencies = [
2020-10-18 10:35:41 +02:00
"const_fn",
2020-08-10 22:34:19 +02:00
"libc",
"standback",
"stdweb",
"time-macros",
2021-04-11 22:09:42 +02:00
"version_check 0.9.3",
2020-08-10 22:34:19 +02:00
"winapi 0.3.9",
2020-05-05 08:33:40 +02:00
]
[[package]]
name = "time-macros"
2020-10-18 10:35:41 +02:00
version = "0.1.1"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 10:35:41 +02:00
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
2020-05-05 08:33:40 +02:00
dependencies = [
"proc-macro-hack",
"time-macros-impl",
]
[[package]]
name = "time-macros-impl"
2021-08-13 12:42:29 +02:00
version = "0.1.2"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
2020-05-05 08:33:40 +02:00
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"standback",
"syn",
]
2020-06-24 12:41:01 +02:00
[[package]]
name = "tinyvec"
2021-10-08 15:20:49 +02:00
version = "1.5.0"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "f83b2a3d4d9091d0abd7eba4dc2710b1718583bd4d8992e2190720ea38f391f7"
2020-10-18 10:35:41 +02: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-03-27 12:17:27 +01:00
[[package]]
name = "tokio"
2021-04-11 22:09:42 +02:00
version = "0.2.25"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-08-10 22:34:19 +02:00
"fnv",
"futures-core",
"iovec",
"lazy_static",
"libc",
"memchr",
2021-08-13 14:01:00 +02:00
"mio 0.6.23",
2020-08-10 22:34:19 +02:00
"mio-uds",
2021-04-11 22:09:42 +02:00
"pin-project-lite 0.1.12",
2020-08-10 22:34:19 +02:00
"signal-hook-registry",
"slab",
2021-08-13 14:01:00 +02:00
"winapi 0.3.9",
]
[[package]]
name = "tokio"
2021-10-08 15:20:49 +02:00
version = "1.12.0"
2021-08-13 14:01:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "c2c2416fdedca8443ae44b4527de1ea633af61d8f7169ffa6e72c5b53d24efcc"
2021-08-13 14:01:00 +02:00
dependencies = [
"autocfg 1.0.1",
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
2021-08-13 14:01:00 +02:00
"libc",
"memchr",
"mio 0.7.13",
"num_cpus",
"once_cell",
"pin-project-lite 0.2.7",
"signal-hook-registry",
2020-08-10 22:34:19 +02:00
"tokio-macros",
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "tokio-macros"
2021-10-08 15:20:49 +02:00
version = "1.4.1"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "154794c8f499c2619acd19e839294703e9e32e7630ef5f46ea80d4ef0fbee5eb"
2020-05-05 08:33:40 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
2021-08-13 14:01:00 +02:00
name = "tokio-native-tls"
version = "0.3.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
2020-05-05 08:33:40 +02:00
dependencies = [
"native-tls",
2021-10-08 15:20:49 +02:00
"tokio 1.12.0",
2020-05-05 08:33:40 +02:00
]
2020-05-23 12:54:14 +02:00
[[package]]
name = "tokio-util"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
dependencies = [
2021-04-11 22:09:42 +02:00
"bytes 0.5.6",
2020-05-23 12:54:14 +02:00
"futures-core",
2020-10-18 10:35:41 +02:00
"futures-io",
2020-05-23 12:54:14 +02:00
"futures-sink",
"log",
2021-04-11 22:09:42 +02:00
"pin-project-lite 0.1.12",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
]
[[package]]
name = "tokio-util"
2021-10-08 15:20:49 +02:00
version = "0.6.8"
2021-08-13 14:01:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "08d3725d3efa29485e87311c5b699de63cde14b00ed4d256b8318aa30ca452cd"
2021-08-13 14:01:00 +02:00
dependencies = [
2021-10-08 15:20:49 +02:00
"bytes 1.1.0",
2021-08-13 14:01:00 +02:00
"futures-core",
"futures-sink",
"log",
"pin-project-lite 0.2.7",
2021-10-08 15:20:49 +02:00
"tokio 1.12.0",
2020-05-23 12:54:14 +02:00
]
[[package]]
name = "toml"
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
dependencies = [
2020-08-10 22:34:19 +02:00
"serde",
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "tower-service"
2021-04-11 22:09:42 +02:00
version = "0.3.1"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2020-05-05 08:33:40 +02:00
[[package]]
name = "tracing"
2021-10-08 15:20:49 +02:00
version = "0.1.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
dependencies = [
"cfg-if 1.0.0",
2020-08-15 23:16:30 +02:00
"log",
2021-08-13 12:42:29 +02:00
"pin-project-lite 0.2.7",
2020-08-15 23:16:30 +02:00
"tracing-core",
]
[[package]]
name = "tracing-core"
2021-10-08 15:20:49 +02:00
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
dependencies = [
2020-10-18 10:35:41 +02:00
"lazy_static",
]
2020-11-25 20:14:52 +01:00
[[package]]
name = "tracing-futures"
2021-04-11 22:09:42 +02:00
version = "0.2.5"
2020-11-25 20:14:52 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
2020-11-25 20:14:52 +01:00
dependencies = [
2021-08-13 12:42:29 +02:00
"pin-project 1.0.8",
2020-11-25 20:14:52 +01:00
"tracing",
]
2021-01-13 22:16:22 +01:00
[[package]]
name = "triple_accel"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622b09ce2fe2df4618636fb92176d205662f59803f39e70d1c333393082de96c"
2020-10-18 10:35:41 +02:00
[[package]]
name = "trust-dns-proto"
2021-04-11 22:09:42 +02:00
version = "0.19.7"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "1cad71a0c0d68ab9941d2fb6e82f8fb2e86d9945b94e1661dd0aaea2b88215a9"
2020-10-18 10:35:41 +02:00
dependencies = [
"async-trait",
2021-04-11 22:09:42 +02:00
"cfg-if 1.0.0",
2020-10-18 10:35:41 +02:00
"enum-as-inner",
"futures",
2020-10-18 10:35:41 +02:00
"idna",
"lazy_static",
"log",
"rand 0.7.3",
"smallvec",
"thiserror",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
2020-10-18 10:35:41 +02:00
"url",
]
[[package]]
name = "trust-dns-resolver"
2021-04-11 22:09:42 +02:00
version = "0.19.7"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "710f593b371175db53a26d0b38ed2978fafb9e9e8d3868b1acd753ea18df0ceb"
2020-10-18 10:35:41 +02:00
dependencies = [
"cfg-if 0.1.10",
"futures",
2020-03-27 12:17:27 +01:00
"ipconfig",
"lazy_static",
"log",
2020-03-27 12:17:27 +01:00
"lru-cache",
2021-08-13 13:11:51 +02:00
"resolv-conf",
2020-03-27 12:17:27 +01:00
"smallvec",
2020-10-18 10:35:41 +02:00
"thiserror",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
2021-08-13 13:11:51 +02:00
"trust-dns-proto",
2020-03-27 12:17:27 +01:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "try-lock"
version = "0.2.3"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
2020-05-05 08:33:40 +02:00
2020-05-23 12:19:17 +02:00
[[package]]
name = "tui"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9533d39bef0ae8f510e8a99d78702e68d1bbf0b98a78ec9740509d287010ae1e"
dependencies = [
"bitflags",
"cassowary",
"either",
"itertools",
"termion",
"unicode-segmentation",
"unicode-width",
]
2020-04-10 08:09:40 +02:00
[[package]]
name = "twoway"
2021-08-13 12:42:29 +02:00
version = "0.2.2"
2020-04-10 08:09:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47"
2020-04-10 08:09:40 +02:00
dependencies = [
"memchr",
2020-04-10 08:09:40 +02:00
"unchecked-index",
]
[[package]]
name = "typed-arena"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9b2228007eba4120145f785df0f6c92ea538f5a3635a612ecf4e334c8c1446d"
[[package]]
name = "typenum"
2021-10-08 15:20:49 +02:00
version = "1.14.0"
2020-04-10 08:09:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec"
2020-04-10 08:09:40 +02:00
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
[[package]]
name = "unchecked-index"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c"
2020-03-30 08:16:26 +02:00
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
2021-04-11 22:09:42 +02:00
"version_check 0.9.3",
2020-03-30 08:16:26 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "unicode-bidi"
2021-10-08 15:20:49 +02:00
version = "0.3.7"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
2020-03-27 12:17:27 +01:00
[[package]]
name = "unicode-normalization"
2021-08-13 12:42:29 +02:00
version = "0.1.19"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-11-25 20:14:52 +01:00
"tinyvec",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "unicode-segmentation"
2021-08-13 12:42:29 +02:00
version = "1.8.0"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
2020-03-27 12:17:27 +01:00
2020-03-30 08:16:26 +02:00
[[package]]
name = "unicode-width"
2021-10-08 15:20:49 +02:00
version = "0.1.9"
2020-03-30 08:16:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2020-03-30 08:16:26 +02:00
2020-03-27 12:17:27 +01:00
[[package]]
name = "unicode-xid"
2021-08-13 12:42:29 +02:00
version = "0.2.2"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2020-03-27 12:17:27 +01:00
2020-04-10 08:09:40 +02:00
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2020-03-27 12:17:27 +01:00
[[package]]
name = "url"
2021-08-13 12:42:29 +02:00
version = "2.2.2"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-11-25 20:14:52 +01:00
"form_urlencoded",
"idna",
2020-03-27 12:17:27 +01:00
"matches",
"percent-encoding",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "uuid"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1436e58182935dcd9ce0add9ea0b558e8a87befe01c1a301e6020aeb0876363"
dependencies = [
2020-10-18 10:35:41 +02:00
"cfg-if 0.1.10",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "uuid"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
dependencies = [
"rand 0.6.5",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "uuid"
2021-04-11 22:09:42 +02:00
version = "0.8.2"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
2020-03-27 12:17:27 +01:00
dependencies = [
2021-08-13 12:42:29 +02:00
"getrandom 0.2.3",
2020-03-27 12:17:27 +01:00
"serde",
2020-04-16 16:11:19 +02:00
"sha1",
2020-03-27 12:17:27 +01:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "v_escape"
version = "0.15.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3e0ab5fab1db278a9413d2ea794cb66f471f898c5b020c3c394f6447625d9d4"
2020-05-05 08:33:40 +02:00
dependencies = [
2020-10-18 10:35:41 +02:00
"buf-min",
2020-05-05 08:33:40 +02:00
"v_escape_derive",
]
[[package]]
name = "v_escape_derive"
2020-10-18 10:35:41 +02:00
version = "0.8.4"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 10:35:41 +02:00
checksum = "c860ad1273f4eee7006cee05db20c9e60e5d24cba024a32e1094aa8e574f3668"
2020-05-05 08:33:40 +02:00
dependencies = [
"nom",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "v_htmlescape"
version = "0.12.0"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f9a8af610ad6f7fc9989c9d2590d9764bc61f294884e9ee93baa58795174572"
2020-05-05 08:33:40 +02:00
dependencies = [
2020-10-18 10:35:41 +02:00
"cfg-if 1.0.0",
2020-05-05 08:33:40 +02:00
"v_escape",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "vcpkg"
2021-08-13 12:42:29 +02:00
version = "0.2.15"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020-03-27 12:17:27 +01:00
2020-04-10 08:09:40 +02:00
[[package]]
name = "vec_map"
2020-05-23 12:54:14 +02:00
version = "0.8.2"
2020-04-10 08:09:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2020-04-10 08:09:40 +02:00
2020-03-30 08:16:26 +02:00
[[package]]
name = "version_check"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
[[package]]
name = "version_check"
2021-04-11 22:09:42 +02:00
version = "0.9.3"
2020-03-30 08:16:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2020-03-30 08:16:26 +02:00
2020-04-23 14:26:43 +02:00
[[package]]
name = "walkdir"
2021-04-11 22:09:42 +02:00
version = "2.3.2"
2020-04-23 14:26:43 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
2020-04-23 14:26:43 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"same-file",
"winapi 0.3.9",
"winapi-util",
2020-04-23 14:26:43 +02:00
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
2020-05-05 08:33:40 +02:00
"try-lock",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2020-10-18 10:35:41 +02:00
[[package]]
name = "wasi"
2021-08-13 14:01:00 +02:00
version = "0.10.2+wasi-snapshot-preview1"
2020-10-18 10:35:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 14:01:00 +02:00
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2020-10-18 10:35:41 +02:00
2020-03-29 19:56:55 +02:00
[[package]]
name = "wasm-bindgen"
2021-10-08 15:20:49 +02:00
version = "0.2.78"
2020-03-29 19:56:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"
2020-03-29 19:56:55 +02:00
dependencies = [
"cfg-if 1.0.0",
2021-10-09 14:35:39 +02:00
"serde",
"serde_json",
2020-08-10 22:34:19 +02:00
"wasm-bindgen-macro",
2020-03-29 19:56:55 +02:00
]
[[package]]
name = "wasm-bindgen-backend"
2021-10-08 15:20:49 +02:00
version = "0.2.78"
2020-03-29 19:56:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"
2020-03-29 19:56:55 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2020-03-29 19:56:55 +02:00
]
2020-03-30 08:16:26 +02:00
[[package]]
name = "wasm-bindgen-futures"
2021-10-08 15:20:49 +02:00
version = "0.4.28"
2020-03-30 08:16:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "8e8d7523cb1f2a4c96c1317ca690031b714a51cc14e05f712446691f413f5d39"
2020-03-30 08:16:26 +02:00
dependencies = [
"cfg-if 1.0.0",
2020-08-10 22:34:19 +02:00
"js-sys",
"wasm-bindgen",
"web-sys",
2020-03-30 08:16:26 +02:00
]
2020-03-29 19:56:55 +02:00
[[package]]
name = "wasm-bindgen-macro"
2021-10-08 15:20:49 +02:00
version = "0.2.78"
2020-03-29 19:56:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
2020-03-29 19:56:55 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"quote",
"wasm-bindgen-macro-support",
2020-03-29 19:56:55 +02:00
]
[[package]]
name = "wasm-bindgen-macro-support"
2021-10-08 15:20:49 +02:00
version = "0.2.78"
2020-03-29 19:56:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
2020-03-29 19:56:55 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-03-29 19:56:55 +02:00
]
[[package]]
name = "wasm-bindgen-shared"
2021-10-08 15:20:49 +02:00
version = "0.2.78"
2020-03-29 19:56:55 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"
2020-03-29 19:56:55 +02:00
2020-05-01 23:10:54 +02:00
[[package]]
name = "wasm-bindgen-test"
2021-10-08 15:20:49 +02:00
version = "0.3.28"
2020-05-01 23:10:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "96f1aa7971fdf61ef0f353602102dbea75a56e225ed036c1e3740564b91e6b7e"
2020-05-01 23:10:54 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"console_error_panic_hook",
"js-sys",
"scoped-tls",
"wasm-bindgen",
"wasm-bindgen-futures",
"wasm-bindgen-test-macro",
2020-05-01 23:10:54 +02:00
]
[[package]]
name = "wasm-bindgen-test-macro"
2021-10-08 15:20:49 +02:00
version = "0.3.28"
2020-05-01 23:10:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "6006f79628dfeb96a86d4db51fbf1344cd7fd8408f06fc9aa3c84913a4789688"
2020-05-01 23:10:54 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"proc-macro2",
"quote",
2020-05-01 23:10:54 +02:00
]
[[package]]
name = "wasm-logger"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "074649a66bb306c8f2068c9016395fa65d8e08d2affcbf95acf3c24c3ab19718"
dependencies = [
"log",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "web-actor"
version = "0.1.0"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
"actix-multipart",
"amazon-actor",
"bincode",
2021-08-13 12:42:29 +02:00
"common",
"database-actor",
"filesystem-actor",
"futures",
"jirs-config",
"jirs-data",
"libc",
"mail-actor",
"openssl-sys",
"serde",
2021-08-13 14:01:00 +02:00
"tokio 0.2.25",
"toml",
2021-04-11 22:09:42 +02:00
"uuid 0.8.2",
"websocket-actor",
]
2020-03-30 08:16:26 +02:00
[[package]]
name = "web-sys"
2021-10-08 15:20:49 +02:00
version = "0.3.55"
2020-03-30 08:16:26 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb"
2020-03-30 08:16:26 +02:00
dependencies = [
2020-08-10 22:34:19 +02:00
"js-sys",
"wasm-bindgen",
2020-03-30 08:16:26 +02:00
]
[[package]]
name = "websocket-actor"
version = "0.1.0"
dependencies = [
2021-08-13 13:11:51 +02:00
"actix",
2021-08-13 17:11:25 +02:00
"async-trait",
"bincode",
2021-08-13 12:42:29 +02:00
"common",
"comrak",
"database-actor",
"flate2",
"futures",
"highlight-actor",
"jirs-config",
"jirs-data",
"lazy_static",
"libc",
"mail-actor",
"openssl-sys",
"serde",
"syntect",
"toml",
2021-04-11 22:09:42 +02:00
"uuid 0.8.2",
]
2020-06-24 12:41:01 +02:00
[[package]]
name = "wee_alloc"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e"
dependencies = [
2020-10-18 10:35:41 +02:00
"cfg-if 0.1.10",
2020-08-10 22:34:19 +02:00
"libc",
"memory_units",
"spin",
2020-08-10 22:34:19 +02:00
"winapi 0.3.9",
2020-06-24 12:41:01 +02:00
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "widestring"
2020-10-18 10:35:41 +02:00
version = "0.4.3"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-18 10:35:41 +02:00
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
2020-03-27 12:17:27 +01:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
[[package]]
name = "winapi"
version = "0.3.9"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
2020-05-23 12:54:14 +02:00
version = "0.1.5"
2020-03-27 12:17:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-23 12:54:14 +02:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2020-03-27 12:17:27 +01:00
dependencies = [
2020-08-10 22:34:19 +02:00
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "winreg"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
dependencies = [
2020-08-10 22:34:19 +02:00
"winapi 0.3.9",
2020-03-27 12:17:27 +01:00
]
[[package]]
name = "winutil"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7daf138b6b14196e3830a588acf1e86966c694d3e8fb026fb105b8b5dca07e6e"
dependencies = [
2020-08-10 22:34:19 +02:00
"winapi 0.3.9",
]
2020-03-27 12:17:27 +01:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
2020-08-15 23:16:30 +02:00
"winapi 0.2.8",
"winapi-build",
2020-03-27 12:17:27 +01:00
]
2020-05-05 08:33:40 +02:00
2020-08-15 23:16:05 +02:00
[[package]]
name = "xdg"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57"
2020-05-05 08:33:40 +02:00
[[package]]
name = "xml-rs"
2021-08-13 12:42:29 +02:00
version = "0.8.4"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-13 12:42:29 +02:00
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
2020-05-05 08:33:40 +02:00
2020-10-23 11:36:34 +02:00
[[package]]
name = "yaml-rust"
2021-04-11 22:09:42 +02:00
version = "0.4.5"
2020-10-23 11:36:34 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-11 22:09:42 +02:00
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
2020-10-23 11:36:34 +02:00
dependencies = [
"linked-hash-map",
]
2020-05-05 08:33:40 +02:00
[[package]]
name = "zeroize"
2021-10-08 15:20:49 +02:00
version = "1.4.2"
2020-05-05 08:33:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 15:20:49 +02:00
checksum = "bf68b08513768deaa790264a7fac27a58cbf2705cfcdc9448362229217d7e970"