2019-12-30 10:17:07 +00:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "actix-macros"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a60f9ba7c4e6df97f3aacb14bb5c0cd7d98a49dcbaed0d7f292912ad9a6a3ed2"
|
|
|
|
dependencies = [
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[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",
|
2020-07-27 09:23:34 +00:00
|
|
|
"smallvec",
|
|
|
|
"tokio",
|
2020-05-26 08:56:03 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "actix-threadpool"
|
2020-07-17 12:36:56 +00:00
|
|
|
version = "0.3.3"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-17 12:36:56 +00:00
|
|
|
checksum = "d209f04d002854b9afd3743032a27b066158817965bf5d036824d19ac2cc0e30"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"derive_more",
|
|
|
|
"futures-channel",
|
|
|
|
"lazy_static",
|
|
|
|
"log",
|
|
|
|
"num_cpus",
|
2020-07-27 09:23:34 +00:00
|
|
|
"parking_lot",
|
2020-05-26 08:56:03 +00:00
|
|
|
"threadpool",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "ahash"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.5.6"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "b2deff5792519f5985c9cdd5a0399df3ca3419114841d282bae646acadbf0a99"
|
2020-10-14 13:48:17 +00:00
|
|
|
dependencies = [
|
|
|
|
"getrandom 0.2.0",
|
|
|
|
"lazy_static",
|
|
|
|
]
|
2020-05-26 08:56:03 +00:00
|
|
|
|
2020-01-11 09:01:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.7.14"
|
2020-01-11 09:01:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "b476ce7103678b0c6d3d395dbbae31d48ff910bd28be979ba5d48c6351131d0d"
|
2020-01-11 09:01:21 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"memchr",
|
2020-01-11 09:01:21 +00:00
|
|
|
]
|
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ansi_term"
|
|
|
|
version = "0.11.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "anyhow"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.33"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "a1fd36ffbb1fb7c834eac128ea8d0e310c5aeb635548f9d58861e1308d46e71c"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-01-15 09:17:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "arc-swap"
|
2020-06-07 23:29:46 +00:00
|
|
|
version = "0.4.7"
|
2020-01-15 09:17:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-07 23:29:46 +00:00
|
|
|
checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
|
2020-01-15 09:17:33 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-attributes"
|
|
|
|
version = "1.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "efd3d156917d94862e779f356c5acae312b08fd3121e792c857d7928c8088423"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-07-21 06:13:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-channel"
|
2020-10-20 10:21:01 +00:00
|
|
|
version = "1.5.1"
|
2020-07-21 06:13:05 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 10:21:01 +00:00
|
|
|
checksum = "59740d83946db6a5af71ae25ddf9562c2b176b2ca42cf99a455f09f4a220d6b9"
|
2020-07-21 06:13:05 +00:00
|
|
|
dependencies = [
|
|
|
|
"concurrent-queue",
|
|
|
|
"event-listener",
|
|
|
|
"futures-core",
|
|
|
|
]
|
|
|
|
|
2020-10-20 10:21:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-executor"
|
|
|
|
version = "1.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d373d78ded7d0b3fa8039375718cde0aace493f2e34fb60f51cbf567562ca801"
|
|
|
|
dependencies = [
|
|
|
|
"async-task",
|
|
|
|
"concurrent-queue",
|
|
|
|
"fastrand",
|
|
|
|
"futures-lite",
|
|
|
|
"once_cell",
|
|
|
|
"vec-arena",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "async-global-executor"
|
|
|
|
version = "1.4.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "124ac8c265e407641c3362b8f4d39cdb4e243885b71eef087be27199790f5a3a"
|
|
|
|
dependencies = [
|
|
|
|
"async-executor",
|
|
|
|
"async-io",
|
|
|
|
"futures-lite",
|
|
|
|
"num_cpus",
|
|
|
|
"once_cell",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "async-io"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.1.10"
|
2020-10-20 10:21:01 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "d54bc4c1c7292475efb2253227dbcfad8fe1ca4c02bc62c510cc2f3da5c4704e"
|
2020-10-20 10:21:01 +00:00
|
|
|
dependencies = [
|
|
|
|
"concurrent-queue",
|
|
|
|
"fastrand",
|
|
|
|
"futures-lite",
|
|
|
|
"libc",
|
|
|
|
"log",
|
2020-10-20 17:55:39 +00:00
|
|
|
"nb-connect",
|
2020-10-20 10:21:01 +00:00
|
|
|
"once_cell",
|
|
|
|
"parking",
|
|
|
|
"polling",
|
|
|
|
"vec-arena",
|
|
|
|
"waker-fn",
|
|
|
|
"winapi 0.3.9",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "async-mutex"
|
|
|
|
version = "1.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
|
|
|
|
dependencies = [
|
|
|
|
"event-listener",
|
|
|
|
]
|
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-native-tls"
|
2020-03-11 20:24:05 +00:00
|
|
|
version = "0.3.3"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 20:24:05 +00:00
|
|
|
checksum = "9e9e7a929bd34c68a82d58a4de7f86fffdaf97fb2af850162a7bb19dd7269b33"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"async-std",
|
|
|
|
"native-tls",
|
|
|
|
"thiserror",
|
2020-07-27 09:23:34 +00:00
|
|
|
"url",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
2020-10-20 10:21:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-rustls"
|
|
|
|
version = "0.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c238bd34d425674d8003b8d674cc04baf74e1b71802f3c62451e3bf86f2858ef"
|
|
|
|
dependencies = [
|
|
|
|
"futures-lite",
|
|
|
|
"rustls",
|
|
|
|
"webpki",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-std"
|
2020-10-20 10:21:01 +00:00
|
|
|
version = "1.6.5"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 10:21:01 +00:00
|
|
|
checksum = "a9fa76751505e8df1c7a77762f60486f60c71bbd9b8557f4da6ad47d083732ed"
|
2020-03-11 08:49:21 +00:00
|
|
|
dependencies = [
|
|
|
|
"async-attributes",
|
2020-10-20 10:21:01 +00:00
|
|
|
"async-global-executor",
|
|
|
|
"async-io",
|
|
|
|
"async-mutex",
|
|
|
|
"blocking",
|
2020-10-20 17:55:39 +00:00
|
|
|
"crossbeam-utils 0.7.2",
|
2020-05-26 08:56:03 +00:00
|
|
|
"futures-channel",
|
2020-03-11 08:49:21 +00:00
|
|
|
"futures-core",
|
|
|
|
"futures-io",
|
2020-10-20 10:21:01 +00:00
|
|
|
"futures-lite",
|
|
|
|
"gloo-timers",
|
2020-03-11 08:49:21 +00:00
|
|
|
"kv-log-macro",
|
|
|
|
"log",
|
|
|
|
"memchr",
|
|
|
|
"num_cpus",
|
|
|
|
"once_cell",
|
|
|
|
"pin-project-lite",
|
|
|
|
"pin-utils",
|
|
|
|
"slab",
|
2020-05-26 08:56:03 +00:00
|
|
|
"wasm-bindgen-futures",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "async-task"
|
2020-10-20 10:21:01 +00:00
|
|
|
version = "4.0.3"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 10:21:01 +00:00
|
|
|
checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-03-31 21:35:17 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-trait"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.1.41"
|
2020-03-31 21:35:17 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "b246867b8b3b6ae56035f1eb1ed557c1d8eae97f0d53696138a50fa0e3a3b8c0"
|
2020-03-31 21:35:17 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "atoi"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.3"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "5c897df197d57c25b37df9d8fa2f93ddbfeee9ebd2264350ac79c8ec4b795885"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"num-traits",
|
|
|
|
]
|
|
|
|
|
2020-07-21 06:13:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "atomic-waker"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
|
|
|
|
|
2020-01-11 09:01:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "atty"
|
2020-01-11 11:30:03 +00:00
|
|
|
version = "0.2.14"
|
2020-01-11 09:01:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
2020-01-11 09:01:21 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"hermit-abi",
|
|
|
|
"libc",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-01-11 09:01:21 +00:00
|
|
|
]
|
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
|
|
|
version = "0.1.7"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
|
|
|
|
|
2020-01-11 11:30:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.1"
|
2020-01-11 11:30:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
|
2020-01-11 11:30:03 +00:00
|
|
|
|
2020-03-21 09:34:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "base-x"
|
|
|
|
version = "0.2.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1b20b618342cf9891c292c4f5ac2cde7287cc5c87e87e9c769d617793607dec1"
|
|
|
|
|
2020-03-18 23:56:24 +00:00
|
|
|
[[package]]
|
|
|
|
name = "base64"
|
2020-06-27 12:56:30 +00:00
|
|
|
version = "0.12.3"
|
2020-03-18 23:56:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-27 12:56:30 +00:00
|
|
|
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
|
2020-03-18 23:56:24 +00:00
|
|
|
|
2020-09-30 18:34:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "base64"
|
|
|
|
version = "0.13.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
|
|
|
|
|
2020-03-19 02:09:10 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bigdecimal"
|
2020-10-30 10:27:19 +00:00
|
|
|
version = "0.2.0"
|
2020-03-19 02:09:10 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-30 10:27:19 +00:00
|
|
|
checksum = "cc403c26e6b03005522e6e8053384c4e881dfe5b2bf041c0c2c49be33d64a539"
|
2020-03-19 02:09:10 +00:00
|
|
|
dependencies = [
|
2020-10-30 10:27:19 +00:00
|
|
|
"num-bigint 0.3.0",
|
2020-03-19 02:09:10 +00:00
|
|
|
"num-integer",
|
|
|
|
"num-traits",
|
|
|
|
]
|
|
|
|
|
2020-07-06 17:39:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bit-vec"
|
|
|
|
version = "0.6.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5f0dc55f2d8a1a85650ac47858bb001b4c0dd73d79e3c455a842925e68d29cd3"
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
|
|
|
version = "1.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-06-27 12:56:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "block-buffer"
|
|
|
|
version = "0.9.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
|
|
|
|
dependencies = [
|
2020-07-05 10:48:36 +00:00
|
|
|
"generic-array",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-06-19 09:49:41 +00:00
|
|
|
[[package]]
|
|
|
|
name = "blocking"
|
2020-10-20 10:21:01 +00:00
|
|
|
version = "1.0.2"
|
2020-06-19 09:49:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 10:21:01 +00:00
|
|
|
checksum = "c5e170dbede1f740736619b776d7251cb1b9095c435c34d8ca9f57fcd2f335e9"
|
2020-06-19 09:49:41 +00:00
|
|
|
dependencies = [
|
2020-07-21 06:13:05 +00:00
|
|
|
"async-channel",
|
2020-10-20 10:21:01 +00:00
|
|
|
"async-task",
|
2020-07-21 06:13:05 +00:00
|
|
|
"atomic-waker",
|
2020-10-20 10:21:01 +00:00
|
|
|
"fastrand",
|
2020-07-21 06:13:05 +00:00
|
|
|
"futures-lite",
|
2020-06-19 09:49:41 +00:00
|
|
|
"once_cell",
|
|
|
|
]
|
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bstr"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.2.14"
|
2020-07-01 09:38:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "473fc6b38233f9af7baa94fb5852dca389e3d95b8e21c8e3719301462c5d9faf"
|
2020-07-01 09:38:33 +00:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
"memchr",
|
|
|
|
"regex-automata",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2020-07-12 10:43:49 +00:00
|
|
|
[[package]]
|
|
|
|
name = "build_const"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39"
|
|
|
|
|
2020-03-21 09:34:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bumpalo"
|
2020-06-07 23:29:46 +00:00
|
|
|
version = "3.4.0"
|
2020-03-21 09:34:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-07 23:29:46 +00:00
|
|
|
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
|
2020-03-21 09:34:21 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "byteorder"
|
2020-03-02 08:29:52 +00:00
|
|
|
version = "1.3.4"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-01-15 09:17:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "bytes"
|
2020-07-17 12:36:56 +00:00
|
|
|
version = "0.5.6"
|
2020-06-19 09:49:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-17 12:36:56 +00:00
|
|
|
checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38"
|
2020-06-19 09:49:41 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cache-padded"
|
2020-07-17 12:36:56 +00:00
|
|
|
version = "1.1.1"
|
2020-01-15 09:17:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-17 12:36:56 +00:00
|
|
|
checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba"
|
2020-01-15 09:17:33 +00:00
|
|
|
|
2020-05-14 03:30:12 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cargo_metadata"
|
2020-07-27 05:31:28 +00:00
|
|
|
version = "0.10.0"
|
2020-05-14 03:30:12 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-27 05:31:28 +00:00
|
|
|
checksum = "b8de60b887edf6d74370fc8eb177040da4847d971d6234c7b13a6da324ef0caf"
|
2020-05-14 03:30:12 +00:00
|
|
|
dependencies = [
|
2020-07-27 05:31:28 +00:00
|
|
|
"semver",
|
2020-05-14 03:30:12 +00:00
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
|
|
|
"serde_json",
|
|
|
|
]
|
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cast"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4b9434b9a5aa1450faa3f9cb14ea0e8c53bb5d2b3c1bfd1ab4fc03e9f33fbfb0"
|
|
|
|
dependencies = [
|
|
|
|
"rustc_version",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.61"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "ed67cbde08356238e75fc4656be4749481eeffb09e19f320a25237d5221c985d"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "0.1.10"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-10-20 17:55:39 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "chrono"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.4.19"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"libc",
|
2020-03-11 08:49:21 +00:00
|
|
|
"num-integer",
|
|
|
|
"num-traits",
|
2020-10-20 17:55:39 +00:00
|
|
|
"time 0.1.44",
|
|
|
|
"winapi 0.3.9",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "clap"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "2.33.3"
|
2020-02-01 07:33:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"ansi_term",
|
|
|
|
"atty",
|
|
|
|
"bitflags",
|
2020-07-12 10:43:49 +00:00
|
|
|
"strsim 0.8.0",
|
2020-09-30 17:04:14 +00:00
|
|
|
"textwrap 0.11.0",
|
2020-03-11 08:49:21 +00:00
|
|
|
"unicode-width",
|
|
|
|
"vec_map",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
2020-07-12 10:43:49 +00:00
|
|
|
[[package]]
|
|
|
|
name = "clap"
|
2020-09-30 17:04:14 +00:00
|
|
|
version = "3.0.0-beta.2"
|
2020-07-12 10:43:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-09-30 17:04:14 +00:00
|
|
|
checksum = "4bd1061998a501ee7d4b6d449020df3266ca3124b941ec56cf2005c3779ca142"
|
2020-07-12 10:43:49 +00:00
|
|
|
dependencies = [
|
|
|
|
"atty",
|
|
|
|
"bitflags",
|
|
|
|
"clap_derive",
|
|
|
|
"indexmap",
|
|
|
|
"lazy_static",
|
|
|
|
"os_str_bytes",
|
|
|
|
"strsim 0.10.0",
|
|
|
|
"termcolor",
|
2020-09-30 17:04:14 +00:00
|
|
|
"textwrap 0.12.1",
|
2020-07-12 10:43:49 +00:00
|
|
|
"unicode-width",
|
|
|
|
"vec_map",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap_derive"
|
2020-09-30 17:04:14 +00:00
|
|
|
version = "3.0.0-beta.2"
|
2020-07-12 10:43:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-09-30 17:04:14 +00:00
|
|
|
checksum = "370f715b81112975b1b69db93e0b56ea4cd4e5002ac43b2da8474106a54096a1"
|
2020-07-12 10:43:49 +00:00
|
|
|
dependencies = [
|
|
|
|
"heck",
|
2020-09-30 17:04:14 +00:00
|
|
|
"proc-macro-error",
|
2020-07-12 10:43:49 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2020-06-27 12:57:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cloudabi"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4344512281c643ae7638bbabc3af17a11307803ec8f0fcad9fae512a8bf36467"
|
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
]
|
|
|
|
|
2020-06-19 09:49:41 +00:00
|
|
|
[[package]]
|
|
|
|
name = "concurrent-queue"
|
2020-10-20 10:21:01 +00:00
|
|
|
version = "1.2.2"
|
2020-06-19 09:49:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 10:21:01 +00:00
|
|
|
checksum = "30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3"
|
2020-06-19 09:49:41 +00:00
|
|
|
dependencies = [
|
|
|
|
"cache-padded",
|
|
|
|
]
|
|
|
|
|
2020-07-12 10:43:49 +00:00
|
|
|
[[package]]
|
|
|
|
name = "console"
|
|
|
|
version = "0.11.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a"
|
|
|
|
dependencies = [
|
|
|
|
"encode_unicode",
|
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
|
|
|
"regex",
|
|
|
|
"terminal_size",
|
|
|
|
"termios",
|
|
|
|
"unicode-width",
|
|
|
|
"winapi 0.3.9",
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2020-10-21 23:39:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "console"
|
|
|
|
version = "0.13.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a50aab2529019abfabfa93f1e6c41ef392f91fbf179b347a7e96abb524884a08"
|
|
|
|
dependencies = [
|
|
|
|
"encode_unicode",
|
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
|
|
|
"regex",
|
|
|
|
"terminal_size",
|
|
|
|
"unicode-width",
|
|
|
|
"winapi 0.3.9",
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2020-10-20 17:55:39 +00:00
|
|
|
[[package]]
|
|
|
|
name = "const_fn"
|
|
|
|
version = "0.4.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ce90df4c658c62f12d78f7508cf92f9173e5184a539c10bfe54a3107b3ffd0f2"
|
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "copyless"
|
2020-06-07 23:29:46 +00:00
|
|
|
version = "0.1.5"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-07 23:29:46 +00:00
|
|
|
checksum = "a2df960f5d869b2dd8532793fde43eb5427cceb126c929747a26823ab0eeb536"
|
2020-05-26 08:56:03 +00:00
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "core-foundation"
|
2020-03-11 20:24:05 +00:00
|
|
|
version = "0.7.0"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 20:24:05 +00:00
|
|
|
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "core-foundation-sys"
|
2020-03-11 20:24:05 +00:00
|
|
|
version = "0.7.0"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 20:24:05 +00:00
|
|
|
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
|
2020-01-11 03:39:29 +00:00
|
|
|
|
2020-06-27 12:56:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cpuid-bool"
|
2020-07-21 06:13:05 +00:00
|
|
|
version = "0.1.2"
|
2020-06-27 12:56:30 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-21 06:13:05 +00:00
|
|
|
checksum = "8aebca1129a03dc6dc2b127edd729435bbc4a37e1d5f4d7513165089ceb02634"
|
2020-06-27 12:56:30 +00:00
|
|
|
|
2020-07-12 10:43:49 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crc"
|
|
|
|
version = "1.8.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb"
|
|
|
|
dependencies = [
|
|
|
|
"build_const",
|
|
|
|
]
|
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "criterion"
|
|
|
|
version = "0.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "70daa7ceec6cf143990669a04c7df13391d55fb27bd4079d252fca774ba244d8"
|
|
|
|
dependencies = [
|
|
|
|
"atty",
|
|
|
|
"cast",
|
2020-10-20 17:55:39 +00:00
|
|
|
"clap 2.33.3",
|
2020-07-01 09:38:33 +00:00
|
|
|
"criterion-plot",
|
|
|
|
"csv",
|
|
|
|
"itertools",
|
|
|
|
"lazy_static",
|
|
|
|
"num-traits",
|
|
|
|
"oorandom",
|
|
|
|
"plotters",
|
|
|
|
"rayon",
|
|
|
|
"regex",
|
|
|
|
"serde",
|
|
|
|
"serde_cbor",
|
|
|
|
"serde_derive",
|
|
|
|
"serde_json",
|
|
|
|
"tinytemplate",
|
|
|
|
"walkdir",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "criterion-plot"
|
|
|
|
version = "0.4.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e022feadec601fba1649cfa83586381a4ad31c6bf3a9ab7d408118b05dd9889d"
|
|
|
|
dependencies = [
|
|
|
|
"cast",
|
|
|
|
"itertools",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-channel"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.4.4"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"crossbeam-utils 0.7.2",
|
|
|
|
"maybe-uninit",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-channel"
|
|
|
|
version = "0.5.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"crossbeam-utils 0.8.0",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-deque"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.8.0"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 1.0.0",
|
2020-03-11 08:49:21 +00:00
|
|
|
"crossbeam-epoch",
|
2020-10-20 17:55:39 +00:00
|
|
|
"crossbeam-utils 0.8.0",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-epoch"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.9.0"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "ec0f606a85340376eef0d6d8fec399e6d4a544d648386c6645eb6d0653b27d9f"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"const_fn",
|
|
|
|
"crossbeam-utils 0.8.0",
|
2020-03-11 08:49:21 +00:00
|
|
|
"lazy_static",
|
|
|
|
"memoffset",
|
|
|
|
"scopeguard",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-01-11 11:26:48 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-queue"
|
2020-06-13 15:54:38 +00:00
|
|
|
version = "0.2.3"
|
2020-01-11 11:26:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-13 15:54:38 +00:00
|
|
|
checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
|
2020-01-11 11:26:48 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
|
|
|
"crossbeam-utils 0.7.2",
|
2020-06-13 15:54:38 +00:00
|
|
|
"maybe-uninit",
|
2020-01-11 11:26:48 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-utils"
|
2020-03-02 08:29:52 +00:00
|
|
|
version = "0.7.2"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"autocfg 1.0.1",
|
|
|
|
"cfg-if 0.1.10",
|
|
|
|
"lazy_static",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-utils"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ec91540d98355f690a86367e566ecad2e9e579f230230eb7c21398372be73ea5"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg 1.0.1",
|
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"const_fn",
|
2020-03-11 08:49:21 +00:00
|
|
|
"lazy_static",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-01-03 11:17:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crypto-mac"
|
2020-09-17 12:26:59 +00:00
|
|
|
version = "0.9.1"
|
2020-01-03 11:17:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-09-17 12:26:59 +00:00
|
|
|
checksum = "58bcd97a54c7ca5ce2f6eb16f6bede5b0ab5f0055fedc17d2f0b4466e21671ca"
|
2020-01-03 11:17:06 +00:00
|
|
|
dependencies = [
|
2020-07-05 10:48:36 +00:00
|
|
|
"generic-array",
|
2020-03-11 08:49:21 +00:00
|
|
|
"subtle",
|
2020-01-03 11:17:06 +00:00
|
|
|
]
|
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "csv"
|
|
|
|
version = "1.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "00affe7f6ab566df61b4be3ce8cf16bc2576bca0963ceb0955e45d514bf9a279"
|
|
|
|
dependencies = [
|
|
|
|
"bstr",
|
|
|
|
"csv-core",
|
|
|
|
"itoa",
|
|
|
|
"ryu",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "csv-core"
|
|
|
|
version = "0.1.10"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
|
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "derive_more"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.99.11"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "41cb0e6161ad61ed084a36ba71fbba9e3ac5aee3606fb607fe08da6acbcf3d8c"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2020-04-21 07:54:32 +00:00
|
|
|
[[package]]
|
|
|
|
name = "dialoguer"
|
2020-10-21 23:39:05 +00:00
|
|
|
version = "0.7.1"
|
2020-04-21 07:54:32 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-21 23:39:05 +00:00
|
|
|
checksum = "70f807b2943dc90f9747497d9d65d7e92472149be0b88bf4ce1201b4ac979c26"
|
2020-04-21 07:54:32 +00:00
|
|
|
dependencies = [
|
2020-10-21 23:39:05 +00:00
|
|
|
"console 0.13.0",
|
2020-04-21 07:54:32 +00:00
|
|
|
"lazy_static",
|
|
|
|
"tempfile",
|
2020-10-21 23:39:05 +00:00
|
|
|
"zeroize 0.9.3",
|
2020-04-21 07:54:32 +00:00
|
|
|
]
|
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "digest"
|
|
|
|
version = "0.9.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
|
|
|
|
dependencies = [
|
2020-07-05 10:48:36 +00:00
|
|
|
"generic-array",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-03-21 09:34:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "discard"
|
|
|
|
version = "1.0.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "dotenv"
|
|
|
|
version = "0.15.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "either"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.6.1"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
|
2020-07-05 10:48:36 +00:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-04-21 07:54:32 +00:00
|
|
|
[[package]]
|
|
|
|
name = "encode_unicode"
|
|
|
|
version = "0.3.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
|
|
|
2020-06-06 20:28:49 +00:00
|
|
|
[[package]]
|
|
|
|
name = "encoding_rs"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.8.24"
|
2020-06-06 20:28:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "a51b8cf747471cb9499b6d59e59b0444f4c90eba8968c4e44874e92b5b64ace2"
|
2020-06-06 20:28:49 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-06-06 20:28:49 +00:00
|
|
|
]
|
|
|
|
|
2020-01-11 09:01:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "env_logger"
|
|
|
|
version = "0.7.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
|
2020-01-11 09:01:21 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"atty",
|
|
|
|
"humantime",
|
|
|
|
"log",
|
|
|
|
"regex",
|
|
|
|
"termcolor",
|
2020-01-11 09:01:21 +00:00
|
|
|
]
|
|
|
|
|
2020-07-21 06:13:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "event-listener"
|
2020-10-20 10:21:01 +00:00
|
|
|
version = "2.5.1"
|
2020-07-21 06:13:05 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 10:21:01 +00:00
|
|
|
checksum = "f7531096570974c3a9dcf9e4b8e1cede1ec26cf5046219fb3b9d897503b9be59"
|
2020-07-21 06:13:05 +00:00
|
|
|
|
2020-06-19 09:49:41 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fastrand"
|
2020-10-20 10:21:01 +00:00
|
|
|
version = "1.4.0"
|
2020-06-19 09:49:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 10:21:01 +00:00
|
|
|
checksum = "ca5faf057445ce5c9d4329e382b2ce7ca38550ef3b73a5348362d5f24e0c7fe3"
|
|
|
|
dependencies = [
|
|
|
|
"instant",
|
|
|
|
]
|
2020-06-19 09:49:41 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fnv"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "1.0.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "foreign-types"
|
|
|
|
version = "0.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"foreign-types-shared",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "foreign-types-shared"
|
|
|
|
version = "0.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
2020-01-11 03:39:29 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fuchsia-zircon"
|
|
|
|
version = "0.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"bitflags",
|
|
|
|
"fuchsia-zircon-sys",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "fuchsia-zircon-sys"
|
|
|
|
version = "0.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "95314d38584ffbfda215621d723e0a3906f032e03ae5551e650058dac83d4797"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-executor",
|
|
|
|
"futures-io",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-channel"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "0448174b01148032eed37ac4aed28963aaaa8cfa93569a08e5b479bbc6c2c151"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-core"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "18eaa56102984bed2c88ea39026cff3ce3b4c7f508ca970cedf2450ea10d4e46"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-executor"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "f5f8e0c9258abaea85e78ebdda17ef9666d390e987f006be6080dfe354b708cb"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"futures-core",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-io"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "6e1798854a4727ff944a7b12aa999f58ce7aa81db80d2dfaaf2ba06f065ddd2b"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-07-21 06:13:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "futures-lite"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.11.2"
|
2020-07-21 06:13:05 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "5e6c079abfac3ab269e2927ec048dabc89d009ebfdda6b8ee86624f30c689658"
|
2020-07-21 06:13:05 +00:00
|
|
|
dependencies = [
|
|
|
|
"fastrand",
|
|
|
|
"futures-core",
|
|
|
|
"futures-io",
|
|
|
|
"memchr",
|
2020-07-27 05:31:28 +00:00
|
|
|
"parking",
|
2020-07-21 06:13:05 +00:00
|
|
|
"pin-project-lite",
|
2020-07-27 05:31:28 +00:00
|
|
|
"waker-fn",
|
2020-07-21 06:13:05 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "futures-macro"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "e36fccf3fc58563b4a14d265027c627c3b665d7fed489427e88e7cc929559efe"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro-hack",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-sink"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "0e3ca3f17d6e8804ae5d3df7a7d35b2b3a6fe89dac84b31872720fc3060a0b11"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-task"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "96d502af37186c4fef99453df03e374683f8a1eec9dcc1e66b3b82dc8278ce3c"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"once_cell",
|
|
|
|
]
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-util"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "abcb44342f62e6f3e8ac427b8aa815f724fd705dfad060b18ac7866c15bb8e34"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-io",
|
|
|
|
"futures-macro",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
|
|
|
"memchr",
|
2020-05-26 08:56:03 +00:00
|
|
|
"pin-project",
|
2020-03-11 08:49:21 +00:00
|
|
|
"pin-utils",
|
|
|
|
"proc-macro-hack",
|
|
|
|
"proc-macro-nested",
|
|
|
|
"slab",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "generic-array"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.14.4"
|
2020-06-13 15:54:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
|
2020-06-13 15:54:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"typenum",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "getrandom"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.1.15"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-03-11 08:49:21 +00:00
|
|
|
"libc",
|
2020-10-20 17:55:39 +00:00
|
|
|
"wasi 0.9.0+wasi-snapshot-preview1",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-10-14 13:48:17 +00:00
|
|
|
[[package]]
|
|
|
|
name = "getrandom"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ee8025cf36f917e6a52cce185b7c7177689b838b7ec138364e50cc2277a56cf4"
|
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-10-14 13:48:17 +00:00
|
|
|
"libc",
|
2020-10-20 17:55:39 +00:00
|
|
|
"wasi 0.9.0+wasi-snapshot-preview1",
|
2020-10-14 13:48:17 +00:00
|
|
|
]
|
|
|
|
|
2020-01-17 03:26:02 +00:00
|
|
|
[[package]]
|
|
|
|
name = "glob"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
|
2020-01-17 03:26:02 +00:00
|
|
|
|
2020-05-26 08:56:03 +00: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",
|
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"web-sys",
|
|
|
|
]
|
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "half"
|
|
|
|
version = "1.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d36fab90f82edc3c747f9d438e06cf0a491055896f2a279638bb5beed6c40177"
|
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.9.1"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
|
2020-05-26 08:56:03 +00:00
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "heck"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"unicode-segmentation",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.1.17"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"libc",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-03-01 10:01:00 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hex"
|
|
|
|
version = "0.4.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
|
2020-03-01 10:01:00 +00:00
|
|
|
|
2020-01-03 11:17:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hmac"
|
2020-09-17 12:26:59 +00:00
|
|
|
version = "0.9.0"
|
2020-01-03 11:17:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-09-17 12:26:59 +00:00
|
|
|
checksum = "deae6d9dbb35ec2c502d62b8f7b1c000a0822c3b0794ba36b3149c0a1c840dff"
|
2020-01-03 11:17:06 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"crypto-mac",
|
2020-07-05 10:48:36 +00:00
|
|
|
"digest",
|
2020-01-03 11:17:06 +00:00
|
|
|
]
|
|
|
|
|
2020-01-11 09:01:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "humantime"
|
|
|
|
version = "1.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
|
2020-01-11 09:01:21 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"quick-error",
|
2020-01-11 09:01:21 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "idna"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"matches",
|
|
|
|
"unicode-bidi",
|
|
|
|
"unicode-normalization",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "indexmap"
|
2020-09-17 12:25:58 +00:00
|
|
|
version = "1.6.0"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-09-17 12:25:58 +00:00
|
|
|
checksum = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"autocfg 1.0.1",
|
2020-07-18 12:43:59 +00:00
|
|
|
"hashbrown",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-06-27 12:57:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "instant"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.1.8"
|
2020-06-27 12:57:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "cb1fc4429a33e1f80d41dc9fea4d108a88bec1de8053878898ae448a0b52f613"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if 1.0.0",
|
|
|
|
]
|
2020-06-27 12:57:21 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "iovec"
|
|
|
|
version = "0.1.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"libc",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-03-19 10:21:09 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ipnetwork"
|
2020-07-17 12:36:56 +00:00
|
|
|
version = "0.17.0"
|
2020-03-19 10:21:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-17 12:36:56 +00:00
|
|
|
checksum = "02c3eaab3ac0ede60ffa41add21970a7df7d91772c03383aac6c2c3d53cc716b"
|
2020-03-19 10:21:09 +00:00
|
|
|
|
2020-04-15 17:44:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "itertools"
|
|
|
|
version = "0.9.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
|
|
|
|
dependencies = [
|
|
|
|
"either",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
2020-06-19 09:49:41 +00:00
|
|
|
version = "0.4.6"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-19 09:49:41 +00:00
|
|
|
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "js-sys"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.45"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "ca059e81d9486668f12d455a4ea6daa600bd408134cd17e3d3fb5a32d1f016f8"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
2020-08-24 19:44:55 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "json"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"async-std",
|
|
|
|
"dotenv",
|
|
|
|
"futures",
|
|
|
|
"paw",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
"sqlx",
|
|
|
|
"structopt",
|
|
|
|
]
|
2020-05-26 08:56:03 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "kernel32-sys"
|
|
|
|
version = "0.2.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"winapi 0.2.8",
|
|
|
|
"winapi-build",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "kv-log-macro"
|
2020-07-17 12:36:56 +00:00
|
|
|
version = "1.0.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-17 12:36:56 +00:00
|
|
|
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"log",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
|
|
|
version = "1.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
2020-06-13 15:54:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"spin",
|
|
|
|
]
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2020-10-20 10:21:01 +00:00
|
|
|
version = "0.2.79"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 10:21:01 +00:00
|
|
|
checksum = "2448f6066e80e3bfc792e9c98bf705b4b0fc6e8ef5b43e5889aff0eaa9c58743"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "libm"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a"
|
|
|
|
|
2020-03-11 18:01:17 +00:00
|
|
|
[[package]]
|
|
|
|
name = "libsqlite3-sys"
|
2020-10-26 07:44:12 +00:00
|
|
|
version = "0.20.1"
|
2020-03-11 18:01:17 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-26 07:44:12 +00:00
|
|
|
checksum = "64d31059f22935e6c31830db5249ba2b7ecd54fd73a9909286f0a67aa55c2fbd"
|
2020-03-11 18:01:17 +00:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
|
|
|
]
|
|
|
|
|
2020-06-24 14:11:46 +00:00
|
|
|
[[package]]
|
|
|
|
name = "linked-hash-map"
|
|
|
|
version = "0.5.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a"
|
|
|
|
|
2020-06-27 12:57:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "lock_api"
|
2020-07-17 12:36:56 +00:00
|
|
|
version = "0.4.1"
|
2020-06-27 12:57:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-17 12:36:56 +00:00
|
|
|
checksum = "28247cc5a5be2f05fbcd76dd0cf2c7d3b5400cb978a28042abcd4fa0b3f8261c"
|
2020-06-27 12:57:21 +00:00
|
|
|
dependencies = [
|
|
|
|
"scopeguard",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2020-07-17 12:36:56 +00:00
|
|
|
version = "0.4.11"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-17 12:36:56 +00:00
|
|
|
checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-06-24 14:11:46 +00:00
|
|
|
[[package]]
|
|
|
|
name = "lru-cache"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
|
|
|
|
dependencies = [
|
|
|
|
"linked-hash-map",
|
|
|
|
]
|
|
|
|
|
Format SQL queries when printing them to the logs
Before, the query would be formatted equivalent to the input string:
```
[2020-04-18T23:47:32Z DEBUG sqlx_core::postgres::executor] SELECT id, queue, ..., elapsed: 2.320µs
SELECT id, queue, payload, status, priority, created_at, updated_at
FROM jobs
WHERE status = $1
ORDER BY priority ASC, created_at ASC
```
After, the query is formatted cleanly and consistently:
```
[2020-04-19T00:30:18Z DEBUG sqlx_core::postgres::executor] SELECT id, queue, ..., elapsed: 2.280µs
SELECT
id,
queue,
payload,
status,
priority,
created_at,
updated_at
FROM
jobs
WHERE
status = $1
ORDER BY
priority ASC,
created_at ASC
```
This uses the `sqlformat` crate, which was ported from the
Javascript `sql-formatter-plus` library specifically for this purpose.
2020-04-18 23:50:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "maplit"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "matches"
|
|
|
|
version = "0.1.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "maybe-uninit"
|
|
|
|
version = "2.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "md-5"
|
2020-07-03 05:38:34 +00:00
|
|
|
version = "0.9.1"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-03 05:38:34 +00:00
|
|
|
checksum = "7b5a279bb9607f9f53c22d496eade00d138d1bdcccd07d74650387cf94942a15"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-07-05 10:48:36 +00:00
|
|
|
"block-buffer",
|
|
|
|
"digest",
|
|
|
|
"opaque-debug",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2020-03-02 08:29:52 +00:00
|
|
|
version = "2.3.3"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "memoffset"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.5.6"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"autocfg 1.0.1",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "mio"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "0.6.22"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-03-11 08:49:21 +00:00
|
|
|
"fuchsia-zircon",
|
|
|
|
"fuchsia-zircon-sys",
|
|
|
|
"iovec",
|
|
|
|
"kernel32-sys",
|
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"miow 0.2.1",
|
|
|
|
"net2",
|
|
|
|
"slab",
|
|
|
|
"winapi 0.2.8",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-01-15 09:17:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "mio-named-pipes"
|
2020-07-03 05:38:34 +00:00
|
|
|
version = "0.1.7"
|
2020-01-15 09:17:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-03 05:38:34 +00:00
|
|
|
checksum = "0840c1c50fd55e521b247f949c241c9997709f23bd7f023b9762cd561e935656"
|
2020-01-15 09:17:33 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"log",
|
|
|
|
"mio",
|
2020-06-09 09:16:47 +00:00
|
|
|
"miow 0.3.5",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-01-15 09:17:33 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "mio-uds"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "0.6.8"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"iovec",
|
|
|
|
"libc",
|
|
|
|
"mio",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "miow"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"kernel32-sys",
|
|
|
|
"net2",
|
|
|
|
"winapi 0.2.8",
|
|
|
|
"ws2_32-sys",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-01-15 09:17:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "miow"
|
2020-06-09 09:16:47 +00:00
|
|
|
version = "0.3.5"
|
2020-01-15 09:17:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-09 09:16:47 +00:00
|
|
|
checksum = "07b88fb9795d4d36d62a012dfbf49a8f5cf12751f36d31a9dbe66d528e58979e"
|
2020-01-15 09:17:33 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"socket2",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-01-15 09:17:33 +00:00
|
|
|
]
|
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "native-tls"
|
2020-03-11 20:24:05 +00:00
|
|
|
version = "0.2.4"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 20:24:05 +00:00
|
|
|
checksum = "2b0d88c06fe90d5ee94048ba40409ef1d9315d86f6f38c2efdaad4fb50c58b2d"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"openssl",
|
|
|
|
"openssl-probe",
|
|
|
|
"openssl-sys",
|
|
|
|
"schannel",
|
|
|
|
"security-framework",
|
|
|
|
"security-framework-sys",
|
|
|
|
"tempfile",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
2020-10-20 17:55:39 +00:00
|
|
|
[[package]]
|
|
|
|
name = "nb-connect"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8123a81538e457d44b933a02faf885d3fe8408806b23fa700e8f01c6c3a98998"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"winapi 0.3.9",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "net2"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.2.35"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "3ebc3ec692ed7c9a255596c67808dee269f64655d8baf7b4f0638e51ba1d6853"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-03-11 08:49:21 +00:00
|
|
|
"libc",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2019-12-31 22:16:48 +00:00
|
|
|
[[package]]
|
|
|
|
name = "num-bigint"
|
2020-02-01 08:47:45 +00:00
|
|
|
version = "0.2.6"
|
2019-12-31 22:16:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
|
2019-12-31 22:16:48 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"autocfg 1.0.1",
|
2020-06-13 15:54:38 +00:00
|
|
|
"num-integer",
|
|
|
|
"num-traits",
|
|
|
|
]
|
|
|
|
|
2020-10-30 10:27:19 +00:00
|
|
|
[[package]]
|
|
|
|
name = "num-bigint"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b7f3fc75e3697059fb1bc465e3d8cca6cf92f56854f201158b3f9c77d5a3cfa0"
|
|
|
|
dependencies = [
|
2020-11-12 15:42:50 +00:00
|
|
|
"autocfg 1.0.1",
|
2020-10-30 10:27:19 +00:00
|
|
|
"num-integer",
|
|
|
|
"num-traits",
|
|
|
|
]
|
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "num-bigint-dig"
|
|
|
|
version = "0.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b3d03c330f9f7a2c19e3c0b42698e48141d0809c78cd9b6219f85bd7d7e892aa"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg 0.1.7",
|
|
|
|
"byteorder",
|
|
|
|
"lazy_static",
|
|
|
|
"libm",
|
2020-03-11 08:49:21 +00:00
|
|
|
"num-integer",
|
2020-06-13 15:54:38 +00:00
|
|
|
"num-iter",
|
2020-03-11 08:49:21 +00:00
|
|
|
"num-traits",
|
2020-06-13 15:54:38 +00:00
|
|
|
"rand",
|
|
|
|
"serde",
|
2020-07-27 09:23:34 +00:00
|
|
|
"smallvec",
|
2020-10-20 17:55:39 +00:00
|
|
|
"zeroize 1.1.1",
|
2019-12-31 22:16:48 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "num-integer"
|
2020-06-13 15:54:38 +00:00
|
|
|
version = "0.1.43"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8d59457e662d541ba17869cf51cf177c0b5f0cbf476c66bdc90bf1edac4f875b"
|
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"autocfg 1.0.1",
|
2020-06-13 15:54:38 +00:00
|
|
|
"num-traits",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num-iter"
|
|
|
|
version = "0.1.41"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-13 15:54:38 +00:00
|
|
|
checksum = "7a6e6b7c748f995c4c29c5f5ae0248536e04a5739927c74ec0fa564805094b9f"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"autocfg 1.0.1",
|
2020-06-13 15:54:38 +00:00
|
|
|
"num-integer",
|
2020-03-11 08:49:21 +00:00
|
|
|
"num-traits",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num-traits"
|
2020-06-13 15:54:38 +00:00
|
|
|
version = "0.2.12"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-13 15:54:38 +00:00
|
|
|
checksum = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"autocfg 1.0.1",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num_cpus"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "1.13.0"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"hermit-abi",
|
|
|
|
"libc",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "once_cell"
|
2020-10-20 10:21:01 +00:00
|
|
|
version = "1.4.1"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 10:21:01 +00:00
|
|
|
checksum = "260e51e7efe62b592207e9e13a68e43692a7a279171d6ba57abd208bf23645ad"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "oorandom"
|
|
|
|
version = "11.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a170cebd8021a008ea92e4db85a72f80b35df514ec664b296fdcbb654eac0b2c"
|
|
|
|
|
2020-06-27 12:56:30 +00:00
|
|
|
[[package]]
|
|
|
|
name = "opaque-debug"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
|
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "openssl"
|
2020-06-27 12:56:30 +00:00
|
|
|
version = "0.10.30"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-27 12:56:30 +00:00
|
|
|
checksum = "8d575eff3665419f9b83678ff2815858ad9d11567e082f5ac1814baba4e2bcb4"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"bitflags",
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-03-11 08:49:21 +00:00
|
|
|
"foreign-types",
|
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
|
|
|
"openssl-sys",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "openssl-probe"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
|
2020-01-11 03:39:29 +00:00
|
|
|
|
2020-07-21 14:11:47 +00:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-src"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "111.12.0+1.1.1h"
|
2020-07-21 14:11:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "858a4132194f8570a7ee9eb8629e85b23cbc4565f2d4a162e87556e5956abf61"
|
2020-07-21 14:11:47 +00:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
]
|
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-sys"
|
2020-06-07 23:29:46 +00:00
|
|
|
version = "0.9.58"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-07 23:29:46 +00:00
|
|
|
checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"autocfg 1.0.1",
|
2020-03-11 08:49:21 +00:00
|
|
|
"cc",
|
|
|
|
"libc",
|
2020-07-21 14:11:47 +00:00
|
|
|
"openssl-src",
|
2020-03-11 08:49:21 +00:00
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
2020-07-12 10:43:49 +00:00
|
|
|
[[package]]
|
|
|
|
name = "os_str_bytes"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "2.3.2"
|
2020-07-12 10:43:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "2ac6fe3538f701e339953a3ebbe4f39941aababa8a3f6964635b24ab526daeac"
|
2020-07-12 10:43:49 +00:00
|
|
|
|
2020-06-19 09:49:41 +00:00
|
|
|
[[package]]
|
|
|
|
name = "parking"
|
2020-10-20 10:21:01 +00:00
|
|
|
version = "2.0.0"
|
2020-06-19 09:49:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 10:21:01 +00:00
|
|
|
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
|
2020-06-19 09:49:41 +00:00
|
|
|
|
2020-06-27 12:57:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "parking_lot"
|
|
|
|
version = "0.11.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a4893845fa2ca272e647da5d0e46660a314ead9c2fdd9a883aabc32e481a8733"
|
|
|
|
dependencies = [
|
|
|
|
"instant",
|
2020-07-27 09:23:34 +00:00
|
|
|
"lock_api",
|
|
|
|
"parking_lot_core",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-06-27 12:57:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "parking_lot_core"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c361aa727dd08437f2f1447be8b59a33b0edd15e0fcee698f935613d9efbca9b"
|
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-07-27 09:23:34 +00:00
|
|
|
"cloudabi",
|
2020-06-27 12:57:21 +00:00
|
|
|
"instant",
|
2020-03-11 08:49:21 +00:00
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
2020-07-27 09:23:34 +00:00
|
|
|
"smallvec",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-03-02 08:29:52 +00:00
|
|
|
]
|
|
|
|
|
2020-03-02 04:07:59 +00:00
|
|
|
[[package]]
|
|
|
|
name = "paste"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.2"
|
2020-03-02 04:07:59 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "ba7ae1a2180ed02ddfdb5ab70c70d596a26dd642e097bb6fe78b1bde8588ed97"
|
2020-03-02 04:07:59 +00:00
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "paw"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "09c0fc9b564dbc3dc2ed7c92c0c144f4de340aa94514ce2b446065417c4084e9"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"paw-attributes",
|
|
|
|
"paw-raw",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "paw-attributes"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "0f35583365be5d148e959284f42526841917b7bfa09e2d1a7ad5dde2cf0eaa39"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "paw-raw"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "7f0b59668fe80c5afe998f0c0bf93322bf2cd66cafeeb80581f291716f3467f2"
|
2020-02-01 07:33:42 +00:00
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pem"
|
|
|
|
version = "0.8.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "59698ea79df9bf77104aefd39cc3ec990cb9693fb59c3b0a70ddf2646fdffb4b"
|
|
|
|
dependencies = [
|
2020-09-30 18:34:03 +00:00
|
|
|
"base64 0.12.3",
|
2020-06-13 15:54:38 +00:00
|
|
|
"once_cell",
|
|
|
|
"regex",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "percent-encoding"
|
|
|
|
version = "2.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pin-project"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.1"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "ee41d838744f60d959d7074e3afb6b35c7456d0f61cad38a24e35e6553f73841"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"pin-project-internal",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pin-project-internal"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.1"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "81a4ffa594b66bff340084d4081df649a7dc049ac8d7fc458d8e628bfbbb2f86"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pin-project-lite"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.1.11"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pin-utils"
|
2020-05-26 08:56:03 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pkg-config"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.19"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
|
2020-01-11 03:39:29 +00:00
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "plotters"
|
|
|
|
version = "0.2.15"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0d1685fbe7beba33de0330629da9d955ac75bd54f33d7b79f9a895590124f6bb"
|
|
|
|
dependencies = [
|
|
|
|
"js-sys",
|
|
|
|
"num-traits",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"web-sys",
|
|
|
|
]
|
|
|
|
|
2020-10-20 10:21:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "polling"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "2.0.2"
|
2020-10-20 10:21:01 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "a2a7bc6b2a29e632e45451c941832803a18cce6781db04de8a04696cdca8bde4"
|
2020-10-20 10:21:01 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-10-20 10:21:01 +00:00
|
|
|
"libc",
|
|
|
|
"log",
|
2020-10-20 17:55:39 +00:00
|
|
|
"wepoll-sys",
|
2020-10-20 10:21:01 +00:00
|
|
|
"winapi 0.3.9",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ppv-lite86"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.2.9"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "c36fa947111f5c62a733b652544dd0016a43ce89619538a8ef92724a6f501a20"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.4"
|
2020-02-01 07:33:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-09-30 17:04:14 +00:00
|
|
|
"proc-macro-error-attr",
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"version_check",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error-attr"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.4"
|
2020-02-01 07:33:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"version_check",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-hack"
|
2020-07-27 05:31:28 +00:00
|
|
|
version = "0.5.18"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-27 05:31:28 +00:00
|
|
|
checksum = "99c605b9a0adc77b7211c6b1f722dcb613d68d66859a44f3d485a6da332b0598"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-nested"
|
2020-06-19 09:49:41 +00:00
|
|
|
version = "0.1.6"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-19 09:49:41 +00:00
|
|
|
checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.24"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"unicode-xid",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-01-11 09:01:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "quick-error"
|
|
|
|
version = "1.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
2020-01-11 09:01:21 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2020-06-09 09:16:47 +00:00
|
|
|
version = "1.0.7"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-09 09:16:47 +00:00
|
|
|
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro2",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand"
|
2020-01-11 11:30:03 +00:00
|
|
|
version = "0.7.3"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"getrandom 0.1.15",
|
2020-03-11 08:49:21 +00:00
|
|
|
"libc",
|
|
|
|
"rand_chacha",
|
|
|
|
"rand_core",
|
|
|
|
"rand_hc",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_chacha"
|
2020-03-11 20:24:05 +00:00
|
|
|
version = "0.2.2"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 20:24:05 +00:00
|
|
|
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 20:24:05 +00:00
|
|
|
"ppv-lite86",
|
2020-03-11 08:49:21 +00:00
|
|
|
"rand_core",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_core"
|
|
|
|
version = "0.5.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"getrandom 0.1.15",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_hc"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"rand_core",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rayon"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.5.0"
|
2020-07-01 09:38:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
|
2020-07-01 09:38:33 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"autocfg 1.0.1",
|
2020-07-01 09:38:33 +00:00
|
|
|
"crossbeam-deque",
|
|
|
|
"either",
|
|
|
|
"rayon-core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rayon-core"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.9.0"
|
2020-07-01 09:38:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
|
2020-07-01 09:38:33 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"crossbeam-channel 0.5.0",
|
2020-07-01 09:38:33 +00:00
|
|
|
"crossbeam-deque",
|
2020-10-20 17:55:39 +00:00
|
|
|
"crossbeam-utils 0.8.0",
|
2020-07-01 09:38:33 +00:00
|
|
|
"lazy_static",
|
|
|
|
"num_cpus",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "redox_syscall"
|
2020-07-17 12:36:56 +00:00
|
|
|
version = "0.1.57"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-17 12:36:56 +00:00
|
|
|
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-01-11 09:01:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.4.1"
|
2020-01-11 09:01:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "8963b85b8ce3074fecffde43b4b0dded83ce2f367dc8d363afc56679f3ee820b"
|
2020-01-11 09:01:21 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"aho-corasick",
|
|
|
|
"memchr",
|
|
|
|
"regex-syntax",
|
|
|
|
"thread_local",
|
2020-01-11 09:01:21 +00:00
|
|
|
]
|
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "regex-automata"
|
|
|
|
version = "0.1.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
|
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
|
|
|
]
|
|
|
|
|
2020-01-11 09:01:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.6.20"
|
2020-01-11 09:01:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "8cab7a364d15cde1e505267766a2d3c4e22a843e1a601f0fa7564c0f82ced11c"
|
2020-01-11 09:01:21 +00:00
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "remove_dir_all"
|
2020-06-13 15:54:38 +00:00
|
|
|
version = "0.5.3"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-13 15:54:38 +00:00
|
|
|
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
2020-10-06 13:24:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "remove_dir_all"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.6.1"
|
2020-10-06 13:24:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "d7b19f5c2df95a07275e7224924cc62f76f04525f4fda801473f85e325e81977"
|
2020-10-06 13:24:43 +00:00
|
|
|
dependencies = [
|
|
|
|
"log",
|
|
|
|
"num_cpus",
|
|
|
|
"rayon",
|
|
|
|
"winapi 0.3.9",
|
|
|
|
]
|
|
|
|
|
2020-10-20 10:21:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ring"
|
|
|
|
version = "0.16.15"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "952cd6b98c85bbc30efa1ba5783b8abf12fec8b3287ffa52605b9432313e34e4"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"once_cell",
|
|
|
|
"spin",
|
|
|
|
"untrusted",
|
|
|
|
"web-sys",
|
|
|
|
"winapi 0.3.9",
|
|
|
|
]
|
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rsa"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3648b669b10afeab18972c105e284a7b953a669b0be3514c27f9b17acab2f9cd"
|
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
2020-07-05 10:48:36 +00:00
|
|
|
"digest",
|
2020-06-13 15:54:38 +00:00
|
|
|
"lazy_static",
|
|
|
|
"num-bigint-dig",
|
|
|
|
"num-integer",
|
|
|
|
"num-iter",
|
|
|
|
"num-traits",
|
|
|
|
"pem",
|
|
|
|
"rand",
|
2020-07-05 10:48:36 +00:00
|
|
|
"sha2",
|
2020-06-13 15:54:38 +00:00
|
|
|
"simple_asn1",
|
|
|
|
"subtle",
|
|
|
|
"thiserror",
|
2020-10-20 17:55:39 +00:00
|
|
|
"zeroize 1.1.1",
|
2020-06-13 15:54:38 +00:00
|
|
|
]
|
|
|
|
|
2020-06-26 16:01:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rust_decimal"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.8.1"
|
2020-06-26 16:01:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "c9e81662973c7a8d9663e64a0de4cd642b89a21d64966e3d99606efdc5fb0cc6"
|
2020-06-26 16:01:07 +00:00
|
|
|
dependencies = [
|
|
|
|
"num-traits",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rustc_version"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-07-27 05:31:28 +00:00
|
|
|
"semver",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-10-20 10:21:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rustls"
|
|
|
|
version = "0.18.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5d1126dcf58e93cee7d098dbda643b5f92ed724f1f6a63007c1116eed6700c81"
|
|
|
|
dependencies = [
|
|
|
|
"base64 0.12.3",
|
|
|
|
"log",
|
|
|
|
"ring",
|
|
|
|
"sct",
|
|
|
|
"webpki",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ryu"
|
2020-06-07 23:29:46 +00:00
|
|
|
version = "1.0.5"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-07 23:29:46 +00:00
|
|
|
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "same-file"
|
|
|
|
version = "1.0.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
|
|
dependencies = [
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "schannel"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "0.1.19"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"lazy_static",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "scopeguard"
|
2020-03-02 08:29:52 +00:00
|
|
|
version = "1.1.0"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-10-20 10:21:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sct"
|
|
|
|
version = "0.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e3042af939fca8c3453b7af0f1c66e533a15a86169e39de2657310ade8f98d3c"
|
|
|
|
dependencies = [
|
|
|
|
"ring",
|
|
|
|
"untrusted",
|
|
|
|
]
|
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "security-framework"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "0.4.4"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-03-11 20:24:05 +00:00
|
|
|
"bitflags",
|
2020-03-11 08:49:21 +00:00
|
|
|
"core-foundation",
|
|
|
|
"core-foundation-sys",
|
2020-03-31 01:46:31 +00:00
|
|
|
"libc",
|
2020-03-11 08:49:21 +00:00
|
|
|
"security-framework-sys",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "security-framework-sys"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "0.4.3"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"core-foundation-sys",
|
2020-03-11 20:24:05 +00:00
|
|
|
"libc",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "semver"
|
|
|
|
version = "0.9.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"semver-parser",
|
2020-05-14 03:30:12 +00:00
|
|
|
"serde",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "semver-parser"
|
|
|
|
version = "0.7.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.117"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "b88fa983de7720629c9387e9f517353ed404164b1e482c970a90c1a4aaf7dc1a"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"serde_derive",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde_cbor"
|
|
|
|
version = "0.11.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1e18acfa2f90e8b735b2836ab8d538de304cbb6729a7360729ea5a895d15a622"
|
|
|
|
dependencies = [
|
|
|
|
"half",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde_derive"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.117"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "cbd1ae72adb44aab48f325a02444a5fc079349a8d804c1fc922aed3f7454c74e"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_json"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.59"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "dcac07dbffa1c65e7f816ab9eba78eb142c6d44410f4eeba1e26e4f5dfa56b95"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-05-13 03:19:25 +00:00
|
|
|
"indexmap",
|
2020-03-11 08:49:21 +00:00
|
|
|
"itoa",
|
|
|
|
"ryu",
|
|
|
|
"serde",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2019-12-31 22:16:48 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sha-1"
|
2020-06-27 12:56:30 +00:00
|
|
|
version = "0.9.1"
|
2019-12-31 22:16:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-27 12:56:30 +00:00
|
|
|
checksum = "170a36ea86c864a3f16dd2687712dd6646f7019f301e57537c7f4dc9f5916770"
|
2019-12-31 22:16:48 +00:00
|
|
|
dependencies = [
|
2020-07-05 10:48:36 +00:00
|
|
|
"block-buffer",
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-06-27 12:56:30 +00:00
|
|
|
"cpuid-bool",
|
2020-07-05 10:48:36 +00:00
|
|
|
"digest",
|
|
|
|
"opaque-debug",
|
2019-12-31 22:16:48 +00:00
|
|
|
]
|
|
|
|
|
2020-03-21 09:34:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sha1"
|
|
|
|
version = "0.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
|
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sha2"
|
2020-06-27 12:56:30 +00:00
|
|
|
version = "0.9.1"
|
2020-06-13 15:54:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-27 12:56:30 +00:00
|
|
|
checksum = "2933378ddfeda7ea26f48c555bdad8bb446bf8a3d17832dc83e380d444cfb8c1"
|
2020-06-13 15:54:38 +00:00
|
|
|
dependencies = [
|
2020-07-05 10:48:36 +00:00
|
|
|
"block-buffer",
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-06-27 12:56:30 +00:00
|
|
|
"cpuid-bool",
|
2020-07-05 10:48:36 +00:00
|
|
|
"digest",
|
|
|
|
"opaque-debug",
|
2019-12-31 22:16:48 +00:00
|
|
|
]
|
|
|
|
|
2020-01-15 09:17:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "signal-hook-registry"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.2.1"
|
2020-01-15 09:17:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "a3e12110bc539e657a646068aaf5eb5b63af9d0c1f7b29c97113fad80e15f035"
|
2020-01-15 09:17:33 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"arc-swap",
|
|
|
|
"libc",
|
2020-01-15 09:17:33 +00:00
|
|
|
]
|
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "simple_asn1"
|
2020-07-17 12:36:56 +00:00
|
|
|
version = "0.4.1"
|
2020-06-13 15:54:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-17 12:36:56 +00:00
|
|
|
checksum = "692ca13de57ce0613a363c8c2f1de925adebc81b04c923ac60c5488bb44abe4b"
|
2020-06-13 15:54:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"chrono",
|
2020-10-30 10:27:19 +00:00
|
|
|
"num-bigint 0.2.6",
|
2020-06-13 15:54:38 +00:00
|
|
|
"num-traits",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "slab"
|
|
|
|
version = "0.4.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "smallvec"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.4.2"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "fbee7696b84bbf3d89a1c2eccff0850e3047ed46bfcd2e92c29a2d074d57e252"
|
2020-05-26 08:56:03 +00:00
|
|
|
|
2020-01-15 09:17:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "socket2"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.15"
|
2020-01-15 09:17:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "b1fa70dc5c8104ec096f4fe7ede7a221d35ae13dcd19ba1ad9a81d2cab9a1c44"
|
2020-01-15 09:17:33 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-03-11 08:49:21 +00:00
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-01-15 09:17:33 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "spin"
|
|
|
|
version = "0.5.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
Format SQL queries when printing them to the logs
Before, the query would be formatted equivalent to the input string:
```
[2020-04-18T23:47:32Z DEBUG sqlx_core::postgres::executor] SELECT id, queue, ..., elapsed: 2.320µs
SELECT id, queue, payload, status, priority, created_at, updated_at
FROM jobs
WHERE status = $1
ORDER BY priority ASC, created_at ASC
```
After, the query is formatted cleanly and consistently:
```
[2020-04-19T00:30:18Z DEBUG sqlx_core::postgres::executor] SELECT id, queue, ..., elapsed: 2.280µs
SELECT
id,
queue,
payload,
status,
priority,
created_at,
updated_at
FROM
jobs
WHERE
status = $1
ORDER BY
priority ASC,
created_at ASC
```
This uses the `sqlformat` crate, which was ported from the
Javascript `sql-formatter-plus` library specifically for this purpose.
2020-04-18 23:50:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlformat"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.1.1"
|
Format SQL queries when printing them to the logs
Before, the query would be formatted equivalent to the input string:
```
[2020-04-18T23:47:32Z DEBUG sqlx_core::postgres::executor] SELECT id, queue, ..., elapsed: 2.320µs
SELECT id, queue, payload, status, priority, created_at, updated_at
FROM jobs
WHERE status = $1
ORDER BY priority ASC, created_at ASC
```
After, the query is formatted cleanly and consistently:
```
[2020-04-19T00:30:18Z DEBUG sqlx_core::postgres::executor] SELECT id, queue, ..., elapsed: 2.280µs
SELECT
id,
queue,
payload,
status,
priority,
created_at,
updated_at
FROM
jobs
WHERE
status = $1
ORDER BY
priority ASC,
created_at ASC
```
This uses the `sqlformat` crate, which was ported from the
Javascript `sql-formatter-plus` library specifically for this purpose.
2020-04-18 23:50:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "f699301eec598ffd6c39832cca1416381ea459ac73c506f6ca74c8750fb52969"
|
Format SQL queries when printing them to the logs
Before, the query would be formatted equivalent to the input string:
```
[2020-04-18T23:47:32Z DEBUG sqlx_core::postgres::executor] SELECT id, queue, ..., elapsed: 2.320µs
SELECT id, queue, payload, status, priority, created_at, updated_at
FROM jobs
WHERE status = $1
ORDER BY priority ASC, created_at ASC
```
After, the query is formatted cleanly and consistently:
```
[2020-04-19T00:30:18Z DEBUG sqlx_core::postgres::executor] SELECT id, queue, ..., elapsed: 2.280µs
SELECT
id,
queue,
payload,
status,
priority,
created_at,
updated_at
FROM
jobs
WHERE
status = $1
ORDER BY
priority ASC,
created_at ASC
```
This uses the `sqlformat` crate, which was ported from the
Javascript `sql-formatter-plus` library specifically for this purpose.
2020-04-18 23:50:40 +00:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
"maplit",
|
|
|
|
"regex",
|
|
|
|
]
|
|
|
|
|
2020-03-18 23:58:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlx"
|
2020-07-27 08:43:02 +00:00
|
|
|
version = "0.4.0-beta.1"
|
2020-03-02 08:29:52 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"anyhow",
|
|
|
|
"async-std",
|
|
|
|
"dotenv",
|
|
|
|
"env_logger",
|
2020-07-27 09:23:34 +00:00
|
|
|
"futures",
|
2020-03-11 08:49:21 +00:00
|
|
|
"paste",
|
2020-02-22 11:17:47 +00:00
|
|
|
"serde",
|
2020-03-21 08:16:34 +00:00
|
|
|
"serde_json",
|
2020-03-30 23:35:07 +00:00
|
|
|
"sqlx-core",
|
|
|
|
"sqlx-macros",
|
2020-05-30 21:51:57 +00:00
|
|
|
"sqlx-rt",
|
2020-03-11 08:49:21 +00:00
|
|
|
"sqlx-test",
|
2020-10-20 17:55:39 +00:00
|
|
|
"time 0.2.22",
|
2020-07-27 09:23:34 +00:00
|
|
|
"tokio",
|
2020-03-11 08:49:21 +00:00
|
|
|
"trybuild",
|
2020-07-27 09:23:34 +00:00
|
|
|
"url",
|
2020-03-02 08:29:52 +00:00
|
|
|
]
|
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlx-bench"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"criterion",
|
|
|
|
"dotenv",
|
|
|
|
"once_cell",
|
|
|
|
"sqlx",
|
|
|
|
"sqlx-rt",
|
|
|
|
]
|
|
|
|
|
2020-05-16 03:07:57 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlx-cli"
|
2020-07-27 08:43:02 +00:00
|
|
|
version = "0.1.0-beta.1"
|
2020-05-16 03:07:57 +00:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"async-trait",
|
|
|
|
"cargo_metadata",
|
|
|
|
"chrono",
|
2020-09-30 17:04:14 +00:00
|
|
|
"clap 3.0.0-beta.2",
|
2020-10-21 23:39:05 +00:00
|
|
|
"console 0.11.3",
|
2020-05-16 03:07:57 +00:00
|
|
|
"dialoguer",
|
|
|
|
"dotenv",
|
2020-07-27 09:23:34 +00:00
|
|
|
"futures",
|
2020-05-16 03:07:57 +00:00
|
|
|
"glob",
|
2020-07-21 14:11:47 +00:00
|
|
|
"openssl",
|
2020-10-20 17:55:39 +00:00
|
|
|
"remove_dir_all 0.6.1",
|
2020-05-16 03:07:57 +00:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
"sqlx",
|
2020-07-27 09:23:34 +00:00
|
|
|
"tokio",
|
|
|
|
"url",
|
2020-05-16 03:07:57 +00:00
|
|
|
]
|
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlx-core"
|
2020-07-27 08:43:02 +00:00
|
|
|
version = "0.4.0-beta.1"
|
2020-03-11 08:49:21 +00:00
|
|
|
dependencies = [
|
2020-10-14 13:48:17 +00:00
|
|
|
"ahash",
|
2020-05-26 08:56:03 +00:00
|
|
|
"atoi",
|
2020-09-30 18:34:03 +00:00
|
|
|
"base64 0.13.0",
|
2020-03-19 02:09:10 +00:00
|
|
|
"bigdecimal",
|
2020-07-06 17:39:33 +00:00
|
|
|
"bit-vec",
|
2020-03-11 08:49:21 +00:00
|
|
|
"bitflags",
|
|
|
|
"byteorder",
|
2020-07-27 09:23:34 +00:00
|
|
|
"bytes",
|
2020-03-18 23:58:42 +00:00
|
|
|
"chrono",
|
2020-07-12 10:43:49 +00:00
|
|
|
"crc",
|
2020-10-20 17:55:39 +00:00
|
|
|
"crossbeam-channel 0.4.4",
|
2020-03-11 08:49:21 +00:00
|
|
|
"crossbeam-queue",
|
2020-10-20 17:55:39 +00:00
|
|
|
"crossbeam-utils 0.7.2",
|
2020-07-05 10:48:36 +00:00
|
|
|
"digest",
|
2020-05-26 08:56:03 +00:00
|
|
|
"either",
|
2020-06-06 20:28:49 +00:00
|
|
|
"encoding_rs",
|
2020-03-11 08:49:21 +00:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-util",
|
2020-07-05 10:48:36 +00:00
|
|
|
"generic-array",
|
2020-03-18 23:58:42 +00:00
|
|
|
"hex",
|
2020-03-11 08:49:21 +00:00
|
|
|
"hmac",
|
2020-03-19 10:21:09 +00:00
|
|
|
"ipnetwork",
|
2020-05-26 08:56:03 +00:00
|
|
|
"itoa",
|
2020-03-19 10:21:09 +00:00
|
|
|
"libc",
|
2020-03-18 23:58:42 +00:00
|
|
|
"libsqlite3-sys",
|
2020-03-11 08:49:21 +00:00
|
|
|
"log",
|
2020-06-24 14:11:46 +00:00
|
|
|
"lru-cache",
|
2020-03-11 08:49:21 +00:00
|
|
|
"md-5",
|
|
|
|
"memchr",
|
2020-10-30 10:27:19 +00:00
|
|
|
"num-bigint 0.3.0",
|
2020-06-07 08:59:59 +00:00
|
|
|
"once_cell",
|
2020-07-27 09:23:34 +00:00
|
|
|
"parking_lot",
|
|
|
|
"percent-encoding",
|
2020-03-11 08:49:21 +00:00
|
|
|
"rand",
|
2020-06-07 08:59:59 +00:00
|
|
|
"regex",
|
2020-06-13 15:54:38 +00:00
|
|
|
"rsa",
|
2020-06-26 16:01:07 +00:00
|
|
|
"rust_decimal",
|
2020-10-20 10:21:01 +00:00
|
|
|
"rustls",
|
2020-02-22 11:17:47 +00:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2020-03-11 08:49:21 +00:00
|
|
|
"sha-1",
|
2020-07-05 10:48:36 +00:00
|
|
|
"sha2",
|
2020-07-27 09:23:34 +00:00
|
|
|
"smallvec",
|
Format SQL queries when printing them to the logs
Before, the query would be formatted equivalent to the input string:
```
[2020-04-18T23:47:32Z DEBUG sqlx_core::postgres::executor] SELECT id, queue, ..., elapsed: 2.320µs
SELECT id, queue, payload, status, priority, created_at, updated_at
FROM jobs
WHERE status = $1
ORDER BY priority ASC, created_at ASC
```
After, the query is formatted cleanly and consistently:
```
[2020-04-19T00:30:18Z DEBUG sqlx_core::postgres::executor] SELECT id, queue, ..., elapsed: 2.280µs
SELECT
id,
queue,
payload,
status,
priority,
created_at,
updated_at
FROM
jobs
WHERE
status = $1
ORDER BY
priority ASC,
created_at ASC
```
This uses the `sqlformat` crate, which was ported from the
Javascript `sql-formatter-plus` library specifically for this purpose.
2020-04-18 23:50:40 +00:00
|
|
|
"sqlformat",
|
2020-05-26 08:56:03 +00:00
|
|
|
"sqlx-rt",
|
2020-06-06 17:53:07 +00:00
|
|
|
"stringprep",
|
2020-05-26 08:56:03 +00:00
|
|
|
"thiserror",
|
2020-10-20 17:55:39 +00:00
|
|
|
"time 0.2.22",
|
2020-07-27 09:23:34 +00:00
|
|
|
"url",
|
2020-03-18 23:58:42 +00:00
|
|
|
"uuid",
|
2020-10-20 10:21:01 +00:00
|
|
|
"webpki",
|
2020-10-22 17:06:46 +00:00
|
|
|
"webpki-roots",
|
2020-05-26 08:56:03 +00:00
|
|
|
"whoami",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
2020-03-31 13:05:52 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlx-example-mysql-todos"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"async-std",
|
2020-07-27 09:23:34 +00:00
|
|
|
"futures",
|
2020-03-31 13:05:52 +00:00
|
|
|
"paw",
|
|
|
|
"sqlx",
|
|
|
|
"structopt",
|
|
|
|
]
|
|
|
|
|
2020-03-17 01:27:04 +00:00
|
|
|
[[package]]
|
2020-03-30 23:35:07 +00:00
|
|
|
name = "sqlx-example-postgres-listen"
|
2020-03-17 01:27:04 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"async-std",
|
2020-07-27 09:23:34 +00:00
|
|
|
"futures",
|
2020-03-30 23:35:07 +00:00
|
|
|
"sqlx",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-09-25 18:14:32 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlx-example-postgres-todos"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"async-std",
|
|
|
|
"dotenv",
|
|
|
|
"futures",
|
|
|
|
"paw",
|
|
|
|
"sqlx",
|
|
|
|
"structopt",
|
|
|
|
]
|
|
|
|
|
2020-03-31 11:35:51 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlx-example-sqlite-todos"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"async-std",
|
2020-07-27 09:23:34 +00:00
|
|
|
"futures",
|
2020-03-31 11:35:51 +00:00
|
|
|
"paw",
|
|
|
|
"sqlx",
|
|
|
|
"structopt",
|
|
|
|
]
|
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlx-macros"
|
2020-07-27 08:43:02 +00:00
|
|
|
version = "0.4.0-beta.1"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"dotenv",
|
2020-07-05 10:48:36 +00:00
|
|
|
"either",
|
2020-07-27 09:23:34 +00:00
|
|
|
"futures",
|
2020-04-17 07:59:19 +00:00
|
|
|
"heck",
|
2020-04-14 06:00:19 +00:00
|
|
|
"hex",
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2020-04-14 06:00:19 +00:00
|
|
|
"serde",
|
2020-03-29 00:28:47 +00:00
|
|
|
"serde_json",
|
2020-07-05 10:48:36 +00:00
|
|
|
"sha2",
|
2020-03-30 23:35:07 +00:00
|
|
|
"sqlx-core",
|
2020-07-01 09:38:33 +00:00
|
|
|
"sqlx-rt",
|
2020-03-11 08:49:21 +00:00
|
|
|
"syn",
|
2020-07-27 09:23:34 +00:00
|
|
|
"url",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlx-rt"
|
2020-11-12 15:45:40 +00:00
|
|
|
version = "0.1.2"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"actix-rt",
|
|
|
|
"actix-threadpool",
|
|
|
|
"async-native-tls",
|
2020-10-20 10:21:01 +00:00
|
|
|
"async-rustls",
|
2020-05-26 08:56:03 +00:00
|
|
|
"async-std",
|
|
|
|
"native-tls",
|
2020-07-01 09:38:33 +00:00
|
|
|
"once_cell",
|
2020-07-27 09:23:34 +00:00
|
|
|
"tokio",
|
2020-05-26 08:56:03 +00:00
|
|
|
"tokio-native-tls",
|
2020-10-20 10:21:01 +00:00
|
|
|
"tokio-rustls",
|
2020-05-26 08:56:03 +00:00
|
|
|
]
|
|
|
|
|
2020-03-02 04:07:59 +00:00
|
|
|
[[package]]
|
|
|
|
name = "sqlx-test"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"anyhow",
|
|
|
|
"async-std",
|
|
|
|
"dotenv",
|
|
|
|
"env_logger",
|
2020-03-30 23:35:07 +00:00
|
|
|
"sqlx",
|
2020-07-27 09:23:34 +00:00
|
|
|
"tokio",
|
2020-03-02 04:07:59 +00:00
|
|
|
]
|
|
|
|
|
2020-03-21 08:24:48 +00:00
|
|
|
[[package]]
|
|
|
|
name = "standback"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.2.11"
|
2020-03-21 08:24:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "f4e0831040d2cf2bdfd51b844be71885783d489898a192f254ae25d57cce725c"
|
2020-06-07 23:29:46 +00:00
|
|
|
dependencies = [
|
|
|
|
"version_check",
|
|
|
|
]
|
2020-03-21 08:24:48 +00:00
|
|
|
|
2020-03-21 09:34:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "stdweb"
|
|
|
|
version = "0.4.20"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
|
|
|
|
dependencies = [
|
|
|
|
"discard",
|
|
|
|
"rustc_version",
|
|
|
|
"stdweb-derive",
|
|
|
|
"stdweb-internal-macros",
|
|
|
|
"stdweb-internal-runtime",
|
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "stdweb-derive"
|
|
|
|
version = "0.5.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "stdweb-internal-macros"
|
|
|
|
version = "0.2.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
|
|
|
|
dependencies = [
|
|
|
|
"base-x",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
|
|
|
"serde_json",
|
|
|
|
"sha1",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "stdweb-internal-runtime"
|
|
|
|
version = "0.1.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
|
|
|
|
|
2020-06-06 17:53:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "stringprep"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
|
|
|
|
dependencies = [
|
|
|
|
"unicode-bidi",
|
|
|
|
"unicode-normalization",
|
|
|
|
]
|
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
2020-02-01 07:33:42 +00:00
|
|
|
|
2020-07-12 10:43:49 +00:00
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
|
|
|
version = "0.10.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "structopt"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.20"
|
2020-02-01 07:33:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "126d630294ec449fae0b16f964e35bf3c74f940da9dca17ee9b905f7b3112eb8"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"clap 2.33.3",
|
2020-03-11 08:49:21 +00:00
|
|
|
"lazy_static",
|
2020-10-20 17:55:39 +00:00
|
|
|
"paw",
|
2020-03-11 08:49:21 +00:00
|
|
|
"structopt-derive",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "structopt-derive"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.4.13"
|
2020-02-01 07:33:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "65e51c492f9e23a220534971ff5afc14037289de430e3c83f9daf6a1b6ae91e8"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"heck",
|
2020-09-30 17:04:14 +00:00
|
|
|
"proc-macro-error",
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
2020-01-03 11:17:06 +00:00
|
|
|
[[package]]
|
|
|
|
name = "subtle"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "2.3.0"
|
2020-01-03 11:17:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "343f3f510c2915908f155e94f17220b19ccfacf2a64a2a5d8004f2c3e311e7fd"
|
2020-01-03 11:17:06 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.48"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "cc371affeffc477f42a221a1e4297aedcea33d47d19b61455588bd9d8f6b19ac"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-xid",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "synstructure"
|
|
|
|
version = "0.12.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"unicode-xid",
|
|
|
|
]
|
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tempfile"
|
|
|
|
version = "3.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-03-11 08:49:21 +00:00
|
|
|
"libc",
|
|
|
|
"rand",
|
|
|
|
"redox_syscall",
|
2020-10-06 13:24:43 +00:00
|
|
|
"remove_dir_all 0.5.3",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
2020-01-11 09:01:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "termcolor"
|
2020-01-17 02:29:58 +00:00
|
|
|
version = "1.1.0"
|
2020-01-11 09:01:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
|
2020-01-11 09:01:21 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"winapi-util",
|
2020-01-11 09:01:21 +00:00
|
|
|
]
|
|
|
|
|
2020-05-26 11:31:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "terminal_size"
|
2020-07-05 10:48:36 +00:00
|
|
|
version = "0.1.13"
|
2020-05-26 11:31:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-05 10:48:36 +00:00
|
|
|
checksum = "9a14cd9f8c72704232f0bfc8455c0e861f0ad4eb60cc9ec8a170e231414c1e13"
|
2020-05-26 11:31:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-05-26 11:31:38 +00:00
|
|
|
]
|
|
|
|
|
2020-04-21 07:54:32 +00:00
|
|
|
[[package]]
|
|
|
|
name = "termios"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.3"
|
2020-04-21 07:54:32 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
|
2020-04-21 07:54:32 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "textwrap"
|
|
|
|
version = "0.11.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
|
2020-02-01 07:33:42 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"unicode-width",
|
2020-02-01 07:33:42 +00:00
|
|
|
]
|
|
|
|
|
2020-09-30 17:04:14 +00:00
|
|
|
[[package]]
|
|
|
|
name = "textwrap"
|
|
|
|
version = "0.12.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "203008d98caf094106cfaba70acfed15e18ed3ddb7d94e49baec153a2b462789"
|
|
|
|
dependencies = [
|
|
|
|
"unicode-width",
|
|
|
|
]
|
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.21"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "318234ffa22e0920fe9a40d7b8369b5f649d490980cf7aadcf1eb91594869b42"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"thiserror-impl",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.21"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "cae2447b6282786c3493999f40a9be2a6ad20cb8bd268b0a0dbf5a065535c0ab"
|
2020-01-11 03:39:29 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2020-01-11 03:39:29 +00:00
|
|
|
]
|
|
|
|
|
2020-01-11 09:01:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "thread_local"
|
2020-01-17 02:29:58 +00:00
|
|
|
version = "1.0.1"
|
2020-01-11 09:01:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
|
2020-01-11 09:01:21 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"lazy_static",
|
2020-01-11 09:01:21 +00:00
|
|
|
]
|
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "threadpool"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "1.8.1"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"num_cpus",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "time"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.1.44"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"libc",
|
2020-10-20 17:55:39 +00:00
|
|
|
"wasi 0.10.0+wasi-snapshot-preview1",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-02-29 19:38:48 +00:00
|
|
|
[[package]]
|
|
|
|
name = "time"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.2.22"
|
2020-02-29 19:38:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "55b7151c9065e80917fbf285d9a5d1432f60db41d170ccafc749a136b41a93af"
|
2020-02-29 19:38:48 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"const_fn",
|
2020-03-21 09:34:21 +00:00
|
|
|
"libc",
|
2020-03-21 08:24:48 +00:00
|
|
|
"standback",
|
2020-03-21 09:34:21 +00:00
|
|
|
"stdweb",
|
2020-03-21 08:24:48 +00:00
|
|
|
"time-macros",
|
2020-05-26 08:56:03 +00:00
|
|
|
"version_check",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-02-29 19:38:48 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "time-macros"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.1.1"
|
2020-02-29 19:38:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
|
2020-02-29 19:38:48 +00:00
|
|
|
dependencies = [
|
2020-03-21 08:24:48 +00:00
|
|
|
"proc-macro-hack",
|
|
|
|
"time-macros-impl",
|
2020-02-29 19:38:48 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "time-macros-impl"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "0.1.1"
|
2020-02-29 19:38:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "e5c3be1edfad6027c69f5491cf4cb310d1a71ecd6af742788c6ff8bced86b8fa"
|
2020-02-29 19:38:48 +00:00
|
|
|
dependencies = [
|
2020-03-21 08:24:48 +00:00
|
|
|
"proc-macro-hack",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2020-05-26 11:31:38 +00:00
|
|
|
"standback",
|
2020-03-21 08:24:48 +00:00
|
|
|
"syn",
|
2020-02-29 19:38:48 +00:00
|
|
|
]
|
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tinytemplate"
|
|
|
|
version = "1.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6d3dc76004a03cec1c5932bca4cdc2e39aaa798e3f82363dd94f9adf6098c12f"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
]
|
|
|
|
|
2020-06-19 09:49:41 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tinyvec"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.4"
|
2020-06-19 09:49:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "238ce071d267c5710f9d31451efec16c5ee22de34df17cc05e56cbc92e967117"
|
2020-06-19 09:49:41 +00:00
|
|
|
|
2020-01-15 09:17:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tokio"
|
2020-07-27 05:31:28 +00:00
|
|
|
version = "0.2.22"
|
2020-01-15 09:17:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-27 05:31:28 +00:00
|
|
|
checksum = "5d34ca54d84bf2b5b4d7d31e901a8464f7b60ac145a284fba25ceb801f2ddccd"
|
2020-01-15 09:17:33 +00:00
|
|
|
dependencies = [
|
2020-07-27 09:23:34 +00:00
|
|
|
"bytes",
|
2020-03-11 08:49:21 +00:00
|
|
|
"fnv",
|
|
|
|
"futures-core",
|
|
|
|
"iovec",
|
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
|
|
|
"memchr",
|
|
|
|
"mio",
|
|
|
|
"mio-named-pipes",
|
|
|
|
"mio-uds",
|
|
|
|
"num_cpus",
|
|
|
|
"pin-project-lite",
|
|
|
|
"signal-hook-registry",
|
|
|
|
"slab",
|
|
|
|
"tokio-macros",
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-01-15 09:17:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tokio-macros"
|
2020-03-02 08:29:52 +00:00
|
|
|
version = "0.2.5"
|
2020-01-15 09:17:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "f0c3acc6aa564495a0f2e1d59fab677cd7f81a19994cfc7f3ad0e64301560389"
|
2020-01-15 09:17:33 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
2020-01-15 09:17:33 +00:00
|
|
|
]
|
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tokio-native-tls"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "cd608593a919a8e05a7d1fc6df885e40f6a88d3a70a3a7eff23ff27964eda069"
|
|
|
|
dependencies = [
|
|
|
|
"native-tls",
|
2020-07-27 09:23:34 +00:00
|
|
|
"tokio",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-10-20 10:21:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tokio-rustls"
|
|
|
|
version = "0.14.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e12831b255bcfa39dc0436b01e19fea231a37db570686c06ee72c423479f889a"
|
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"rustls",
|
|
|
|
"tokio",
|
|
|
|
"webpki",
|
|
|
|
]
|
|
|
|
|
2020-01-17 03:26:02 +00:00
|
|
|
[[package]]
|
|
|
|
name = "toml"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.5.7"
|
2020-01-17 03:26:02 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "75cf45bb0bef80604d001caaec0d09da99611b3c0fd39d3080468875cdb65645"
|
2020-01-17 03:26:02 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"serde",
|
2020-01-17 03:26:02 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "trybuild"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.35"
|
2020-01-17 03:26:02 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "b7d30fe369fd650072b352b1a9cb9587669de6b89be3b8225544012c1c45292d"
|
2020-01-17 03:26:02 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"glob",
|
|
|
|
"lazy_static",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
"termcolor",
|
|
|
|
"toml",
|
2020-01-17 03:26:02 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "typenum"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "1.12.0"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-bidi"
|
|
|
|
version = "0.3.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"matches",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-normalization"
|
2020-06-19 09:49:41 +00:00
|
|
|
version = "0.1.13"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-19 09:49:41 +00:00
|
|
|
checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-06-19 09:49:41 +00:00
|
|
|
"tinyvec",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-segmentation"
|
|
|
|
version = "1.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
|
2020-02-01 07:33:42 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-width"
|
2020-07-03 05:38:34 +00:00
|
|
|
version = "0.1.8"
|
2020-02-01 07:33:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-07-03 05:38:34 +00:00
|
|
|
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
|
2020-02-01 07:33:42 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-xid"
|
2020-06-27 12:56:30 +00:00
|
|
|
version = "0.2.1"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-27 12:56:30 +00:00
|
|
|
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-10-20 10:21:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "untrusted"
|
|
|
|
version = "0.7.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "url"
|
2020-01-11 11:30:03 +00:00
|
|
|
version = "2.1.1"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-07-27 09:23:34 +00:00
|
|
|
"idna",
|
2020-03-11 08:49:21 +00:00
|
|
|
"matches",
|
2020-07-27 09:23:34 +00:00
|
|
|
"percent-encoding",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uuid"
|
|
|
|
version = "0.8.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "9fde2f6a4bea1d6e007c4ad38c6839fa71cbb63b6dbf5b595aa38dc9b1093c11"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-01-11 03:39:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vcpkg"
|
2020-06-13 15:54:38 +00:00
|
|
|
version = "0.2.10"
|
2020-01-11 03:39:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-13 15:54:38 +00:00
|
|
|
checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
|
2020-01-11 03:39:29 +00:00
|
|
|
|
2020-10-20 10:21:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vec-arena"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "eafc1b9b2dfc6f5529177b62cf806484db55b32dc7c9658a118e11bbeb33061d"
|
|
|
|
|
2020-02-01 07:33:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "vec_map"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "0.8.2"
|
2020-02-01 07:33:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
|
2020-02-01 07:33:42 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "version_check"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "0.9.2"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-06-19 09:49:41 +00:00
|
|
|
[[package]]
|
|
|
|
name = "waker-fn"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.1.0"
|
2020-06-19 09:49:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
|
2020-06-19 09:49:41 +00:00
|
|
|
|
2020-07-01 09:38:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "walkdir"
|
|
|
|
version = "2.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
|
|
|
|
dependencies = [
|
|
|
|
"same-file",
|
|
|
|
"winapi 0.3.9",
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
2020-01-11 11:30:03 +00:00
|
|
|
version = "0.9.0+wasi-snapshot-preview1"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-10-20 17:55:39 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
|
|
|
version = "0.10.0+wasi-snapshot-preview1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
|
|
|
|
|
2020-03-21 09:34:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.2.68"
|
2020-03-21 09:34:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "1ac64ead5ea5f05873d7c12b545865ca2b8d28adfc50a49b84770a3a97265d42"
|
2020-03-21 09:34:21 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-03-21 09:34:21 +00:00
|
|
|
"wasm-bindgen-macro",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-backend"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.2.68"
|
2020-03-21 09:34:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "f22b422e2a757c35a73774860af8e112bff612ce6cb604224e8e47641a9e4f68"
|
2020-03-21 09:34:21 +00:00
|
|
|
dependencies = [
|
|
|
|
"bumpalo",
|
|
|
|
"lazy_static",
|
|
|
|
"log",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"wasm-bindgen-shared",
|
|
|
|
]
|
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-futures"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.4.18"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "b7866cab0aa01de1edf8b5d7936938a7e397ee50ce24119aef3e1eaa3b6171da"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
2020-10-20 17:55:39 +00:00
|
|
|
"cfg-if 0.1.10",
|
2020-05-26 08:56:03 +00:00
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"web-sys",
|
|
|
|
]
|
|
|
|
|
2020-03-21 09:34:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-macro"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.2.68"
|
2020-03-21 09:34:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "6b13312a745c08c469f0b292dd2fcd6411dba5f7160f593da6ef69b64e407038"
|
2020-03-21 09:34:21 +00:00
|
|
|
dependencies = [
|
|
|
|
"quote",
|
|
|
|
"wasm-bindgen-macro-support",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-macro-support"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.2.68"
|
2020-03-21 09:34:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "f249f06ef7ee334cc3b8ff031bfc11ec99d00f34d86da7498396dc1e3b1498fe"
|
2020-03-21 09:34:21 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"wasm-bindgen-backend",
|
|
|
|
"wasm-bindgen-shared",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-shared"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.2.68"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "1d649a3145108d7d3fbcde896a468d1bd636791823c9921135218ad89be08307"
|
2020-05-26 08:56:03 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "web-sys"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "0.3.45"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "4bf6ef87ad7ae8008e15a355ce696bed26012b7caa21605188cfd8214ab51e2d"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
|
|
|
|
2020-10-20 10:21:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "webpki"
|
|
|
|
version = "0.21.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ab146130f5f790d45f82aeeb09e55a256573373ec64409fc19a6fb82fb1032ae"
|
|
|
|
dependencies = [
|
|
|
|
"ring",
|
|
|
|
"untrusted",
|
|
|
|
]
|
|
|
|
|
2020-10-22 17:06:46 +00:00
|
|
|
[[package]]
|
|
|
|
name = "webpki-roots"
|
|
|
|
version = "0.20.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0f20dea7535251981a9670857150d571846545088359b28e4951d350bdaf179f"
|
|
|
|
dependencies = [
|
|
|
|
"webpki",
|
|
|
|
]
|
|
|
|
|
2020-05-26 08:56:03 +00:00
|
|
|
[[package]]
|
2020-10-20 17:55:39 +00:00
|
|
|
name = "wepoll-sys"
|
|
|
|
version = "3.0.1"
|
2020-05-26 08:56:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "0fcb14dea929042224824779fbc82d9fab8d2e6d3cbc0ac404de8edf489e77ff"
|
2020-05-26 08:56:03 +00:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "whoami"
|
2020-06-27 12:57:21 +00:00
|
|
|
version = "0.9.0"
|
2020-03-21 09:34:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-27 12:57:21 +00:00
|
|
|
checksum = "7884773ab69074615cb8f8425d0e53f11710786158704fca70f53e71b0e05504"
|
2020-03-21 09:34:21 +00:00
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
|
|
|
version = "0.2.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
2020-06-27 12:56:30 +00:00
|
|
|
version = "0.3.9"
|
2019-12-30 10:17:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-27 12:56:30 +00:00
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
2019-12-30 10:17:07 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-build"
|
|
|
|
version = "0.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
2020-01-11 09:01:21 +00:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-util"
|
2020-05-26 11:31:38 +00:00
|
|
|
version = "0.1.5"
|
2020-01-11 09:01:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-05-26 11:31:38 +00:00
|
|
|
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
2020-01-11 09:01:21 +00:00
|
|
|
dependencies = [
|
2020-06-27 12:56:30 +00:00
|
|
|
"winapi 0.3.9",
|
2020-01-11 09:01:21 +00:00
|
|
|
]
|
|
|
|
|
2019-12-30 10:17:07 +00:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2019-12-30 10:17:07 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "ws2_32-sys"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-11 08:49:21 +00:00
|
|
|
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
|
2019-12-30 10:17:07 +00:00
|
|
|
dependencies = [
|
2020-03-11 08:49:21 +00:00
|
|
|
"winapi 0.2.8",
|
|
|
|
"winapi-build",
|
2020-03-15 03:10:37 +00:00
|
|
|
]
|
2020-06-13 15:54:38 +00:00
|
|
|
|
2020-10-21 23:39:05 +00:00
|
|
|
[[package]]
|
|
|
|
name = "zeroize"
|
|
|
|
version = "0.9.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "45af6a010d13e4cf5b54c94ba5a2b2eba5596b9e46bf5875612d332a1f2b3f86"
|
|
|
|
|
2020-06-13 15:54:38 +00:00
|
|
|
[[package]]
|
|
|
|
name = "zeroize"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.1.1"
|
2020-06-13 15:54:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "05f33972566adbd2d3588b0491eb94b98b43695c4ef897903470ede4f3f5a28a"
|
2020-06-13 15:54:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"zeroize_derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zeroize_derive"
|
2020-10-20 17:55:39 +00:00
|
|
|
version = "1.0.1"
|
2020-06-13 15:54:38 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-20 17:55:39 +00:00
|
|
|
checksum = "c3f369ddb18862aba61aa49bf31e74d29f0f162dec753063200e1dc084345d16"
|
2020-06-13 15:54:38 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
"synstructure",
|
|
|
|
]
|