gitui/Cargo.lock

1637 lines
39 KiB
Plaintext
Raw Normal View History

2020-03-15 20:42:15 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-06-26 14:24:29 +03:00
version = 3
[[package]]
name = "addr2line"
2021-08-04 00:00:59 +03:00
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "3e61f2b7f93d2c7d2b08263acaa4a363b3e276806c68af6134c44f523bf1aacd"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
2021-03-01 01:42:11 +03:00
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-01 01:42:11 +03:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-07-04 15:59:30 +03:00
[[package]]
name = "ahash"
2021-09-05 11:51:36 +03:00
version = "0.7.4"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "43bb833f0bf979d8475d38fbf09ed3b8a55e1885fe93ad3f93239fc6a4f17b98"
2020-07-04 15:59:30 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"getrandom",
"once_cell",
2020-12-09 01:39:30 +03:00
"version_check",
2020-07-04 15:59:30 +03:00
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "aho-corasick"
version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
dependencies = [
"memchr",
]
2021-05-18 01:21:05 +03:00
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
2020-05-23 18:12:38 +03:00
[[package]]
name = "anyhow"
version = "1.0.44"
2020-05-23 18:12:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61604a8f862e1d5c3229fdd78f8b02c68dcf73a4c4b05fd636d12240aaa242c1"
2020-05-23 18:12:38 +03:00
2020-07-04 15:59:30 +03:00
[[package]]
name = "arrayvec"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
dependencies = [
"nodrop",
]
2020-03-22 23:08:48 +03:00
[[package]]
name = "asyncgit"
2021-09-05 11:46:27 +03:00
version = "0.17.1"
2020-03-22 23:08:48 +03:00
dependencies = [
"crossbeam-channel",
2021-04-18 01:08:35 +03:00
"easy-cast",
2020-03-22 23:08:48 +03:00
"git2",
"invalidstring",
2020-03-22 23:08:48 +03:00
"log",
"openssl-sys",
2021-05-18 01:21:05 +03:00
"pretty_assertions",
2020-03-23 01:53:14 +03:00
"rayon-core",
2020-03-22 23:08:48 +03:00
"scopetime",
2020-10-25 12:50:20 +03:00
"serial_test",
2020-03-24 20:02:58 +03:00
"tempfile",
"thiserror",
"unicode-truncate",
2020-10-25 12:50:20 +03:00
"url",
2020-03-22 23:08:48 +03:00
]
2021-02-09 00:40:58 +03:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "autocfg"
2020-12-09 01:39:30 +03:00
version = "1.0.1"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-03-16 15:34:01 +03:00
[[package]]
name = "backtrace"
2021-08-04 00:00:59 +03:00
version = "0.3.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "e7a905d892734eea339e896738c14b9afce22b5318f64b951e70bf3844419b01"
dependencies = [
"addr2line",
2021-04-27 18:47:46 +03:00
"cc",
2021-02-09 00:40:58 +03:00
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "base64"
version = "0.13.0"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2020-03-20 20:28:42 +03:00
2021-05-23 03:45:22 +03:00
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
]
[[package]]
name = "bit-set"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e11e16035ea35e4e5997b393eacbf6f63983188f7a2ad25bfb13465f5ad59de"
dependencies = [
"bit-vec",
]
[[package]]
name = "bit-vec"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
2020-03-16 15:34:01 +03:00
[[package]]
name = "bitflags"
2021-08-28 15:35:28 +03:00
version = "1.2.1"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 15:35:28 +03:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2020-03-16 15:34:01 +03:00
[[package]]
name = "bugreport"
2021-08-04 00:00:59 +03:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "0014b4b2b4f63bfe69c3838470121290cc437fdc79785d408a761a21e8b2404c"
dependencies = [
"git-version",
"shell-escape",
"sys-info",
]
2020-07-06 22:18:37 +03:00
[[package]]
name = "bytemuck"
2021-08-04 00:00:59 +03:00
version = "1.7.2"
2020-07-06 22:18:37 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "72957246c41db82b8ef88a5486143830adeb8227ef9837740bdec67724cf2c5b"
2020-07-06 22:18:37 +03:00
[[package]]
name = "bytesize"
2021-08-04 00:00:59 +03:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "6c58ec36aac5066d5ca17df51b3e70279f5670a72102f5752cb7e7c856adfc70"
2020-03-16 15:34:01 +03:00
[[package]]
name = "cassowary"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
[[package]]
name = "cc"
2021-09-05 11:51:36 +03:00
version = "1.0.70"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "d26a6ce4b6a484fa3edb70f7efa6fc430fd2b87285fe8b84304fd0936faa0dc0"
2020-03-16 15:34:01 +03:00
dependencies = [
"jobserver",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-03-20 20:28:42 +03:00
[[package]]
name = "chrono"
version = "0.4.19"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2020-03-20 20:28:42 +03:00
dependencies = [
"libc",
2020-03-20 20:28:42 +03:00
"num-integer",
"num-traits",
"time",
"winapi",
2020-03-20 20:28:42 +03:00
]
[[package]]
name = "clap"
version = "2.33.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002"
dependencies = [
"bitflags",
"textwrap 0.11.0",
"unicode-width",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "cpp_demangle"
2021-07-10 13:32:42 +03:00
version = "0.3.3"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-10 13:32:42 +03:00
checksum = "8ea47428dc9d2237f3c6bc134472edfd63ebba0af932e783506dcfd66f10d18a"
2020-07-04 15:59:30 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-07-04 15:59:30 +03:00
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "crc32fast"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
dependencies = [
"cfg-if",
]
[[package]]
name = "crossbeam-channel"
2021-04-12 00:31:59 +03:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-12 00:31:59 +03:00
checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-12-09 01:39:30 +03:00
"crossbeam-utils",
]
2020-03-22 23:08:48 +03:00
[[package]]
name = "crossbeam-deque"
2021-08-04 00:00:59 +03:00
version = "0.8.1"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
2020-03-22 23:08:48 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-03-22 23:08:48 +03:00
"crossbeam-epoch",
2020-12-09 01:39:30 +03:00
"crossbeam-utils",
2020-03-22 23:08:48 +03:00
]
[[package]]
name = "crossbeam-epoch"
2021-06-06 11:24:05 +03:00
version = "0.9.5"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-06 11:24:05 +03:00
checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd"
2020-03-22 23:08:48 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-12-09 01:39:30 +03:00
"crossbeam-utils",
2020-03-22 23:08:48 +03:00
"lazy_static",
"memoffset",
"scopeguard",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "crossbeam-utils"
2021-06-06 11:24:05 +03:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-06 11:24:05 +03:00
checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-03-20 20:28:42 +03:00
"lazy_static",
]
[[package]]
name = "crossterm"
2021-08-03 23:56:39 +03:00
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-03 23:56:39 +03:00
checksum = "c0ebde6a9dd5e331cd6c6f48253254d117642c31653baa475e394657c59c1f7d"
dependencies = [
"bitflags",
2021-05-02 20:44:02 +03:00
"crossterm_winapi",
"libc",
"mio",
2020-12-08 03:31:06 +03:00
"parking_lot",
"serde",
2020-03-16 15:34:01 +03:00
"signal-hook",
2021-08-03 23:56:39 +03:00
"signal-hook-mio",
"winapi",
2020-03-16 15:34:01 +03:00
]
[[package]]
name = "crossterm_winapi"
2021-08-03 23:56:39 +03:00
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-03 23:56:39 +03:00
checksum = "3a6966607622438301997d3dac0d2f6e9a90c68bb6bc1785ea98456ab93c0507"
dependencies = [
"winapi",
]
2021-05-18 01:21:05 +03:00
[[package]]
name = "ctor"
2021-09-05 11:51:36 +03:00
version = "0.1.21"
2021-05-18 01:21:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "ccc0a48a9b826acdf4028595adc9db92caea352f7af011a3034acd172a52a0aa"
2021-05-18 01:21:05 +03:00
dependencies = [
"quote",
"syn",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "debugid"
2020-07-09 10:25:04 +03:00
version = "0.7.2"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-09 10:25:04 +03:00
checksum = "f91cf5a8c2f2097e2a32627123508635d47ce10563d999ec1a95addf08b502ba"
2020-07-04 15:59:30 +03:00
dependencies = [
"uuid",
]
2021-05-18 01:21:05 +03:00
[[package]]
name = "diff"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499"
2020-03-20 20:28:42 +03:00
[[package]]
name = "dirs-next"
version = "2.0.0"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
2020-03-20 20:28:42 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
"dirs-sys-next",
2020-03-20 20:28:42 +03:00
]
[[package]]
name = "dirs-sys-next"
2021-02-09 00:40:58 +03:00
version = "0.1.2"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-09 00:40:58 +03:00
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
2020-03-20 20:28:42 +03:00
dependencies = [
"libc",
"redox_users",
"winapi",
2020-03-20 20:28:42 +03:00
]
2021-04-18 01:08:35 +03:00
[[package]]
name = "easy-cast"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bd102ee8c418348759919b83b81cdbdc933ffe29740b903df448b4bafaa348e"
2020-03-16 15:34:01 +03:00
[[package]]
name = "either"
2020-12-09 01:39:30 +03:00
version = "1.6.1"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2020-03-16 15:34:01 +03:00
2021-05-23 03:45:22 +03:00
[[package]]
name = "fancy-regex"
2021-08-04 00:00:59 +03:00
version = "0.7.1"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "9d6b8560a05112eb52f04b00e5d3790c0dd75d9d980eb8a122fb23b92a623ccf"
2021-05-23 03:45:22 +03:00
dependencies = [
"bit-set",
"regex",
]
2021-05-21 15:52:05 +03:00
[[package]]
name = "filetreelist"
2021-09-05 11:46:27 +03:00
version = "0.3.0"
2021-05-21 15:52:05 +03:00
dependencies = [
"pretty_assertions",
"scopetime",
2021-05-21 15:52:05 +03:00
"thiserror",
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "flate2"
2021-09-05 11:51:36 +03:00
version = "1.0.21"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "80edafed416a46fb378521624fab1cfa2eb514784fd8921adbe8a8d8321da811"
2021-05-23 03:45:22 +03:00
dependencies = [
"cfg-if",
"crc32fast",
"libc",
"miniz_oxide",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
2021-03-01 01:42:11 +03:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-01 01:42:11 +03:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
2021-09-04 11:50:03 +03:00
[[package]]
name = "fuzzy-matcher"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94"
dependencies = [
"thread_local",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "getrandom"
2021-05-24 11:44:43 +03:00
version = "0.2.3"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-24 11:44:43 +03:00
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
2020-03-20 20:28:42 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-03-20 20:28:42 +03:00
"libc",
2021-02-09 00:40:58 +03:00
"wasi",
2020-03-20 20:28:42 +03:00
]
[[package]]
name = "gh-emoji"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6af39cf9a679d7195b3370f5454381ba49c4791bc7ce3ae2a7bf1a2a89c7adf"
dependencies = [
"phf",
"regex",
]
[[package]]
name = "gimli"
2021-08-04 00:00:59 +03:00
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "f0a01e0497841a3b2db4f8afa483cce65f7e96a3498bd6c541734792aeac8fe7"
[[package]]
name = "git-version"
2021-08-04 00:00:59 +03:00
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "f6b0decc02f4636b9ccad390dcbe77b722a77efedfa393caf8379a51d5c61899"
dependencies = [
"git-version-macro",
"proc-macro-hack",
]
[[package]]
name = "git-version-macro"
2021-08-04 00:00:59 +03:00
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "fe69f1cbdb6e28af2bac214e943b99ce8a0a06b447d15d3e61161b0423139f3f"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "git2"
2021-09-08 17:36:14 +03:00
version = "0.13.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 17:36:14 +03:00
checksum = "9c1cbbfc9a1996c6af82c2b4caf828d2c653af4fcdbb0e5674cc966eee5a4197"
2020-03-16 15:34:01 +03:00
dependencies = [
"bitflags",
"libc",
"libgit2-sys",
"log",
"openssl-probe",
"openssl-sys",
2020-03-16 15:34:01 +03:00
"url",
]
2020-03-15 20:42:15 +03:00
[[package]]
2020-03-18 15:29:03 +03:00
name = "gitui"
2021-09-05 11:46:27 +03:00
version = "0.17.1"
2020-03-16 15:34:01 +03:00
dependencies = [
2020-05-23 18:12:38 +03:00
"anyhow",
2020-03-22 23:08:48 +03:00
"asyncgit",
"backtrace",
2020-04-13 01:29:36 +03:00
"bitflags",
"bugreport",
"bytesize",
2020-05-05 14:47:21 +03:00
"chrono",
"clap",
"crossbeam-channel",
2021-05-02 20:44:02 +03:00
"crossterm",
"dirs-next",
2021-04-27 15:51:42 +03:00
"easy-cast",
"filetreelist",
2021-09-04 11:50:03 +03:00
"fuzzy-matcher",
"gh-emoji",
2020-04-15 23:38:09 +03:00
"itertools",
2021-05-23 03:45:22 +03:00
"lazy_static",
2020-03-20 20:28:42 +03:00
"log",
2020-07-04 15:59:30 +03:00
"pprof",
"pretty_assertions",
2020-03-26 01:37:00 +03:00
"rayon-core",
"ron",
"scopeguard",
"scopetime",
"serde",
2020-03-20 20:28:42 +03:00
"simplelog",
2021-05-23 03:45:22 +03:00
"syntect",
"textwrap 0.14.2",
2020-03-16 15:34:01 +03:00
"tui",
"unicode-segmentation",
"unicode-truncate",
"unicode-width",
"which",
2020-03-16 15:34:01 +03:00
]
2020-12-09 01:39:30 +03:00
[[package]]
name = "hashbrown"
2021-07-05 10:43:19 +03:00
version = "0.11.2"
2020-12-09 01:39:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-05 10:43:19 +03:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-12-09 01:39:30 +03:00
2020-03-22 23:08:48 +03:00
[[package]]
name = "hermit-abi"
2021-06-26 14:23:05 +03:00
version = "0.1.19"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 14:23:05 +03:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-03-22 23:08:48 +03:00
dependencies = [
"libc",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "idna"
2021-04-18 01:07:56 +03:00
version = "0.2.3"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-18 01:07:56 +03:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2020-03-16 15:34:01 +03:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "indexmap"
2021-07-05 10:43:19 +03:00
version = "1.7.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-05 10:43:19 +03:00
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
2020-07-04 15:59:30 +03:00
dependencies = [
"autocfg",
2020-12-09 01:39:30 +03:00
"hashbrown",
2020-07-04 15:59:30 +03:00
]
[[package]]
name = "inferno"
2021-09-05 11:51:36 +03:00
version = "0.10.7"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "bfa5bd9a10b38bf5f3c670f9d75c194adbecd2b1573f737668ab8599f41edc87"
2020-07-04 15:59:30 +03:00
dependencies = [
"ahash",
2021-02-09 00:40:58 +03:00
"atty",
2020-07-04 15:59:30 +03:00
"indexmap",
"itoa",
"lazy_static",
"log",
"num-format",
"quick-xml",
"rgb",
"str_stack",
]
2020-07-09 10:25:04 +03:00
[[package]]
name = "instant"
2021-08-04 00:00:59 +03:00
version = "0.1.10"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d"
2020-12-09 01:39:30 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-12-09 01:39:30 +03:00
]
2020-07-09 10:25:04 +03:00
[[package]]
name = "invalidstring"
version = "0.1.2"
[[package]]
name = "itertools"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf"
dependencies = [
"either",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "itoa"
2021-08-22 13:30:23 +03:00
version = "0.4.8"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-22 13:30:23 +03:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2020-07-04 15:59:30 +03:00
2020-03-16 15:34:01 +03:00
[[package]]
name = "jobserver"
2021-08-17 14:45:19 +03:00
version = "0.1.24"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-17 14:45:19 +03:00
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
2020-03-16 15:34:01 +03:00
dependencies = [
"libc",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2021-05-23 03:45:22 +03:00
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2020-03-16 15:34:01 +03:00
[[package]]
name = "libc"
2021-08-28 15:35:28 +03:00
version = "0.2.101"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 15:35:28 +03:00
checksum = "3cb00336871be5ed2c8ed44b60ae9959dc5b9f08539422ed43f09e34ecaeba21"
2020-03-16 15:34:01 +03:00
[[package]]
name = "libgit2-sys"
2021-09-08 17:36:14 +03:00
version = "0.12.23+1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 17:36:14 +03:00
checksum = "29730a445bae719db3107078b46808cc45a5b7a6bae3f31272923af969453356"
2020-03-16 15:34:01 +03:00
dependencies = [
"cc",
"libc",
"libssh2-sys",
2020-03-16 15:34:01 +03:00
"libz-sys",
"openssl-sys",
2020-03-16 15:34:01 +03:00
"pkg-config",
]
[[package]]
name = "libssh2-sys"
2021-02-09 00:40:58 +03:00
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-09 00:40:58 +03:00
checksum = "e0186af0d8f171ae6b9c4c90ec51898bad5d08a2d5e470903a50d9ad8959cbee"
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "libz-sys"
2021-05-02 20:44:02 +03:00
version = "1.1.3"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 20:44:02 +03:00
checksum = "de5435b8549c16d423ed0c03dbaafe57cf6c3344744f1242520d59c9d8ecec66"
2020-03-16 15:34:01 +03:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "line-wrap"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
dependencies = [
"safemem",
]
[[package]]
name = "linked-hash-map"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
2020-07-09 10:25:04 +03:00
[[package]]
name = "lock_api"
2021-08-28 15:35:28 +03:00
version = "0.4.5"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 15:35:28 +03:00
checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
2020-07-09 10:25:04 +03:00
dependencies = [
"scopeguard",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "log"
version = "0.4.14"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2020-03-16 15:34:01 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-03-16 15:34:01 +03:00
]
[[package]]
name = "matches"
2021-08-15 14:48:26 +03:00
version = "0.1.9"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-15 14:48:26 +03:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2020-03-16 15:34:01 +03:00
2020-07-04 15:59:30 +03:00
[[package]]
name = "memchr"
2021-08-21 02:03:54 +03:00
version = "2.4.1"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-21 02:03:54 +03:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2020-07-04 15:59:30 +03:00
[[package]]
name = "memmap"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
dependencies = [
"libc",
"winapi",
2020-07-04 15:59:30 +03:00
]
2020-03-22 23:08:48 +03:00
[[package]]
name = "memoffset"
2021-05-29 15:58:17 +03:00
version = "0.6.4"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-29 15:58:17 +03:00
checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
2020-03-22 23:08:48 +03:00
dependencies = [
"autocfg",
]
[[package]]
name = "miniz_oxide"
2021-03-01 01:42:11 +03:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-01 01:42:11 +03:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
dependencies = [
"adler",
2020-12-09 01:39:30 +03:00
"autocfg",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "mio"
2021-06-26 14:23:05 +03:00
version = "0.7.13"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 14:23:05 +03:00
checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
2020-03-16 15:34:01 +03:00
dependencies = [
"libc",
"log",
"miow",
"ntapi",
"winapi",
2020-03-16 15:34:01 +03:00
]
[[package]]
name = "miow"
2021-04-12 00:31:59 +03:00
version = "0.3.7"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-12 00:31:59 +03:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2020-03-16 15:34:01 +03:00
dependencies = [
"winapi",
2020-03-16 15:34:01 +03:00
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "nix"
2021-08-28 15:35:28 +03:00
version = "0.20.1"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 15:35:28 +03:00
checksum = "df8e5e343312e7fbeb2a52139114e9e702991ef9c2aea6817ff2440b35647d56"
2020-07-04 15:59:30 +03:00
dependencies = [
"bitflags",
"cc",
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-07-04 15:59:30 +03:00
"libc",
2021-08-28 15:35:28 +03:00
"memoffset",
2020-07-04 15:59:30 +03:00
]
[[package]]
name = "nodrop"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
[[package]]
name = "ntapi"
2020-12-09 01:39:30 +03:00
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "num-format"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bafe4179722c2894288ee77a9f044f02811c86af699344c498b0840c698a2465"
dependencies = [
2020-12-09 01:39:30 +03:00
"arrayvec",
2020-07-04 15:59:30 +03:00
"itoa",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "num-integer"
2020-12-09 01:39:30 +03:00
version = "0.1.44"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2020-03-20 20:28:42 +03:00
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
2020-12-09 01:39:30 +03:00
version = "0.2.14"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2020-03-20 20:28:42 +03:00
dependencies = [
"autocfg",
]
2020-03-22 23:08:48 +03:00
[[package]]
name = "num_cpus"
2020-05-05 14:50:04 +03:00
version = "1.13.0"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-05 14:50:04 +03:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2020-03-22 23:08:48 +03:00
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "object"
2021-08-28 15:35:28 +03:00
version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 15:35:28 +03:00
checksum = "39f37e50073ccad23b6d09bcb5b263f4e76d3bb6038e4a3c08e52162ffa8abc2"
2021-06-06 11:24:05 +03:00
dependencies = [
"memchr",
]
2021-02-09 00:40:58 +03:00
[[package]]
name = "once_cell"
2021-06-26 14:23:05 +03:00
version = "1.8.0"
2021-02-09 00:40:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 14:23:05 +03:00
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
2021-02-09 00:40:58 +03:00
[[package]]
name = "openssl-probe"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28988d872ab76095a6e6ac88d99b54fd267702734fd7ffe610ca27f533ddb95a"
[[package]]
name = "openssl-src"
2021-08-28 15:35:28 +03:00
version = "111.16.0+1.1.1l"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 15:35:28 +03:00
checksum = "7ab2173f69416cf3ec12debb5823d244127d23a9b127d5a5189aa97c5fa2859f"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1996d2d305e561b70d1ee0c53f1542833f4e1ac6ce9a6708b6ff2738ca67dc82"
dependencies = [
"autocfg",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
2021-05-18 01:21:05 +03:00
[[package]]
name = "output_vt100"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9"
dependencies = [
"winapi",
]
2020-07-09 10:25:04 +03:00
[[package]]
name = "parking_lot"
2021-08-28 15:35:28 +03:00
version = "0.11.2"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 15:35:28 +03:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2020-07-09 10:25:04 +03:00
dependencies = [
"instant",
2020-12-08 03:31:06 +03:00
"lock_api",
"parking_lot_core",
2020-07-09 10:25:04 +03:00
]
[[package]]
name = "parking_lot_core"
2021-08-30 13:15:18 +03:00
version = "0.8.5"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 13:15:18 +03:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
2020-07-09 10:25:04 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-07-09 10:25:04 +03:00
"instant",
2020-03-16 15:34:01 +03:00
"libc",
2021-03-01 01:42:11 +03:00
"redox_syscall",
2020-03-16 15:34:01 +03:00
"smallvec",
"winapi",
2020-03-16 15:34:01 +03:00
]
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "phf"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9fc3db1018c4b59d7d582a739436478b6035138b6aecbce989fc91c3e98409f"
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "pkg-config"
2020-12-09 01:39:30 +03:00
version = "0.3.19"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
2020-03-16 15:34:01 +03:00
2021-05-23 03:45:22 +03:00
[[package]]
name = "plist"
2021-08-15 14:48:26 +03:00
version = "1.2.1"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-15 14:48:26 +03:00
checksum = "a38d026d73eeaf2ade76309d0c65db5a35ecf649e3cec428db316243ea9d6711"
2021-05-23 03:45:22 +03:00
dependencies = [
"base64",
"chrono",
"indexmap",
"line-wrap",
"serde",
"xml-rs",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "pprof"
2021-08-22 13:54:04 +03:00
version = "0.5.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-22 13:54:04 +03:00
checksum = "c9fb4eee2f2c4f7d48fe5a33008dececbc405d0e58d2a94afe742d4f175bc401"
2020-07-04 15:59:30 +03:00
dependencies = [
"backtrace",
"inferno",
"lazy_static",
"libc",
"log",
"nix",
2020-12-08 03:31:06 +03:00
"parking_lot",
2020-07-04 15:59:30 +03:00
"symbolic-demangle",
"tempfile",
"thiserror",
]
2020-03-24 20:02:58 +03:00
[[package]]
name = "ppv-lite86"
2020-12-09 01:39:30 +03:00
version = "0.2.10"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857"
2020-07-04 15:59:30 +03:00
2021-05-18 01:21:05 +03:00
[[package]]
name = "pretty_assertions"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cab0e7c02cf376875e9335e0ba1da535775beb5450d21e1dffca068818ed98b"
dependencies = [
"ansi_term",
"ctor",
"diff",
"output_vt100",
]
[[package]]
name = "proc-macro-hack"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
[[package]]
name = "proc-macro2"
2021-09-05 11:51:36 +03:00
version = "1.0.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "b9f5105d4fdaab20335ca9565e106a5d9b82b6219b5ba735731124ac6711d23d"
dependencies = [
"unicode-xid",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "quick-xml"
2021-09-05 11:51:36 +03:00
version = "0.22.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
2020-07-04 15:59:30 +03:00
dependencies = [
"memchr",
]
[[package]]
name = "quote"
2021-03-01 01:42:11 +03:00
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-01 01:42:11 +03:00
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
dependencies = [
"proc-macro2",
]
2020-03-24 20:02:58 +03:00
[[package]]
name = "rand"
2021-06-26 14:23:05 +03:00
version = "0.8.4"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 14:23:05 +03:00
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
2020-03-24 20:02:58 +03:00
dependencies = [
"libc",
"rand_chacha",
"rand_core",
"rand_hc",
]
[[package]]
name = "rand_chacha"
2021-06-26 14:23:05 +03:00
version = "0.3.1"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 14:23:05 +03:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2020-03-24 20:02:58 +03:00
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2021-06-26 14:23:05 +03:00
version = "0.6.3"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 14:23:05 +03:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2020-03-24 20:02:58 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"getrandom",
2020-03-24 20:02:58 +03:00
]
[[package]]
name = "rand_hc"
2021-06-26 14:23:05 +03:00
version = "0.3.1"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 14:23:05 +03:00
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
2020-03-24 20:02:58 +03:00
dependencies = [
"rand_core",
]
2020-03-22 23:08:48 +03:00
[[package]]
name = "rayon-core"
version = "1.9.1"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
2020-03-22 23:08:48 +03:00
dependencies = [
"crossbeam-channel",
2020-03-22 23:08:48 +03:00
"crossbeam-deque",
2020-12-09 01:39:30 +03:00
"crossbeam-utils",
2020-03-22 23:08:48 +03:00
"lazy_static",
"num_cpus",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "redox_syscall"
2021-08-15 14:48:26 +03:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-15 14:48:26 +03:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
dependencies = [
"bitflags",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "redox_users"
2021-02-09 00:40:58 +03:00
version = "0.4.0"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-09 00:40:58 +03:00
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
2020-03-20 20:28:42 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"getrandom",
2021-03-01 01:42:11 +03:00
"redox_syscall",
2020-03-20 20:28:42 +03:00
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "regex"
version = "1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.6.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2020-03-24 20:02:58 +03:00
[[package]]
name = "remove_dir_all"
2020-06-15 13:30:48 +03:00
version = "0.5.3"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 13:30:48 +03:00
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2020-03-24 20:02:58 +03:00
dependencies = [
"winapi",
2020-03-24 20:02:58 +03:00
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "rgb"
2021-04-12 00:31:59 +03:00
version = "0.8.27"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-12 00:31:59 +03:00
checksum = "8fddb3b23626145d1776addfc307e1a1851f60ef6ca64f376bcb889697144cf0"
2020-07-06 22:18:37 +03:00
dependencies = [
"bytemuck",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "ron"
2021-09-10 11:14:30 +03:00
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-10 11:14:30 +03:00
checksum = "45005aa836116903a49cf3461474da697cfe66221762c6e95871092009ec86d6"
dependencies = [
2020-12-09 01:39:30 +03:00
"base64",
"bitflags",
"serde",
]
[[package]]
name = "rustc-demangle"
2021-08-28 15:35:28 +03:00
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 15:35:28 +03:00
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2021-05-23 03:45:22 +03:00
[[package]]
name = "ryu"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
[[package]]
name = "safemem"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "scopetime"
2020-03-24 23:01:58 +03:00
version = "0.1.1"
dependencies = [
"log",
]
[[package]]
name = "serde"
2021-08-30 13:15:18 +03:00
version = "1.0.130"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 13:15:18 +03:00
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2021-08-30 13:15:18 +03:00
version = "1.0.130"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 13:15:18 +03:00
checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "serde_json"
2021-08-30 13:15:18 +03:00
version = "1.0.67"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-30 13:15:18 +03:00
checksum = "a7f9e390c27c3c0ce8bc5d725f6e4d30a29d26659494aa4b17535f7522c5c950"
2021-05-23 03:45:22 +03:00
dependencies = [
"itoa",
"ryu",
"serde",
]
2020-10-25 12:50:20 +03:00
[[package]]
name = "serial_test"
version = "0.5.1"
2020-10-25 12:50:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0bccbcf40c8938196944a3da0e133e031a33f4d6b72db3bda3cc556e361905d"
2020-10-25 12:50:20 +03:00
dependencies = [
"lazy_static",
2020-12-08 03:31:06 +03:00
"parking_lot",
2020-10-25 12:50:20 +03:00
"serial_test_derive",
]
[[package]]
name = "serial_test_derive"
version = "0.5.1"
2020-10-25 12:50:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2acd6defeddb41eb60bb468f8825d0cfd0c2a76bc03bfd235b6a1dc4f6a1ad5"
2020-10-25 12:50:20 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "shell-escape"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45bb67a18fa91266cc7807181f62f9178a6873bfad7dc788c42e6430db40184f"
2020-03-16 15:34:01 +03:00
[[package]]
name = "signal-hook"
2021-09-05 11:51:36 +03:00
version = "0.3.10"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "9c98891d737e271a2954825ef19e46bd16bdb98e2746f2eec4f7a4ef7946efd1"
2020-03-16 15:34:01 +03:00
dependencies = [
"libc",
"signal-hook-registry",
]
2021-08-03 23:56:39 +03:00
[[package]]
name = "signal-hook-mio"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29fd5867f1c4f2c5be079aee7a2adf1152ebb04a4bc4d341f504b7dece607ed4"
dependencies = [
"libc",
"mio",
"signal-hook",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "signal-hook-registry"
2021-06-06 11:24:05 +03:00
version = "1.4.0"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-06 11:24:05 +03:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
2020-03-16 15:34:01 +03:00
dependencies = [
"libc",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "simplelog"
version = "0.10.0"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59d0fe306a0ced1c88a58042dc22fc2ddd000982c26d75f6aa09a394547c41e0"
2020-03-20 20:28:42 +03:00
dependencies = [
"chrono",
"log",
]
[[package]]
name = "siphasher"
2021-09-05 11:51:36 +03:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "533494a8f9b724d33625ab53c6c4800f7cc445895924a8ef649222dcb76e938b"
2020-03-16 15:34:01 +03:00
[[package]]
name = "smallvec"
2021-02-09 00:40:58 +03:00
version = "1.6.1"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-09 00:40:58 +03:00
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
2020-03-16 15:34:01 +03:00
[[package]]
name = "smawk"
2021-02-09 00:40:58 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-09 00:40:58 +03:00
checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
2020-07-04 15:59:30 +03:00
[[package]]
name = "stable_deref_trait"
2020-12-09 01:39:30 +03:00
version = "1.2.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2020-07-04 15:59:30 +03:00
[[package]]
name = "str_stack"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
[[package]]
name = "symbolic-common"
2021-07-10 13:32:42 +03:00
version = "8.3.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-10 13:32:42 +03:00
checksum = "348885c332e7d0784d661844b13b198464144a5ebcd3bfc047a6c441867ea467"
2020-07-04 15:59:30 +03:00
dependencies = [
"debugid",
"memmap",
"stable_deref_trait",
"uuid",
]
[[package]]
name = "symbolic-demangle"
2021-07-10 13:32:42 +03:00
version = "8.3.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-10 13:32:42 +03:00
checksum = "6780c62bfbd609bffaa13d6959715850578aa43caaae7aee14f1f24ceb64f433"
2020-07-04 15:59:30 +03:00
dependencies = [
"cpp_demangle",
"rustc-demangle",
"symbolic-common",
]
[[package]]
name = "syn"
2021-09-05 11:51:36 +03:00
version = "1.0.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "c6f107db402c2c2055242dbf4d2af0e69197202e9faacbef9571bbe47f5a1b84"
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "syntect"
2021-08-04 00:00:59 +03:00
version = "4.6.0"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "8b20815bbe80ee0be06e6957450a841185fcf690fe0178f14d77a05ce2caa031"
2021-05-23 03:45:22 +03:00
dependencies = [
"bincode",
"bitflags",
"fancy-regex",
"flate2",
"fnv",
"lazy_static",
"lazycell",
"plist",
"regex-syntax",
"serde",
"serde_derive",
"serde_json",
"walkdir",
"yaml-rust",
]
[[package]]
name = "sys-info"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33fcecee49339531cf6bd84ecf3ed94f9c8ef4a7e700f2a1cac9cc1ca485383a"
dependencies = [
"cc",
"libc",
]
2020-03-24 20:02:58 +03:00
[[package]]
name = "tempfile"
version = "3.2.0"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22"
2020-03-24 20:02:58 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-03-24 20:02:58 +03:00
"libc",
"rand",
2021-03-01 01:42:11 +03:00
"redox_syscall",
2020-03-24 20:02:58 +03:00
"remove_dir_all",
"winapi",
2020-03-24 20:02:58 +03:00
]
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
[[package]]
name = "textwrap"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80"
dependencies = [
"smawk",
"unicode-linebreak",
"unicode-width",
]
[[package]]
name = "thiserror"
2021-09-05 11:51:36 +03:00
version = "1.0.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "602eca064b2d83369e2b2f34b09c70b605402801927c65c11071ac911d299b88"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-09-05 11:51:36 +03:00
version = "1.0.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-05 11:51:36 +03:00
checksum = "bad553cc2c78e8de258400763a647e80e6d1b31ee237275d756f6836d204494c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-09-04 11:50:03 +03:00
[[package]]
name = "thread_local"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
dependencies = [
"once_cell",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "time"
2021-02-09 00:40:58 +03:00
version = "0.1.43"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-09 00:40:58 +03:00
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
2020-03-20 20:28:42 +03:00
dependencies = [
"libc",
"winapi",
2020-03-20 20:28:42 +03:00
]
2020-06-23 12:08:26 +03:00
[[package]]
name = "tinyvec"
2021-08-04 00:00:59 +03:00
version = "1.3.1"
2020-06-23 12:08:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "848a1e1181b9f6753b5e96a092749e29b11d19ede67dfbbd6c7dc7e0f49b5338"
2020-12-09 01:39:30 +03:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-06-23 12:08:26 +03:00
2020-03-16 15:34:01 +03:00
[[package]]
name = "tui"
2021-08-03 23:56:39 +03:00
version = "0.16.0"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-03 23:56:39 +03:00
checksum = "39c8ce4e27049eed97cfa363a5048b09d995e209994634a0efc26a14ab6c0c23"
2020-03-16 15:34:01 +03:00
dependencies = [
"bitflags",
"cassowary",
2021-05-02 20:44:02 +03:00
"crossterm",
"serde",
2020-03-16 15:34:01 +03:00
"unicode-segmentation",
"unicode-width",
]
[[package]]
name = "unicode-bidi"
2021-08-15 14:48:26 +03:00
version = "0.3.6"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-15 14:48:26 +03:00
checksum = "246f4c42e67e7a4e3c6106ff716a5d067d4132a642840b242e357e468a2a0085"
2020-03-16 15:34:01 +03:00
[[package]]
name = "unicode-linebreak"
2021-08-04 00:00:59 +03:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "3a52dcaab0c48d931f7cc8ef826fa51690a08e1ea55117ef26f89864f532383f"
dependencies = [
"regex",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "unicode-normalization"
2021-06-06 11:24:05 +03:00
version = "0.1.19"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-06 11:24:05 +03:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
2020-03-16 15:34:01 +03:00
dependencies = [
2020-06-23 12:08:26 +03:00
"tinyvec",
2020-03-16 15:34:01 +03:00
]
[[package]]
name = "unicode-segmentation"
2021-07-05 10:43:19 +03:00
version = "1.8.0"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-05 10:43:19 +03:00
checksum = "8895849a949e7845e06bd6dc1aa51731a103c42707010a5b591c0038fb73385b"
2020-03-16 15:34:01 +03:00
[[package]]
name = "unicode-truncate"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a04be5ca5f7a4a7270ffea82bc41c59b87c611ed04f20e77c338e8d3c2348e42"
dependencies = [
"unicode-width",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "unicode-width"
version = "0.1.8"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2020-03-16 15:34:01 +03:00
[[package]]
name = "unicode-xid"
2021-05-02 20:44:02 +03:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-02 20:44:02 +03:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2020-03-16 15:34:01 +03:00
[[package]]
name = "url"
version = "2.2.2"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2020-03-16 15:34:01 +03:00
dependencies = [
"form_urlencoded",
2020-03-16 15:34:01 +03:00
"idna",
"matches",
"percent-encoding",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "uuid"
2021-02-09 00:40:58 +03:00
version = "0.8.2"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-09 00:40:58 +03:00
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
2020-07-04 15:59:30 +03:00
2020-03-16 15:34:01 +03:00
[[package]]
name = "vcpkg"
2021-06-26 14:23:05 +03:00
version = "0.2.15"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-26 14:23:05 +03:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020-03-16 15:34:01 +03:00
2020-12-09 01:39:30 +03:00
[[package]]
name = "version_check"
2021-04-12 00:31:59 +03:00
version = "0.9.3"
2020-12-09 01:39:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-12 00:31:59 +03:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2020-12-09 01:39:30 +03:00
2021-05-23 03:45:22 +03:00
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
"same-file",
"winapi",
"winapi-util",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "wasi"
2021-02-09 00:40:58 +03:00
version = "0.10.2+wasi-snapshot-preview1"
2020-12-09 01:39:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-09 00:40:58 +03:00
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2020-12-09 01:39:30 +03:00
[[package]]
name = "which"
2021-08-04 00:00:59 +03:00
version = "4.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "ea187a8ef279bc014ec368c27a920da2024d2a711109bfbe3440585d5cf27ad9"
dependencies = [
"either",
2021-08-04 00:00:59 +03:00
"lazy_static",
"libc",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "winapi"
2020-07-06 10:16:13 +03:00
version = "0.3.9"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-06 10:16:13 +03:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2020-03-16 15:34:01 +03:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2021-05-23 03:45:22 +03:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2021-05-23 03:45:22 +03:00
[[package]]
name = "xml-rs"
2021-08-04 00:00:59 +03:00
version = "0.8.4"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 00:00:59 +03:00
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
2021-05-23 03:45:22 +03:00
[[package]]
name = "yaml-rust"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
dependencies = [
"linked-hash-map",
]