martin/Cargo.lock

2732 lines
66 KiB
Plaintext
Raw Normal View History

2019-04-12 13:48:54 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-07-22 21:44:26 +03:00
version = 3
2018-02-21 13:37:31 +03:00
[[package]]
name = "actix"
version = "0.10.0"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1be241f88f3b1e7e9a3fbe3b5a8a0f6915b5a1d7ee0d9a248d3376d01068cc60"
dependencies = [
"actix-rt",
"actix_derive",
"bitflags",
"bytes 0.5.6",
2020-10-31 13:07:04 +03:00
"crossbeam-channel 0.4.4",
"derive_more",
"futures-channel",
"futures-util",
"log",
"once_cell",
"parking_lot",
2022-01-01 20:43:04 +03:00
"pin-project 0.4.29",
"smallvec",
"tokio 0.2.25",
"tokio-util 0.3.1",
"trust-dns-proto",
"trust-dns-resolver",
]
2020-09-27 11:31:53 +03:00
[[package]]
name = "actix-codec"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78d1833b3838dbe990df0f1f87baf640cf6146e898166afe401839d1b001e570"
2020-09-27 11:31:53 +03:00
dependencies = [
"bitflags",
"bytes 0.5.6",
"futures-core",
"futures-sink",
"log",
2022-01-01 20:43:04 +03:00
"pin-project 0.4.29",
"tokio 0.2.25",
"tokio-util 0.3.1",
2020-09-27 11:31:53 +03:00
]
[[package]]
name = "actix-connect"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "177837a10863f15ba8d3ae3ec12fac1099099529ed20083a27fdfe247381d0dc"
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
"derive_more",
"either",
"futures-util",
"http",
"log",
"trust-dns-proto",
"trust-dns-resolver",
]
[[package]]
name = "actix-cors"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36b133d8026a9f209a9aeeeacd028e7451bcca975f592881b305d37983f303d7"
dependencies = [
"actix-web",
"derive_more",
"futures-util",
"log",
"once_cell",
"tinyvec",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "actix-http"
2022-02-12 17:25:52 +03:00
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "2be6b66b62a794a8e6d366ac9415bb7d475ffd1e9f4671f38c1d8a8a5df950b3"
dependencies = [
"actix-codec",
"actix-connect",
"actix-rt",
"actix-service",
"actix-threadpool",
"actix-utils",
"base64",
"bitflags",
2022-02-12 17:25:52 +03:00
"brotli",
"bytes 0.5.6",
"cookie",
"copyless",
"derive_more",
"either",
"encoding_rs",
"flate2",
"futures-channel",
"futures-core",
"futures-util",
"fxhash",
"h2",
"http",
"httparse",
"indexmap",
2022-01-01 20:43:04 +03:00
"itoa 0.4.8",
"language-tags",
"lazy_static",
"log",
"mime",
"percent-encoding",
2022-01-01 20:43:04 +03:00
"pin-project 1.0.10",
"rand 0.7.3",
"regex",
"serde",
"serde_json",
"serde_urlencoded",
"sha-1",
"slab",
"time",
]
[[package]]
name = "actix-macros"
2020-12-20 15:45:58 +03:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-20 15:45:58 +03:00
checksum = "b4ca8ce00b267af8ccebbd647de0d61e0674b6e61185cc7a592ff88772bed655"
dependencies = [
"quote",
"syn",
]
[[package]]
name = "actix-router"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ad299af73649e1fc893e333ccf86f377751eb95ff875d095131574c6f43452c"
dependencies = [
"bytestring",
"http",
"log",
"regex",
"serde",
]
[[package]]
name = "actix-rt"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "143fcc2912e0d1de2bcf4e2f720d2a60c28652ab4179685a1ee159e0fb3db227"
dependencies = [
"actix-macros",
"actix-threadpool",
"copyless",
"futures-channel",
"futures-util",
"smallvec",
"tokio 0.2.25",
]
[[package]]
name = "actix-server"
2020-09-27 11:31:53 +03:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45407e6e672ca24784baa667c5d32ef109ccdd8d5e0b5ebb9ef8a67f4dfb708e"
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
"futures-channel",
"futures-util",
"log",
"mio 0.6.23",
"mio-uds",
"num_cpus",
"slab",
"socket2 0.3.19",
]
[[package]]
name = "actix-service"
2020-09-13 19:42:44 +03:00
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0052435d581b5be835d11f4eb3bce417c8af18d87ddf8ace99f8e67e595882bb"
dependencies = [
"futures-util",
2022-01-01 20:43:04 +03:00
"pin-project 0.4.29",
]
[[package]]
name = "actix-testing"
2020-06-07 13:08:12 +03:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47239ca38799ab74ee6a8a94d1ce857014b2ac36f242f70f3f75a66f691e791c"
dependencies = [
"actix-macros",
"actix-rt",
"actix-server",
"actix-service",
"log",
"socket2 0.3.19",
]
[[package]]
name = "actix-threadpool"
2020-09-13 19:42:44 +03:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d209f04d002854b9afd3743032a27b066158817965bf5d036824d19ac2cc0e30"
dependencies = [
"derive_more",
"futures-channel",
"lazy_static",
"log",
"num_cpus",
"parking_lot",
"threadpool",
]
[[package]]
name = "actix-tls"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24789b7d7361cf5503a504ebe1c10806896f61e96eca9a7350e23001aca715fb"
dependencies = [
"actix-codec",
"actix-service",
"actix-utils",
"futures-util",
]
2020-09-27 11:31:53 +03:00
[[package]]
name = "actix-utils"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9022dec56632d1d7979e59af14f0597a28a830a9c1c7fec8b2327eb9f16b5a"
2020-09-27 11:31:53 +03:00
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"bitflags",
"bytes 0.5.6",
"either",
"futures-channel",
"futures-sink",
"futures-util",
"log",
2022-01-01 20:43:04 +03:00
"pin-project 0.4.29",
"slab",
]
[[package]]
name = "actix-web"
2022-01-01 20:43:04 +03:00
version = "3.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "b6534a126df581caf443ba2751cab42092c89b3f1d06a9d829b1e17edfe3e277"
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-testing",
"actix-threadpool",
"actix-tls",
"actix-utils",
"actix-web-codegen",
"awc",
"bytes 0.5.6",
"derive_more",
"encoding_rs",
"futures-channel",
"futures-core",
"futures-util",
"fxhash",
"log",
"mime",
2022-01-01 20:43:04 +03:00
"pin-project 1.0.10",
"regex",
"serde",
"serde_json",
"serde_urlencoded",
"socket2 0.3.19",
"time",
"tinyvec",
"url",
]
[[package]]
name = "actix-web-codegen"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad26f77093333e0e7c6ffe54ebe3582d908a104e448723eec6d43d08b07143fb"
dependencies = [
"proc-macro2",
"quote",
"syn",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "actix_derive"
version = "0.5.0"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b95aceadaf327f18f0df5962fedc1bde2f870566a0b9f65c89508a3b1f79334c"
2018-02-21 13:37:31 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2020-06-07 13:08:12 +03:00
]
2020-07-05 12:33:47 +03:00
[[package]]
name = "adler"
version = "1.0.2"
2018-10-17 12:11:23 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2018-10-17 12:11:23 +03:00
2017-10-09 14:29:03 +03:00
[[package]]
name = "aho-corasick"
2021-07-16 16:08:46 +03:00
version = "0.7.18"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2017-10-09 14:29:03 +03:00
dependencies = [
"memchr",
2017-09-30 13:55:44 +03:00
]
2022-02-12 17:25:52 +03:00
[[package]]
name = "alloc-no-stdlib"
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
[[package]]
name = "alloc-stdlib"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
dependencies = [
"alloc-no-stdlib",
]
2018-01-19 14:06:01 +03:00
[[package]]
name = "async-trait"
2022-01-01 20:43:04 +03:00
version = "0.1.52"
2018-01-19 14:06:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3"
2018-01-19 14:06:01 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2018-01-19 14:06:01 +03:00
]
2018-12-18 16:59:42 +03:00
[[package]]
name = "atty"
version = "0.2.14"
2018-12-18 16:59:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi 0.3.9",
]
2018-12-18 16:59:42 +03:00
2020-01-11 12:05:45 +03:00
[[package]]
name = "autocfg"
2022-02-12 17:25:52 +03:00
version = "1.1.0"
2020-01-11 12:05:45 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-01-11 12:05:45 +03:00
[[package]]
name = "awc"
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b381e490e7b0cfc37ebc54079b0413d8093ef43d14a4e4747083f7fa47a9e691"
dependencies = [
"actix-codec",
"actix-http",
"actix-rt",
"actix-service",
"base64",
"bytes 0.5.6",
"cfg-if 1.0.0",
"derive_more",
"futures-core",
"log",
"mime",
"percent-encoding",
"rand 0.7.3",
"serde",
"serde_json",
"serde_urlencoded",
2018-02-21 13:37:31 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "base-x"
2020-12-20 15:45:58 +03:00
version = "0.2.8"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-20 15:45:58 +03:00
checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"
2017-09-30 13:55:44 +03:00
[[package]]
name = "base64"
2020-10-31 13:07:04 +03:00
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 13:07:04 +03:00
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2017-10-09 14:29:03 +03:00
[[package]]
name = "bitflags"
2021-09-14 14:25:53 +03:00
version = "1.3.2"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2017-10-09 14:29:03 +03:00
[[package]]
name = "block-buffer"
2020-09-13 19:42:44 +03:00
version = "0.9.0"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
2017-10-09 14:29:03 +03:00
dependencies = [
2020-10-31 13:07:04 +03:00
"generic-array",
]
2022-01-01 20:43:04 +03:00
[[package]]
name = "block-buffer"
2022-02-12 17:25:52 +03:00
version = "0.10.2"
2022-01-01 20:43:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
2022-01-01 20:43:04 +03:00
dependencies = [
"generic-array",
]
2018-01-22 20:01:44 +03:00
[[package]]
2022-02-12 17:25:52 +03:00
name = "brotli"
version = "3.3.3"
2018-01-22 20:01:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "f838e47a451d5a8fa552371f80024dd6ace9b7acdf25c4c3d0f9bc6816fb1c39"
2018-01-22 20:01:44 +03:00
dependencies = [
2022-02-12 17:25:52 +03:00
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
2018-02-21 13:37:31 +03:00
]
[[package]]
2022-02-12 17:25:52 +03:00
name = "brotli-decompressor"
version = "2.3.2"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
2018-02-21 13:37:31 +03:00
dependencies = [
2022-02-12 17:25:52 +03:00
"alloc-no-stdlib",
"alloc-stdlib",
2018-01-22 20:01:44 +03:00
]
[[package]]
name = "bstr"
2021-09-29 16:28:11 +03:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-29 16:28:11 +03:00
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
dependencies = [
"lazy_static",
"memchr",
"regex-automata",
"serde",
]
[[package]]
name = "bumpalo"
2022-02-12 17:25:52 +03:00
version = "3.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
2017-09-30 13:55:44 +03:00
[[package]]
name = "byteorder"
version = "1.4.3"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2017-09-30 13:55:44 +03:00
[[package]]
name = "bytes"
2020-09-13 19:42:44 +03:00
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
[[package]]
name = "bytes"
2021-09-14 14:25:53 +03:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
[[package]]
name = "bytestring"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90706ba19e97b90786e19dc0d5e2abd80008d99d4c0c5d1ad0b5e72cec7c494d"
dependencies = [
2021-09-14 14:25:53 +03:00
"bytes 1.1.0",
]
[[package]]
name = "cargo-husky"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b02b629252fe8ef6460461409564e2c21d0c8e77e0944f3d189ff06c4e932ad"
[[package]]
name = "cast"
2021-07-16 16:08:46 +03:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "4c24dab4283a142afa2fdca129b80ad2c6284e073930f964c3a1293c225ee39a"
2019-11-17 12:49:01 +03:00
dependencies = [
2021-07-16 16:08:46 +03:00
"rustc_version 0.4.0",
2019-11-17 12:49:01 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "cc"
2021-11-15 10:18:49 +03:00
version = "1.0.72"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-15 10:18:49 +03:00
checksum = "22a9137b95ea06864e018375b72adfb7db6e6f68cfc8df5a04d00288050485ee"
2018-02-21 13:37:31 +03:00
2018-01-18 13:42:06 +03:00
[[package]]
name = "cfg-if"
2019-09-30 12:50:12 +03:00
version = "0.1.10"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2018-01-18 13:42:06 +03:00
2020-10-31 13:07:04 +03:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
2022-01-01 20:43:04 +03:00
version = "2.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
"bitflags",
"textwrap",
"unicode-width",
]
2020-09-13 19:42:44 +03:00
[[package]]
name = "const_fn"
2022-02-12 17:25:52 +03:00
version = "0.4.9"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
dependencies = [
"percent-encoding",
"time",
"version_check",
]
2020-09-13 19:42:44 +03:00
2017-10-09 14:29:03 +03:00
[[package]]
name = "copyless"
2020-06-07 13:08:12 +03:00
version = "0.1.5"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2df960f5d869b2dd8532793fde43eb5427cceb126c929747a26823ab0eeb536"
2017-10-09 14:29:03 +03:00
2020-09-13 19:42:44 +03:00
[[package]]
2021-07-16 16:08:46 +03:00
name = "cpufeatures"
2021-09-14 14:25:53 +03:00
version = "0.2.1"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
2021-07-16 16:08:46 +03:00
dependencies = [
"libc",
]
2020-09-13 19:42:44 +03:00
2018-12-07 18:52:18 +03:00
[[package]]
name = "crc32fast"
2022-02-12 17:25:52 +03:00
version = "1.3.2"
2018-12-07 18:52:18 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2018-12-07 18:52:18 +03:00
dependencies = [
2020-10-31 13:07:04 +03:00
"cfg-if 1.0.0",
2019-02-04 11:53:06 +03:00
]
[[package]]
name = "criterion"
2021-09-14 14:25:53 +03:00
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "1604dafd25fba2fe2d5895a9da139f8dc9b319a5fe5354ca137cbbce4e178d10"
dependencies = [
"atty",
"cast",
"clap",
"criterion-plot",
"csv",
2021-07-23 11:04:34 +03:00
"futures",
2021-09-14 14:25:53 +03:00
"itertools",
"lazy_static",
"num-traits",
"oorandom",
"plotters",
"rayon",
"regex",
"serde",
"serde_cbor",
"serde_derive",
"serde_json",
"tinytemplate",
2022-02-12 17:25:52 +03:00
"tokio 1.16.1",
"walkdir",
]
[[package]]
name = "criterion-plot"
2021-09-14 14:25:53 +03:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "d00996de9f2f7559f7f4dc286073197f83e92256a59ed395f9aac01fe717da57"
dependencies = [
"cast",
2021-09-14 14:25:53 +03:00
"itertools",
]
2019-02-04 11:53:06 +03:00
[[package]]
name = "crossbeam-channel"
2020-09-13 19:42:44 +03:00
version = "0.4.4"
2019-02-04 11:53:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
2019-02-04 11:53:06 +03:00
dependencies = [
2020-10-31 13:07:04 +03:00
"crossbeam-utils 0.7.2",
"maybe-uninit",
2018-02-21 13:37:31 +03:00
]
2020-10-31 13:07:04 +03:00
[[package]]
name = "crossbeam-channel"
2022-02-12 17:25:52 +03:00
version = "0.5.2"
2020-10-31 13:07:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa"
2020-10-31 13:07:04 +03:00
dependencies = [
"cfg-if 1.0.0",
2022-02-12 17:25:52 +03:00
"crossbeam-utils 0.8.7",
2020-10-31 13:07:04 +03:00
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "crossbeam-deque"
2021-09-14 14:25:53 +03:00
version = "0.8.1"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
2018-03-13 14:32:09 +03:00
dependencies = [
2020-10-31 13:07:04 +03:00
"cfg-if 1.0.0",
"crossbeam-epoch",
2022-02-12 17:25:52 +03:00
"crossbeam-utils 0.8.7",
2018-03-13 14:32:09 +03:00
]
[[package]]
name = "crossbeam-epoch"
2022-02-12 17:25:52 +03:00
version = "0.9.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "c00d6d2ea26e8b151d99093005cb442fb9a37aeaca582a03ec70946f49ab5ed9"
dependencies = [
2020-10-31 13:07:04 +03:00
"cfg-if 1.0.0",
2022-02-12 17:25:52 +03:00
"crossbeam-utils 0.8.7",
"lazy_static",
"memoffset",
"scopeguard",
]
2019-11-07 20:54:06 +03:00
[[package]]
name = "crossbeam-utils"
2020-02-22 12:31:17 +03:00
version = "0.7.2"
2019-11-07 20:54:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
2019-11-07 20:54:06 +03:00
dependencies = [
"autocfg",
2020-10-31 13:07:04 +03:00
"cfg-if 0.1.10",
"lazy_static",
2019-11-07 20:54:06 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
2020-10-31 13:07:04 +03:00
name = "crossbeam-utils"
2022-02-12 17:25:52 +03:00
version = "0.8.7"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "b5e5bed1f1c269533fa816a0a5492b3545209a205ca1a54842be180eb63a16a6"
2017-10-09 14:29:03 +03:00
dependencies = [
2020-10-31 13:07:04 +03:00
"cfg-if 1.0.0",
"lazy_static",
]
[[package]]
2022-01-01 20:43:04 +03:00
name = "crypto-common"
2022-02-12 17:25:52 +03:00
version = "0.1.2"
2020-10-31 13:07:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "a4600d695eb3f6ce1cd44e6e291adceb2cc3ab12f20a33777ecd0bf6eba34e06"
2020-10-31 13:07:04 +03:00
dependencies = [
"generic-array",
2017-10-09 14:29:03 +03:00
]
[[package]]
name = "csv"
version = "1.1.6"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
2017-10-09 14:29:03 +03:00
dependencies = [
"bstr",
"csv-core",
2022-01-01 20:43:04 +03:00
"itoa 0.4.8",
"ryu",
"serde",
2017-10-09 14:29:03 +03:00
]
2018-10-10 19:13:53 +03:00
[[package]]
name = "csv-core"
2020-02-17 12:05:02 +03:00
version = "0.1.10"
2018-10-10 19:13:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
2018-10-10 19:13:53 +03:00
dependencies = [
"memchr",
2018-10-10 19:13:53 +03:00
]
2017-12-17 13:51:07 +03:00
[[package]]
name = "derive_more"
2022-01-01 20:43:04 +03:00
version = "0.99.17"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
2018-03-13 14:32:09 +03:00
dependencies = [
"convert_case",
"proc-macro2",
"quote",
2022-01-01 20:43:04 +03:00
"rustc_version 0.4.0",
"syn",
2018-03-13 14:32:09 +03:00
]
[[package]]
name = "digest"
2020-09-13 19:42:44 +03:00
version = "0.9.0"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
2018-03-13 14:32:09 +03:00
dependencies = [
2020-10-31 13:07:04 +03:00
"generic-array",
2018-03-13 14:32:09 +03:00
]
2022-01-01 20:43:04 +03:00
[[package]]
name = "digest"
2022-02-12 17:25:52 +03:00
version = "0.10.2"
2022-01-01 20:43:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "8cb780dce4f9a8f5c087362b3a4595936b2019e7c8b30f2c3e9a7e94e6ae9837"
2022-01-01 20:43:04 +03:00
dependencies = [
2022-02-12 17:25:52 +03:00
"block-buffer 0.10.2",
2022-01-01 20:43:04 +03:00
"crypto-common",
"subtle",
]
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
2018-03-13 14:32:09 +03:00
[[package]]
name = "docopt"
version = "1.1.1"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f3f119846c823f9eafcf953a8f6ffb6ed69bf6240883261a7f13b634579a51f"
2018-03-13 14:32:09 +03:00
dependencies = [
"lazy_static",
"regex",
"serde",
"strsim",
2018-03-13 14:32:09 +03:00
]
[[package]]
name = "either"
2020-09-27 11:31:53 +03:00
version = "1.6.1"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2018-03-13 14:32:09 +03:00
[[package]]
name = "encoding_rs"
2022-01-01 20:43:04 +03:00
version = "0.8.30"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df"
2018-03-13 14:32:09 +03:00
dependencies = [
2020-12-20 15:45:58 +03:00
"cfg-if 1.0.0",
2018-03-13 14:32:09 +03:00
]
[[package]]
name = "enum-as-inner"
2020-09-13 19:42:44 +03:00
version = "0.3.3"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c5f0096a91d210159eceb2ff5e1c4da18388a170e1e3ce948aac9c8fdbbf595"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
2018-03-13 14:32:09 +03:00
2018-01-18 19:07:14 +03:00
[[package]]
name = "env_logger"
2021-07-16 16:08:46 +03:00
version = "0.9.0"
2018-01-18 19:07:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
2018-01-18 19:07:14 +03:00
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
2018-02-21 13:37:31 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "fallible-iterator"
version = "0.2.0"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
2017-10-09 14:29:03 +03:00
2018-02-21 13:37:31 +03:00
[[package]]
name = "flate2"
2021-09-14 14:25:53 +03:00
version = "1.0.22"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
2018-02-21 13:37:31 +03:00
dependencies = [
2020-12-20 15:45:58 +03:00
"cfg-if 1.0.0",
"crc32fast",
"libc",
"miniz_oxide",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "fnv"
2020-06-07 13:08:12 +03:00
version = "1.0.7"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2018-02-21 13:37:31 +03:00
2019-02-04 11:53:06 +03: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"
2019-02-15 16:32:38 +03:00
version = "0.1.1"
2019-02-04 11:53:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2019-02-04 11:53:06 +03:00
2020-12-20 15:45:58 +03:00
[[package]]
name = "form_urlencoded"
version = "1.0.1"
2020-12-20 15:45:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-12-20 15:45:58 +03:00
dependencies = [
"matches",
"percent-encoding",
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "fuchsia-zircon"
2018-01-18 13:42:06 +03:00
version = "0.3.3"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
2017-10-09 14:29:03 +03:00
dependencies = [
"bitflags",
"fuchsia-zircon-sys",
2017-10-09 14:29:03 +03:00
]
[[package]]
name = "fuchsia-zircon-sys"
2018-01-18 13:42:06 +03:00
version = "0.3.3"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2017-10-09 14:29:03 +03:00
[[package]]
name = "futures"
2022-02-12 17:25:52 +03:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2022-02-12 17:25:52 +03:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-02-12 17:25:52 +03:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
[[package]]
name = "futures-executor"
2022-02-12 17:25:52 +03:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-02-12 17:25:52 +03:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
[[package]]
name = "futures-macro"
2022-02-12 17:25:52 +03:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-02-12 17:25:52 +03:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
[[package]]
name = "futures-task"
2022-02-12 17:25:52 +03:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
[[package]]
name = "futures-util"
2022-02-12 17:25:52 +03:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
2022-01-01 20:43:04 +03:00
"pin-project-lite 0.2.8",
"pin-utils",
"slab",
]
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "generic-array"
2022-02-12 17:25:52 +03:00
version = "0.14.5"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
2018-03-13 14:32:09 +03:00
dependencies = [
"typenum",
"version_check",
2018-03-13 14:32:09 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "getrandom"
version = "0.1.16"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
2017-10-09 14:29:03 +03:00
dependencies = [
"cfg-if 1.0.0",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
2017-10-09 14:29:03 +03:00
]
[[package]]
name = "getrandom"
2022-02-12 17:25:52 +03:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c"
dependencies = [
"cfg-if 1.0.0",
"libc",
2021-07-16 16:08:46 +03:00
"wasi 0.10.2+wasi-snapshot-preview1",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "h2"
2020-10-31 13:07:04 +03:00
version = "0.2.7"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 13:07:04 +03:00
checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535"
2018-02-21 13:37:31 +03:00
dependencies = [
"bytes 0.5.6",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio 0.2.25",
"tokio-util 0.3.1",
"tracing",
2020-10-31 13:07:04 +03:00
"tracing-futures",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "half"
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
2020-09-13 19:42:44 +03:00
[[package]]
name = "hashbrown"
2021-07-16 16:08:46 +03:00
version = "0.11.2"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-09-13 19:42:44 +03:00
[[package]]
name = "heck"
2021-07-16 16:08:46 +03:00
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2019-11-07 20:54:06 +03:00
dependencies = [
"unicode-segmentation",
2019-11-07 20:54:06 +03:00
]
[[package]]
name = "hermit-abi"
2021-07-16 16:08:46 +03:00
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "hmac"
2022-01-01 20:43:04 +03:00
version = "0.12.0"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "ddca131f3e7f2ce2df364b57949a9d47915cfbd35e46cfee355ccebbf794d6a2"
2017-10-09 14:29:03 +03:00
dependencies = [
2022-02-12 17:25:52 +03:00
"digest 0.10.2",
2017-10-09 14:29:03 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
2018-02-21 13:37:31 +03:00
name = "hostname"
2020-03-11 13:47:04 +03:00
version = "0.3.1"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
2018-02-21 13:37:31 +03:00
dependencies = [
"libc",
"match_cfg",
"winapi 0.3.9",
2018-02-21 13:37:31 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
2018-02-21 13:37:31 +03:00
name = "http"
2022-01-01 20:43:04 +03:00
version = "0.2.6"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
2017-09-30 13:55:44 +03:00
dependencies = [
2021-09-14 14:25:53 +03:00
"bytes 1.1.0",
"fnv",
2022-01-01 20:43:04 +03:00
"itoa 1.0.1",
2017-09-30 13:55:44 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "httparse"
2022-02-12 17:25:52 +03:00
version = "1.6.0"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "9100414882e15fb7feccb4897e5f0ff0ff1ca7d1a86a23208ada4d7a18e6c6c4"
2018-02-21 13:37:31 +03:00
2018-03-13 14:32:09 +03:00
[[package]]
name = "humantime"
version = "2.1.0"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2018-03-13 14:32:09 +03:00
[[package]]
name = "idna"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "indexmap"
2022-02-12 17:25:52 +03:00
version = "1.8.0"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
dependencies = [
"autocfg",
"hashbrown",
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "instant"
2021-10-19 15:13:54 +03:00
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-19 15:13:54 +03:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2020-09-27 11:31:53 +03:00
dependencies = [
2020-10-31 13:07:04 +03:00
"cfg-if 1.0.0",
2020-09-27 11:31:53 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "iovec"
2019-10-11 11:23:32 +03:00
version = "0.1.4"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
2017-10-09 14:29:03 +03:00
dependencies = [
"libc",
2017-10-09 14:29:03 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
2018-02-21 13:37:31 +03:00
name = "ipconfig"
2020-05-02 11:22:05 +03:00
version = "0.2.2"
2017-12-17 13:51:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7e2f18aece9709094573a9f24f483c4f65caa4298e2f7ae1b71cc65d853fad7"
2018-01-18 13:42:06 +03:00
dependencies = [
"socket2 0.3.19",
"widestring",
"winapi 0.3.9",
"winreg",
]
[[package]]
name = "itertools"
2022-01-01 20:43:04 +03:00
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
dependencies = [
"either",
]
2017-09-30 13:55:44 +03:00
[[package]]
2018-01-18 13:42:06 +03:00
name = "itoa"
2021-09-14 14:25:53 +03:00
version = "0.4.8"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2017-09-30 13:55:44 +03:00
2022-01-01 20:43:04 +03:00
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
[[package]]
name = "js-sys"
2022-02-12 17:25:52 +03:00
version = "0.3.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04"
dependencies = [
"wasm-bindgen",
]
2017-09-30 13:55:44 +03:00
[[package]]
2018-02-21 13:37:31 +03:00
name = "kernel32-sys"
2017-09-30 13:55:44 +03:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
2018-02-21 13:37:31 +03:00
dependencies = [
"winapi 0.2.8",
"winapi-build",
2018-02-21 13:37:31 +03:00
]
2017-09-30 13:55:44 +03:00
2018-03-13 14:32:09 +03:00
[[package]]
name = "language-tags"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a"
2018-03-13 14:32:09 +03:00
2018-01-18 13:42:06 +03:00
[[package]]
name = "lazy_static"
2019-08-30 18:42:24 +03:00
version = "1.4.0"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-01-18 13:42:06 +03:00
2017-09-30 13:55:44 +03:00
[[package]]
name = "libc"
2022-02-12 17:25:52 +03:00
version = "0.2.117"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "e74d72e0f9b65b5b4ca49a346af3976df0f9c61d550727f349ecd559f251a26c"
2018-01-18 13:42:06 +03:00
2018-02-21 13:37:31 +03:00
[[package]]
name = "linked-hash-map"
version = "0.5.4"
2018-07-25 15:02:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
2018-07-25 15:02:31 +03:00
[[package]]
name = "lock_api"
2022-02-12 17:25:52 +03:00
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "88943dd7ef4a2e5a4bfa2753aaab3013e34ce2533d1996fb18ef591e315e2b3b"
dependencies = [
"scopeguard",
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "log"
version = "0.4.16"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
2018-01-18 13:42:06 +03:00
dependencies = [
"cfg-if 1.0.0",
2018-01-18 13:42:06 +03:00
]
2017-09-30 13:55:44 +03:00
2018-01-18 19:07:14 +03:00
[[package]]
2018-02-21 13:37:31 +03:00
name = "lru-cache"
2019-03-23 14:43:56 +03:00
version = "0.1.2"
2018-01-26 12:45:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
2018-01-22 20:01:44 +03:00
dependencies = [
"linked-hash-map",
2018-01-22 20:01:44 +03:00
]
2018-01-16 15:55:05 +03:00
[[package]]
name = "martin"
2021-10-18 16:29:51 +03:00
version = "1.0.0-alpha.0"
2018-01-16 15:55:05 +03:00
dependencies = [
"actix",
"actix-cors",
"actix-rt",
"actix-web",
"cargo-husky",
"criterion",
"docopt",
"env_logger",
2021-09-14 14:25:53 +03:00
"itertools",
"log",
"num_cpus",
"openssl",
"postgis",
"postgres",
"postgres-openssl",
"postgres-protocol",
"r2d2",
"r2d2_postgres",
"semver 1.0.7",
"serde",
"serde_derive",
"serde_json",
"serde_yaml",
"tilejson",
2018-01-16 15:55:05 +03:00
]
2020-03-11 13:47:04 +03:00
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
2020-03-11 13:47:04 +03:00
2017-09-30 13:55:44 +03:00
[[package]]
name = "matches"
2021-09-14 14:25:53 +03:00
version = "0.1.9"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2017-09-30 13:55:44 +03:00
2019-11-07 20:54:06 +03:00
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
2019-11-07 20:54:06 +03:00
2017-10-09 14:29:03 +03:00
[[package]]
name = "md-5"
2022-01-01 20:43:04 +03:00
version = "0.10.0"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "e6a38fc55c8bbc10058782919516f88826e70320db6d206aebc49611d24216ae"
dependencies = [
2022-02-12 17:25:52 +03:00
"digest 0.10.2",
]
2017-10-09 14:29:03 +03:00
2018-01-18 13:42:06 +03:00
[[package]]
name = "memchr"
2021-09-14 14:25:53 +03:00
version = "2.4.1"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2017-10-09 14:29:03 +03:00
2018-02-21 13:37:31 +03:00
[[package]]
name = "memoffset"
2022-01-01 20:43:04 +03:00
version = "0.6.5"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2019-07-28 18:05:15 +03:00
dependencies = [
"autocfg",
2019-07-28 18:05:15 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "mime"
2020-01-09 12:11:54 +03:00
version = "0.3.16"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2018-02-21 13:37:31 +03:00
2018-10-17 12:11:23 +03:00
[[package]]
name = "miniz_oxide"
version = "0.4.4"
2020-07-05 12:33:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
2020-07-05 12:33:47 +03:00
dependencies = [
"adler",
"autocfg",
2020-07-05 12:33:47 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "mio"
2020-12-20 15:45:58 +03:00
version = "0.6.23"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-20 15:45:58 +03:00
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
2018-02-21 13:37:31 +03:00
dependencies = [
2020-10-31 13:07:04 +03:00
"cfg-if 0.1.10",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow 0.2.2",
"net2",
"slab",
"winapi 0.2.8",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "mio"
2021-10-19 15:13:54 +03:00
version = "0.7.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-19 15:13:54 +03:00
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
dependencies = [
"libc",
"log",
"miow 0.3.7",
"ntapi",
"winapi 0.3.9",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "mio-uds"
2020-05-02 11:22:05 +03:00
version = "0.6.8"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
2018-02-21 13:37:31 +03:00
dependencies = [
"iovec",
"libc",
"mio 0.6.23",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "miow"
2020-12-20 15:45:58 +03:00
version = "0.2.2"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-20 15:45:58 +03:00
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
2018-02-21 13:37:31 +03:00
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
2017-09-30 13:55:44 +03:00
]
[[package]]
name = "miow"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
dependencies = [
"winapi 0.3.9",
]
2017-11-21 15:00:31 +03:00
[[package]]
2018-02-21 13:37:31 +03:00
name = "net2"
2020-12-20 15:45:58 +03:00
version = "0.2.37"
2017-11-21 15:00:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-20 15:45:58 +03:00
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
2017-11-21 15:00:31 +03:00
dependencies = [
2020-10-31 13:07:04 +03:00
"cfg-if 0.1.10",
"libc",
"winapi 0.3.9",
2017-11-21 15:00:31 +03:00
]
[[package]]
name = "ntapi"
2022-02-12 17:25:52 +03:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
dependencies = [
"winapi 0.3.9",
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "num-traits"
2020-10-31 13:07:04 +03:00
version = "0.2.14"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 13:07:04 +03:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2017-09-30 13:55:44 +03:00
dependencies = [
"autocfg",
2017-09-30 13:55:44 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "num_cpus"
2022-01-01 20:43:04 +03:00
version = "1.13.1"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2017-10-09 14:29:03 +03:00
dependencies = [
"hermit-abi",
"libc",
2018-02-21 13:37:31 +03:00
]
2020-06-07 13:08:12 +03:00
[[package]]
name = "once_cell"
2022-01-01 20:43:04 +03:00
version = "1.9.0"
2020-06-07 13:08:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
2020-06-07 13:08:12 +03:00
[[package]]
name = "oorandom"
2020-12-20 15:45:58 +03:00
version = "11.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-20 15:45:58 +03:00
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
[[package]]
name = "opaque-debug"
2020-09-13 19:42:44 +03:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "openssl"
version = "0.10.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95"
dependencies = [
"bitflags",
2020-12-20 15:45:58 +03:00
"cfg-if 1.0.0",
"foreign-types",
"libc",
"once_cell",
"openssl-sys",
]
[[package]]
name = "openssl-sys"
2022-01-01 20:43:04 +03:00
version = "0.9.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb"
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "parking_lot"
2021-09-14 14:25:53 +03:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
"parking_lot_core",
2019-06-19 12:34:06 +03:00
]
[[package]]
name = "parking_lot_core"
2021-09-14 14:25:53 +03:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
dependencies = [
2020-12-20 15:45:58 +03:00
"cfg-if 1.0.0",
"instant",
"libc",
"redox_syscall",
"smallvec",
"winapi 0.3.9",
]
2019-07-28 18:05:15 +03:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
2019-07-28 18:05:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2018-02-21 13:37:31 +03:00
[[package]]
2020-10-31 13:07:04 +03:00
name = "phf"
2022-01-01 20:43:04 +03:00
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
dependencies = [
2020-10-31 13:07:04 +03:00
"phf_shared",
]
[[package]]
2020-10-31 13:07:04 +03:00
name = "phf_shared"
2021-10-07 19:54:02 +03:00
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 19:54:02 +03:00
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
2020-10-31 13:07:04 +03:00
"siphasher",
]
[[package]]
2020-10-31 13:07:04 +03:00
name = "pin-project"
2022-01-01 20:43:04 +03:00
version = "0.4.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "9615c18d31137579e9ff063499264ddc1278e7b1982757ebc111028c4d1dc909"
dependencies = [
2022-01-01 20:43:04 +03:00
"pin-project-internal 0.4.29",
]
2018-02-21 13:37:31 +03:00
[[package]]
2020-10-31 13:07:04 +03:00
name = "pin-project"
2022-01-01 20:43:04 +03:00
version = "1.0.10"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
dependencies = [
2022-01-01 20:43:04 +03:00
"pin-project-internal 1.0.10",
]
2018-02-21 13:37:31 +03:00
[[package]]
2020-10-31 13:07:04 +03:00
name = "pin-project-internal"
2022-01-01 20:43:04 +03:00
version = "0.4.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "044964427019eed9d49d9d5bbce6047ef18f37100ea400912a9fa4a3523ab12a"
dependencies = [
2020-10-31 13:07:04 +03:00
"proc-macro2",
"quote",
"syn",
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "pin-project-internal"
2022-01-01 20:43:04 +03:00
version = "1.0.10"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
2017-10-09 14:29:03 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2017-10-09 14:29:03 +03:00
]
[[package]]
name = "pin-project-lite"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
2020-12-20 15:45:58 +03:00
[[package]]
name = "pin-project-lite"
2022-01-01 20:43:04 +03:00
version = "0.2.8"
2020-12-20 15:45:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
2020-12-20 15:45:58 +03:00
[[package]]
name = "pin-utils"
version = "0.1.0"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2017-10-09 14:29:03 +03:00
[[package]]
name = "pkg-config"
2022-01-01 20:43:04 +03:00
version = "0.3.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
[[package]]
name = "plotters"
2021-07-16 16:08:46 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "32a3fd9ec30b9749ce28cd91f255d569591cdf937fe280c312143e3c4bad6f2a"
dependencies = [
"num-traits",
"plotters-backend",
"plotters-svg",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "plotters-backend"
2021-07-16 16:08:46 +03:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "d88417318da0eaf0fdcdb51a0ee6c3bed624333bff8f946733049380be67ac1c"
[[package]]
name = "plotters-svg"
2021-07-16 16:08:46 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "521fa9638fa597e1dc53e9412a4f9cefb01187ee1f7413076f9e6749e2885ba9"
dependencies = [
"plotters-backend",
]
[[package]]
name = "postgis"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b52406590b7a682cadd0f0339c43905eb323568e84a2e97e855ef92645e0ec09"
dependencies = [
"byteorder",
"bytes 1.1.0",
"postgres-types",
]
2017-09-30 13:55:44 +03:00
[[package]]
2017-10-09 14:29:03 +03:00
name = "postgres"
2021-10-07 19:54:02 +03:00
version = "0.19.2"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 19:54:02 +03:00
checksum = "eb76d6535496f633fa799bb872ffb4790e9cbdedda9d35564ca0252f930c0dd5"
2017-10-09 14:29:03 +03:00
dependencies = [
2021-09-14 14:25:53 +03:00
"bytes 1.1.0",
"fallible-iterator",
"futures",
"log",
2022-02-12 17:25:52 +03:00
"tokio 1.16.1",
"tokio-postgres",
]
[[package]]
name = "postgres-openssl"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1de0ea6504e07ca78355a6fb88ad0f36cafe9e696cbc6717f16a207f3a60be72"
dependencies = [
"futures",
"openssl",
2022-02-12 17:25:52 +03:00
"tokio 1.16.1",
"tokio-openssl",
"tokio-postgres",
2017-10-09 14:29:03 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
2017-10-09 14:29:03 +03:00
name = "postgres-protocol"
2022-01-01 20:43:04 +03:00
version = "0.6.3"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "79ec03bce71f18b4a27c4c64c6ba2ddf74686d69b91d8714fb32ead3adaed713"
2017-10-09 14:29:03 +03:00
dependencies = [
"base64",
"byteorder",
2021-09-14 14:25:53 +03:00
"bytes 1.1.0",
"fallible-iterator",
"hmac",
"md-5",
"memchr",
2021-07-16 16:08:46 +03:00
"rand 0.8.4",
"sha2",
"stringprep",
2017-10-09 14:29:03 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "postgres-types"
2021-10-07 19:54:02 +03:00
version = "0.2.2"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-07 19:54:02 +03:00
checksum = "04619f94ba0cc80999f4fc7073607cb825bc739a883cb6d20900fc5e009d6b0d"
2017-09-30 13:55:44 +03:00
dependencies = [
2021-09-14 14:25:53 +03:00
"bytes 1.1.0",
"fallible-iterator",
"postgres-protocol",
"serde",
"serde_json",
"time",
"uuid",
2017-10-09 14:29:03 +03:00
]
[[package]]
name = "ppv-lite86"
2022-01-01 20:43:04 +03:00
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2019-11-07 20:54:06 +03:00
[[package]]
name = "proc-macro-hack"
2020-10-31 13:07:04 +03:00
version = "0.5.19"
2019-11-07 20:54:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 13:07:04 +03:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2019-11-07 20:54:06 +03:00
2019-08-20 12:19:04 +03:00
[[package]]
name = "proc-macro2"
2022-01-01 20:43:04 +03:00
version = "1.0.36"
2019-08-20 12:19:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
2019-08-20 12:19:04 +03:00
dependencies = [
"unicode-xid",
2019-08-20 12:19:04 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "quick-error"
2020-01-09 12:11:54 +03:00
version = "1.2.3"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2018-02-21 13:37:31 +03:00
2019-08-20 12:19:04 +03:00
[[package]]
name = "quote"
2022-02-12 17:25:52 +03:00
version = "1.0.15"
2019-08-20 12:19:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145"
2019-08-20 12:19:04 +03:00
dependencies = [
"proc-macro2",
2019-08-20 12:19:04 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "r2d2"
version = "0.8.9"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "545c5bc2b880973c9c10e4067418407a0ccaa3091781d1671d46eb35107cb26f"
2017-10-09 14:29:03 +03:00
dependencies = [
"log",
"parking_lot",
"scheduled-thread-pool",
2017-10-09 14:29:03 +03:00
]
[[package]]
name = "r2d2_postgres"
2021-09-14 14:25:53 +03:00
version = "0.18.1"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "7029c56be658cb54f321e0bee597810ee16796b735fa2559d7056bf06b12230b"
2017-10-09 14:29:03 +03:00
dependencies = [
"postgres",
"r2d2",
2017-09-30 13:55:44 +03:00
]
[[package]]
name = "rand"
2020-01-11 12:05:45 +03:00
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc 0.2.0",
]
[[package]]
name = "rand"
2021-07-16 16:08:46 +03:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
dependencies = [
"libc",
2021-07-16 16:08:46 +03:00
"rand_chacha 0.3.1",
"rand_core 0.6.3",
"rand_hc 0.3.1",
]
[[package]]
name = "rand_chacha"
2020-03-11 13:47:04 +03:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
2021-07-16 16:08:46 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2021-07-16 16:08:46 +03:00
"rand_core 0.6.3",
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
2021-07-16 16:08:46 +03:00
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
2022-02-12 17:25:52 +03:00
"getrandom 0.2.4",
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core 0.5.1",
]
[[package]]
name = "rand_hc"
2021-07-16 16:08:46 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
2021-07-16 16:08:46 +03:00
"rand_core 0.6.3",
]
[[package]]
name = "rayon"
2021-07-16 16:08:46 +03:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2021-07-16 16:08:46 +03:00
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
dependencies = [
2022-02-12 17:25:52 +03:00
"crossbeam-channel 0.5.2",
"crossbeam-deque",
2022-02-12 17:25:52 +03:00
"crossbeam-utils 0.8.7",
"lazy_static",
"num_cpus",
]
[[package]]
name = "redox_syscall"
2021-09-14 14:25:53 +03:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
dependencies = [
"bitflags",
]
2018-05-05 10:08:27 +03:00
[[package]]
name = "regex"
2021-07-16 16:08:46 +03:00
version = "1.5.4"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
2017-10-09 14:29:03 +03:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
2017-10-09 14:29:03 +03:00
]
[[package]]
name = "regex-automata"
2021-07-16 16:08:46 +03:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2018-05-05 10:08:27 +03:00
[[package]]
name = "regex-syntax"
2021-07-16 16:08:46 +03:00
version = "0.6.25"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2017-10-09 14:29:03 +03:00
[[package]]
name = "resolv-conf"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
dependencies = [
"hostname",
"quick-error",
]
2018-09-10 19:39:43 +03:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2018-09-10 19:39:43 +03:00
dependencies = [
"semver 0.9.0",
2018-09-10 19:39:43 +03:00
]
2021-07-16 16:08:46 +03: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.7",
2021-07-16 16:08:46 +03:00
]
2018-08-16 14:07:19 +03:00
[[package]]
name = "ryu"
2022-01-01 20:43:04 +03:00
version = "1.0.9"
2018-08-16 14:07:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
2018-08-16 14:07:19 +03:00
2018-09-15 12:49:25 +03:00
[[package]]
name = "same-file"
2020-01-11 12:05:45 +03:00
version = "1.0.6"
2018-09-15 12:49:25 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2018-09-15 12:49:25 +03:00
2017-10-09 14:29:03 +03:00
[[package]]
name = "scheduled-thread-pool"
2020-07-05 12:33:47 +03:00
version = "0.2.5"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc6f74fd1204073fa02d5d5d68bec8021be4c38690b61264b2fdb48083d0e7d7"
2017-10-09 14:29:03 +03:00
dependencies = [
"parking_lot",
2017-10-09 14:29:03 +03:00
]
2019-06-19 12:34:06 +03:00
[[package]]
name = "scopeguard"
2020-02-17 12:05:02 +03:00
version = "1.1.0"
2019-06-19 12:34:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-06-19 12:34:06 +03:00
2018-09-10 19:39:43 +03:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2018-09-10 19:39:43 +03:00
dependencies = [
2022-01-01 20:43:04 +03:00
"semver-parser",
2018-09-10 19:39:43 +03:00
]
[[package]]
name = "semver"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d65bd28f48be7196d222d95b9243287f48d27aca604e08497513019ff0502cc4"
2018-09-10 19:39:43 +03:00
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2018-09-10 19:39:43 +03:00
2017-12-17 13:51:07 +03:00
[[package]]
name = "serde"
2022-02-12 17:25:52 +03:00
version = "1.0.136"
2017-12-17 13:51:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
2019-04-08 10:38:25 +03:00
dependencies = [
"serde_derive",
2019-04-08 10:38:25 +03:00
]
2017-12-17 13:51:07 +03:00
[[package]]
name = "serde_cbor"
2021-09-14 14:25:53 +03:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
dependencies = [
"half",
"serde",
]
2017-12-17 13:51:07 +03:00
[[package]]
name = "serde_derive"
2022-02-12 17:25:52 +03:00
version = "1.0.136"
2017-12-17 13:51:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
2017-12-17 13:51:07 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2017-12-17 13:51:07 +03:00
]
[[package]]
name = "serde_json"
2022-02-12 17:25:52 +03:00
version = "1.0.79"
2017-12-17 13:51:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95"
2017-12-17 13:51:07 +03:00
dependencies = [
2022-01-01 20:43:04 +03:00
"itoa 1.0.1",
"ryu",
"serde",
2018-08-25 12:50:24 +03:00
]
[[package]]
name = "serde_urlencoded"
2022-02-12 17:25:52 +03:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
2022-02-12 17:25:52 +03:00
"itoa 1.0.1",
"ryu",
"serde",
]
2018-07-25 15:02:31 +03:00
[[package]]
name = "serde_yaml"
2022-01-01 20:43:04 +03:00
version = "0.8.23"
2018-07-25 15:02:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "a4a521f2940385c165a24ee286aa8599633d162077a54bdcae2a6fd5a7bfa7a0"
2018-07-25 15:02:31 +03:00
dependencies = [
2021-09-14 14:25:53 +03:00
"indexmap",
2022-01-01 20:43:04 +03:00
"ryu",
"serde",
"yaml-rust",
2018-07-25 15:02:31 +03:00
]
[[package]]
name = "sha-1"
2021-09-14 14:25:53 +03:00
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 14:25:53 +03:00
checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
dependencies = [
2022-01-01 20:43:04 +03:00
"block-buffer 0.9.0",
"cfg-if 1.0.0",
2021-07-16 16:08:46 +03:00
"cpufeatures",
2022-01-01 20:43:04 +03:00
"digest 0.9.0",
"opaque-debug",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "sha1"
2022-02-12 17:25:52 +03:00
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
dependencies = [
"sha1_smol",
]
[[package]]
name = "sha1_smol"
version = "1.0.0"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
2018-02-21 13:37:31 +03:00
2017-10-09 14:29:03 +03:00
[[package]]
name = "sha2"
2022-02-12 17:25:52 +03:00
version = "0.10.1"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "99c3bd8169c58782adad9290a9af5939994036b76187f7b4f0e6de91dbbfc0ec"
2017-10-09 14:29:03 +03:00
dependencies = [
2020-12-20 15:45:58 +03:00
"cfg-if 1.0.0",
2021-07-16 16:08:46 +03:00
"cpufeatures",
2022-02-12 17:25:52 +03:00
"digest 0.10.2",
2017-10-09 14:29:03 +03:00
]
2019-05-01 09:42:59 +03:00
[[package]]
name = "signal-hook-registry"
2021-07-16 16:08:46 +03:00
version = "1.4.0"
2018-10-25 16:42:37 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
2018-10-25 16:42:37 +03:00
dependencies = [
"libc",
2018-10-25 16:42:37 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "siphasher"
2022-02-12 17:25:52 +03:00
version = "0.3.9"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "a86232ab60fa71287d7f2ddae4a7073f6b7aac33631c3015abb556f08c6d0a3e"
2017-10-09 14:29:03 +03:00
2018-02-21 13:37:31 +03:00
[[package]]
name = "slab"
2021-10-16 14:23:02 +03:00
version = "0.4.5"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-16 14:23:02 +03:00
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
2018-02-21 13:37:31 +03:00
[[package]]
name = "smallvec"
2022-02-12 17:25:52 +03:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
[[package]]
name = "socket2"
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
dependencies = [
2020-12-20 15:45:58 +03:00
"cfg-if 1.0.0",
"libc",
"winapi 0.3.9",
]
[[package]]
name = "socket2"
2022-02-12 17:25:52 +03:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
dependencies = [
"libc",
"winapi 0.3.9",
]
[[package]]
name = "standback"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
2020-06-07 13:08:12 +03:00
dependencies = [
"version_check",
2020-06-07 13:08:12 +03:00
]
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
2021-07-16 16:08:46 +03:00
"rustc_version 0.2.3",
"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"
2017-10-09 14:29:03 +03:00
[[package]]
name = "stringprep"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
2017-10-09 14:29:03 +03:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
2017-10-09 14:29:03 +03:00
]
2018-10-10 19:13:53 +03:00
[[package]]
name = "strsim"
version = "0.10.0"
2018-10-10 19:13:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2018-10-10 19:13:53 +03:00
[[package]]
name = "subtle"
2021-07-16 16:08:46 +03:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2017-12-17 13:51:07 +03:00
[[package]]
name = "syn"
2022-02-12 17:25:52 +03:00
version = "1.0.86"
2019-08-20 12:19:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b"
2019-08-20 12:19:04 +03:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
2019-08-20 12:19:04 +03:00
]
2018-01-18 19:07:14 +03:00
[[package]]
name = "termcolor"
2020-12-20 15:45:58 +03:00
version = "1.1.2"
2018-01-18 19:07:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-20 15:45:58 +03:00
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
2018-01-18 19:07:14 +03:00
dependencies = [
"winapi-util",
2018-01-18 19:07:14 +03:00
]
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
[[package]]
name = "thiserror"
2021-10-09 15:33:26 +03:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-09 15:33:26 +03:00
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-10-09 15:33:26 +03:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-09 15:33:26 +03:00
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "threadpool"
2020-06-07 13:08:12 +03:00
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
dependencies = [
"num_cpus",
]
2018-03-28 19:15:00 +03:00
[[package]]
name = "tilejson"
version = "0.2.4"
2018-03-28 19:15:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1b13f37202f3dfa3d0a775b20ccbff170b702b60603480b4fb2b05851cf4e97"
2018-03-28 19:15:00 +03:00
dependencies = [
"serde",
"serde_json",
2018-03-28 19:15:00 +03:00
]
[[package]]
name = "time"
2021-07-16 16:08:46 +03:00
version = "0.2.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
dependencies = [
"const_fn",
"libc",
"standback",
"stdweb",
"time-macros",
"version_check",
"winapi 0.3.9",
]
[[package]]
name = "time-macros"
2020-10-03 16:10:08 +03:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
dependencies = [
"proc-macro-hack",
"time-macros-impl",
]
[[package]]
name = "time-macros-impl"
2021-07-16 16:08:46 +03:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"standback",
"syn",
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "tinytemplate"
version = "1.2.1"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2018-03-13 14:32:09 +03:00
dependencies = [
"serde",
"serde_json",
2018-06-16 19:01:08 +03:00
]
2020-06-21 12:52:13 +03:00
[[package]]
name = "tinyvec"
2021-11-15 10:18:49 +03:00
version = "1.5.1"
2020-12-20 15:45:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-15 10:18:49 +03:00
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
2020-12-20 15:45:58 +03:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
2020-06-21 12:52:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-20 15:45:58 +03:00
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-06-21 12:52:13 +03:00
2018-06-16 19:01:08 +03:00
[[package]]
name = "tokio"
version = "0.2.25"
2018-06-16 19:01:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092"
2018-06-16 19:01:08 +03:00
dependencies = [
"bytes 0.5.6",
"fnv",
"futures-core",
"iovec",
"lazy_static",
"libc",
"memchr",
"mio 0.6.23",
"mio-uds",
"pin-project-lite 0.1.12",
"signal-hook-registry",
"slab",
"winapi 0.3.9",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "tokio"
2022-02-12 17:25:52 +03:00
version = "1.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "0c27a64b625de6d309e8c57716ba93021dccf1b3b5c97edd6d3dd2d2135afc0a"
dependencies = [
2021-09-14 14:25:53 +03:00
"bytes 1.1.0",
"libc",
"memchr",
2021-10-19 15:13:54 +03:00
"mio 0.7.14",
2022-01-01 20:43:04 +03:00
"pin-project-lite 0.2.8",
2021-07-16 16:08:46 +03:00
"winapi 0.3.9",
]
[[package]]
name = "tokio-openssl"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08f9ffb7809f1b20c1b398d92acf4cc719874b3b2b2d9ea2f09b4a80350878a"
dependencies = [
"futures-util",
"openssl",
"openssl-sys",
2022-02-12 17:25:52 +03:00
"tokio 1.16.1",
]
[[package]]
name = "tokio-postgres"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b6c8b33df661b548dcd8f9bf87debb8c56c05657ed291122e1188698c2ece95"
dependencies = [
"async-trait",
"byteorder",
2021-09-14 14:25:53 +03:00
"bytes 1.1.0",
"fallible-iterator",
"futures",
"log",
"parking_lot",
"percent-encoding",
"phf",
2022-01-01 20:43:04 +03:00
"pin-project-lite 0.2.8",
"postgres-protocol",
"postgres-types",
2022-02-12 17:25:52 +03:00
"socket2 0.4.4",
"tokio 1.16.1",
"tokio-util 0.6.9",
]
2018-03-26 14:12:43 +03:00
[[package]]
name = "tokio-util"
version = "0.3.1"
2018-03-26 14:12:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499"
2018-03-26 14:12:43 +03:00
dependencies = [
"bytes 0.5.6",
"futures-core",
"futures-io",
"futures-sink",
"log",
"pin-project-lite 0.1.12",
"tokio 0.2.25",
]
[[package]]
name = "tokio-util"
version = "0.6.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
dependencies = [
2021-09-14 14:25:53 +03:00
"bytes 1.1.0",
"futures-core",
"futures-sink",
"log",
2022-01-01 20:43:04 +03:00
"pin-project-lite 0.2.8",
2022-02-12 17:25:52 +03:00
"tokio 1.16.1",
2020-09-13 19:42:44 +03:00
]
[[package]]
name = "tracing"
2022-02-12 17:25:52 +03:00
version = "0.1.30"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "2d8d93354fe2a8e50d5953f5ae2e47a3fc2ef03292e7ea46e3cc38f549525fb9"
2020-09-13 19:42:44 +03:00
dependencies = [
2020-12-20 15:45:58 +03:00
"cfg-if 1.0.0",
"log",
2022-01-01 20:43:04 +03:00
"pin-project-lite 0.2.8",
"tracing-core",
2020-09-13 19:42:44 +03:00
]
[[package]]
name = "tracing-core"
2022-02-12 17:25:52 +03:00
version = "0.1.22"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "03cfcb51380632a72d3111cb8d3447a8d908e577d31beeac006f836383d29a23"
2020-09-13 19:42:44 +03:00
dependencies = [
"lazy_static",
2018-08-25 12:50:24 +03:00
]
2020-10-31 13:07:04 +03:00
[[package]]
name = "tracing-futures"
version = "0.2.5"
2020-10-31 13:07:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
2020-10-31 13:07:04 +03:00
dependencies = [
2022-01-01 20:43:04 +03:00
"pin-project 1.0.10",
2020-10-31 13:07:04 +03:00
"tracing",
]
[[package]]
name = "trust-dns-proto"
version = "0.19.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cad71a0c0d68ab9941d2fb6e82f8fb2e86d9945b94e1661dd0aaea2b88215a9"
dependencies = [
"async-trait",
"cfg-if 1.0.0",
"enum-as-inner",
"futures",
"idna",
"lazy_static",
"log",
"rand 0.7.3",
"smallvec",
"thiserror",
"tokio 0.2.25",
"url",
]
[[package]]
name = "trust-dns-resolver"
version = "0.19.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "710f593b371175db53a26d0b38ed2978fafb9e9e8d3868b1acd753ea18df0ceb"
dependencies = [
"cfg-if 0.1.10",
"futures",
"ipconfig",
"lazy_static",
"log",
"lru-cache",
"resolv-conf",
"smallvec",
"thiserror",
"tokio 0.2.25",
"trust-dns-proto",
2017-09-30 13:55:44 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "typenum"
2022-01-01 20:43:04 +03:00
version = "1.15.0"
2021-07-16 16:08:46 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2021-07-16 16:08:46 +03:00
2017-09-30 13:55:44 +03:00
[[package]]
name = "unicode-bidi"
2021-10-09 15:33:26 +03:00
version = "0.3.7"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-09 15:33:26 +03:00
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
2017-09-30 13:55:44 +03:00
[[package]]
name = "unicode-normalization"
2021-07-16 16:08:46 +03:00
version = "0.1.19"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
2019-01-25 12:42:07 +03:00
dependencies = [
"tinyvec",
2019-01-25 12:42:07 +03:00
]
2017-09-30 13:55:44 +03:00
2018-03-13 14:32:09 +03:00
[[package]]
name = "unicode-segmentation"
2022-02-12 17:25:52 +03:00
version = "1.9.0"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
2018-03-13 14:32:09 +03:00
2019-08-20 12:19:04 +03:00
[[package]]
name = "unicode-width"
2021-09-29 16:28:11 +03:00
version = "0.1.9"
2019-08-20 12:19:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-29 16:28:11 +03:00
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2019-08-20 12:19:04 +03:00
2017-09-30 13:55:44 +03:00
[[package]]
name = "unicode-xid"
2021-07-16 16:08:46 +03:00
version = "0.2.2"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2017-09-30 13:55:44 +03:00
2017-10-09 14:29:03 +03:00
[[package]]
name = "url"
2021-07-16 16:08:46 +03:00
version = "2.2.2"
2019-01-12 15:28:16 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2019-01-12 15:28:16 +03:00
dependencies = [
2020-12-20 15:45:58 +03:00
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
2019-01-12 15:28:16 +03:00
]
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
[[package]]
name = "vcpkg"
2021-07-16 16:08:46 +03:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
2022-01-01 20:43:04 +03:00
version = "0.9.4"
2019-01-12 15:28:16 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2019-01-12 15:28:16 +03:00
[[package]]
name = "walkdir"
version = "2.3.2"
2019-01-12 15:28:16 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
2019-01-12 15:28:16 +03:00
dependencies = [
"same-file",
"winapi 0.3.9",
"winapi-util",
2019-01-12 15:28:16 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "wasi"
2020-01-09 12:11:54 +03:00
version = "0.9.0+wasi-snapshot-preview1"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2017-09-30 13:55:44 +03:00
2020-09-13 19:42:44 +03:00
[[package]]
name = "wasi"
2021-07-16 16:08:46 +03:00
version = "0.10.2+wasi-snapshot-preview1"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2020-09-13 19:42:44 +03:00
[[package]]
name = "wasm-bindgen"
2022-02-12 17:25:52 +03:00
version = "0.2.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06"
dependencies = [
2020-12-20 15:45:58 +03:00
"cfg-if 1.0.0",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-02-12 17:25:52 +03:00
version = "0.2.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca"
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2022-02-12 17:25:52 +03:00
version = "0.2.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-02-12 17:25:52 +03:00
version = "0.2.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-02-12 17:25:52 +03:00
version = "0.2.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2"
[[package]]
name = "web-sys"
2022-02-12 17:25:52 +03:00
version = "0.3.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "c060b319f29dd25724f09a2ba1418f142f539b2be99fbf4d2d5a8f7330afb8eb"
dependencies = [
"js-sys",
"wasm-bindgen",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "widestring"
2020-10-31 13:07:04 +03:00
version = "0.4.3"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 13:07:04 +03:00
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
2018-02-21 13:37:31 +03:00
2017-09-30 13:55:44 +03:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2017-09-30 13:55:44 +03:00
[[package]]
2018-01-18 13:42:06 +03:00
name = "winapi"
2020-07-05 12:33:47 +03:00
version = "0.3.9"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-01-18 13:42:06 +03:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-01-18 13:42:06 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2018-02-21 13:37:31 +03:00
2018-01-18 13:42:06 +03:00
[[package]]
name = "winapi-i686-pc-windows-gnu"
2018-01-18 19:07:14 +03:00
version = "0.4.0"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-01-18 13:42:06 +03:00
2018-08-25 12:50:24 +03:00
[[package]]
name = "winapi-util"
version = "0.1.5"
2018-08-25 12:50:24 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2018-08-25 12:50:24 +03:00
dependencies = [
"winapi 0.3.9",
2018-08-25 12:50:24 +03:00
]
2018-01-18 13:42:06 +03:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
2018-01-18 19:07:14 +03:00
version = "0.4.0"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2017-09-30 13:55:44 +03:00
2018-02-21 13:37:31 +03:00
[[package]]
name = "winreg"
version = "0.6.2"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
2018-02-21 13:37:31 +03:00
dependencies = [
"winapi 0.3.9",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
2018-02-21 13:37:31 +03:00
dependencies = [
"winapi 0.2.8",
"winapi-build",
2018-02-21 13:37:31 +03:00
]
2018-07-25 15:02:31 +03:00
[[package]]
name = "yaml-rust"
version = "0.4.5"
2018-07-25 15:02:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
2018-07-25 15:02:31 +03:00
dependencies = [
"linked-hash-map",
]