gitui/Cargo.lock

1275 lines
31 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.
[[package]]
name = "addr2line"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
2020-12-09 01:39:30 +03:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
2020-07-04 15:59:30 +03:00
[[package]]
name = "ahash"
2020-12-09 01:39:30 +03:00
version = "0.6.1"
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 = "865f8b0b3fced577b7df82e9b0eb7609595d7209c0b39e78d0646672e244b1b1"
2020-07-04 15:59:30 +03:00
dependencies = [
2020-12-09 01:39:30 +03:00
"getrandom 0.2.0",
"lazy_static",
"version_check",
2020-07-04 15:59:30 +03:00
]
2020-05-23 18:12:38 +03:00
[[package]]
name = "anyhow"
version = "1.0.38"
2020-05-23 18:12:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afddf7f520a80dbf76e6f50a35bca42a2331ef227a28b3b6dc5c2e2338d114b1"
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"
2020-12-20 18:55:49 +03:00
version = "0.11.0"
2020-03-22 23:08:48 +03:00
dependencies = [
"crossbeam-channel",
2020-03-22 23:08:48 +03:00
"git2",
"invalidstring",
2020-03-22 23:08:48 +03:00
"log",
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",
2020-10-25 12:50:20 +03:00
"url",
2020-03-22 23:08:48 +03:00
]
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"
version = "0.3.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d117600f438b1707d4e4ae15d3595657288f8235a0eb593e80ecc98ab34e1bc"
dependencies = [
"addr2line",
"cfg-if 1.0.0",
"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
2020-03-16 15:34:01 +03:00
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2020-07-06 22:18:37 +03:00
[[package]]
name = "bytemuck"
2020-12-09 01:39:30 +03:00
version = "1.4.1"
2020-07-06 22:18:37 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "41aa2ec95ca3b5c54cf73c91acf06d24f4495d5f1b1c12506ae3483d646177ac"
2020-07-06 22:18:37 +03:00
[[package]]
name = "bytesize"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81a18687293a1546b67c246452202bbbf143d239cb43494cc163da14979082da"
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"
2020-12-09 01:39:30 +03:00
version = "1.0.66"
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 = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
2020-03-16 15:34:01 +03:00
dependencies = [
"jobserver",
]
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[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",
]
[[package]]
name = "const_fn"
2020-12-09 01:39:30 +03:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "c478836e029dcef17fb47c89023448c64f781a046e0300e257ad8225ae59afab"
2020-03-20 20:28:42 +03:00
2020-07-04 15:59:30 +03:00
[[package]]
name = "cpp_demangle"
2020-12-09 01:39:30 +03:00
version = "0.3.2"
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 = "44919ecaf6f99e8e737bc239408931c9a01e9a6c74814fee8242dd2506b65390"
2020-07-04 15:59:30 +03:00
dependencies = [
2020-12-09 01:39:30 +03:00
"cfg-if 1.0.0",
2020-07-04 15:59:30 +03:00
"glob",
]
[[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",
2020-12-09 01:39:30 +03:00
"crossbeam-utils",
]
2020-03-22 23:08:48 +03:00
[[package]]
name = "crossbeam-deque"
version = "0.8.0"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
2020-03-22 23:08:48 +03:00
dependencies = [
"cfg-if 1.0.0",
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"
2020-12-09 01:39:30 +03:00
version = "0.9.1"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d"
2020-03-22 23:08:48 +03:00
dependencies = [
"cfg-if 1.0.0",
"const_fn",
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"
2020-12-09 01:39:30 +03:00
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d"
dependencies = [
"autocfg",
"cfg-if 1.0.0",
2020-03-20 20:28:42 +03:00
"lazy_static",
]
[[package]]
name = "crossterm"
version = "0.18.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e86d73f2a0b407b5768d10a8c720cf5d2df49a9efc10ca09176d201ead4b7fb"
dependencies = [
"bitflags",
"crossterm_winapi 0.6.2",
"lazy_static",
"libc",
"mio",
"parking_lot",
"signal-hook",
"winapi",
]
[[package]]
name = "crossterm"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c36c10130df424b2f3552fcc2ddcd9b28a27b1e54b358b45874f88d1ca6888c"
dependencies = [
"bitflags",
"crossterm_winapi 0.7.0",
"lazy_static",
"libc",
"mio",
2020-12-08 03:31:06 +03:00
"parking_lot",
"serde",
2020-03-16 15:34:01 +03:00
"signal-hook",
"winapi",
2020-03-16 15:34:01 +03:00
]
[[package]]
name = "crossterm_winapi"
version = "0.6.2"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2265c3f8e080075d9b6417aa72293fc71662f34b4af2612d8d1b074d29510db"
2020-03-16 15:34:01 +03:00
dependencies = [
"winapi",
2020-03-16 15:34:01 +03:00
]
[[package]]
name = "crossterm_winapi"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0da8964ace4d3e4a044fd027919b2237000b24315a37c916f61809f1ff2140b9"
dependencies = [
"winapi",
]
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",
]
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 = [
"cfg-if 1.0.0",
"dirs-sys-next",
2020-03-20 20:28:42 +03:00
]
[[package]]
name = "dirs-sys-next"
version = "0.1.1"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99de365f605554ae33f115102a02057d4fc18b01f3284d6870be0938743cfe7d"
2020-03-20 20:28:42 +03:00
dependencies = [
"libc",
"redox_users",
"winapi",
2020-03-20 20:28:42 +03:00
]
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
[[package]]
name = "form_urlencoded"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ece68d15c92e84fa4f19d3780f1294e5ca82a78a6d515f1efaabcc144688be00"
dependencies = [
"matches",
"percent-encoding",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "getrandom"
2020-12-09 01:39:30 +03:00
version = "0.1.15"
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 = "fc587bc0ec293155d5bfa6b9891ec18a1e330c234f896ea47fbada4cadbe47e6"
2020-03-20 20:28:42 +03:00
dependencies = [
"cfg-if 0.1.10",
2020-03-20 20:28:42 +03:00
"libc",
2020-12-09 01:39:30 +03:00
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee8025cf36f917e6a52cce185b7c7177689b838b7ec138364e50cc2277a56cf4"
dependencies = [
"cfg-if 0.1.10",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
2020-03-20 20:28:42 +03:00
]
[[package]]
name = "gimli"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6503fe142514ca4799d4c26297c4248239fe8838d827db6bd6065c6ed29a6ce"
2020-03-16 15:34:01 +03:00
[[package]]
name = "git2"
version = "0.13.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d250f5f82326884bd39c2853577e70a121775db76818ffa452ed1e80de12986"
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"
2020-12-20 18:55:49 +03:00
version = "0.11.0"
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",
"bytesize",
2020-05-05 14:47:21 +03:00
"chrono",
"clap",
"crossbeam-channel",
"crossterm 0.19.0",
"dirs-next",
2020-04-15 23:38:09 +03:00
"itertools",
2020-03-20 20:28:42 +03:00
"log",
2020-07-04 15:59:30 +03:00
"pprof",
2020-03-26 01:37:00 +03:00
"rayon-core",
"ron",
"scopeguard",
"scopetime",
"serde",
2020-03-20 20:28:42 +03:00
"simplelog",
"textwrap 0.13.2",
2020-03-16 15:34:01 +03:00
"tui",
"unicode-width",
"which",
2020-03-16 15:34:01 +03:00
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
2020-12-09 01:39:30 +03:00
[[package]]
name = "hashbrown"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
2020-03-22 23:08:48 +03:00
[[package]]
name = "hermit-abi"
2020-12-09 01:39:30 +03:00
version = "0.1.17"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8"
2020-03-22 23:08:48 +03:00
dependencies = [
"libc",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "idna"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "indexmap"
2020-12-09 01:39:30 +03:00
version = "1.6.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 = "55e2e4c765aa53a0424761bf9f41aa7a6ac1efa87238f59560640e27fca028f2"
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"
2020-12-09 01:39:30 +03:00
version = "0.10.2"
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 = "514b79a9791d88f90889bd38a88dc43a6058b3ec72a8930a817c6e59fa9e4927"
2020-07-04 15:59:30 +03:00
dependencies = [
"ahash",
"indexmap",
"itoa",
"lazy_static",
"log",
"num-format",
"quick-xml",
"rgb",
"str_stack",
]
2020-07-09 10:25:04 +03:00
[[package]]
name = "instant"
2020-12-09 01:39:30 +03:00
version = "0.1.9"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
dependencies = [
"cfg-if 1.0.0",
]
2020-07-09 10:25:04 +03:00
[[package]]
name = "invalidstring"
version = "0.1.2"
[[package]]
name = "itertools"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37d572918e350e82412fe766d24b15e6682fb2ed2bbe018280caa810397cb319"
dependencies = [
"either",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "itoa"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
2020-03-16 15:34:01 +03:00
[[package]]
name = "jobserver"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
dependencies = [
"libc",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2020-12-09 01:39:30 +03:00
version = "0.2.81"
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 = "1482821306169ec4d07f6aca392a4681f66c75c9918aa49641a2595db64053cb"
2020-03-16 15:34:01 +03:00
[[package]]
name = "libgit2-sys"
version = "0.12.18+1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3da6a42da88fc37ee1ecda212ffa254c25713532980005d5f7c0b0fbe7e6e885"
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"
2020-12-09 01:39:30 +03:00
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "df40b13fe7ea1be9b9dffa365a51273816c345fc1811478b57ed7d964fbfc4ce"
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "libz-sys"
2020-12-09 01:39:30 +03:00
version = "1.1.2"
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 = "602113192b08db8f38796c4e85c39e960c145965140e918018bcde1952429655"
2020-03-16 15:34:01 +03:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2020-07-09 10:25:04 +03:00
[[package]]
name = "lock_api"
2020-12-09 01:39:30 +03:00
version = "0.4.2"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312"
2020-07-09 10:25:04 +03:00
dependencies = [
"scopeguard",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "log"
version = "0.4.13"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcf3805d4480bb5b86070dcfeb9e2cb2ebc148adb753c5cca5f884d1d65a42b2"
2020-03-16 15:34:01 +03:00
dependencies = [
"cfg-if 0.1.10",
2020-03-16 15:34:01 +03:00
]
[[package]]
name = "matches"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
2020-07-04 15:59:30 +03:00
[[package]]
name = "memchr"
2020-12-09 01:39:30 +03:00
version = "2.3.4"
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 = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
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"
2020-12-09 01:39:30 +03:00
version = "0.6.1"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "157b4208e3059a8f9e78d559edc658e13df41410cb3ae03979c83130067fdd87"
2020-03-22 23:08:48 +03:00
dependencies = [
"autocfg",
]
[[package]]
name = "miniz_oxide"
2020-12-09 01:39:30 +03:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
dependencies = [
"adler",
2020-12-09 01:39:30 +03:00
"autocfg",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "mio"
2020-12-09 01:39:30 +03:00
version = "0.7.6"
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 = "f33bc887064ef1fd66020c9adfc45bb9f33d75a42096c81e7c56c65b75dd1a8b"
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"
2020-12-09 01:39:30 +03:00
version = "0.3.6"
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 = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897"
2020-03-16 15:34:01 +03:00
dependencies = [
"socket2",
"winapi",
2020-03-16 15:34:01 +03:00
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "nix"
version = "0.19.1"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ccba0cfe4fdf15982d1674c69b1fd80bad427d293849982668dfe454bd61f2"
2020-07-04 15:59:30 +03:00
dependencies = [
"bitflags",
"cc",
"cfg-if 1.0.0",
2020-07-04 15:59:30 +03:00
"libc",
]
[[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"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9a7ab5d64814df0fe4a4b5ead45ed6c5f181ee3ff04ba344313a6c80446c5d4"
[[package]]
name = "openssl-probe"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
[[package]]
name = "openssl-src"
2020-12-09 01:39:30 +03:00
version = "111.12.0+1.1.1h"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "858a4132194f8570a7ee9eb8629e85b23cbc4565f2d4a162e87556e5956abf61"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.58"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de"
dependencies = [
"autocfg",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
2020-07-09 10:25:04 +03:00
[[package]]
name = "parking_lot"
2020-12-09 01:39:30 +03:00
version = "0.11.1"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
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"
2020-12-09 01:39:30 +03:00
version = "0.8.1"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "d7c6d9b8427445284a09c55be860a15855ab580a417ccad9da88f5a06787ced0"
2020-07-09 10:25:04 +03:00
dependencies = [
2020-12-09 01:39:30 +03:00
"cfg-if 1.0.0",
2020-07-09 10:25:04 +03:00
"instant",
2020-03-16 15:34:01 +03:00
"libc",
"redox_syscall 0.1.57",
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 = "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
2020-07-04 15:59:30 +03:00
[[package]]
name = "pprof"
version = "0.4.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffccebf7f721f18477a39f99a7bae543edd02a9850a2cbfe6c407f8cc291dd89"
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
[[package]]
name = "proc-macro2"
version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
dependencies = [
"unicode-xid",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "quick-xml"
2020-12-09 01:39:30 +03:00
version = "0.20.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 = "26aab6b48e2590e4a64d1ed808749ba06257882b461d01ca71baeb747074a6dd"
2020-07-04 15:59:30 +03:00
dependencies = [
"memchr",
]
[[package]]
name = "quote"
2020-06-15 13:30:48 +03:00
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 13:30:48 +03:00
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
dependencies = [
"proc-macro2",
]
2020-03-24 20:02:58 +03:00
[[package]]
name = "rand"
version = "0.8.1"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c24fcd450d3fa2b592732565aa4f17a27a61c65ece4726353e000939b0edee34"
2020-03-24 20:02:58 +03:00
dependencies = [
"libc",
"rand_chacha",
"rand_core",
"rand_hc",
]
[[package]]
name = "rand_chacha"
version = "0.3.0"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
2020-03-24 20:02:58 +03:00
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.1"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c026d7df8b298d90ccbbc5190bd04d85e159eaf5576caeacf8741da93ccbd2e5"
2020-03-24 20:02:58 +03:00
dependencies = [
"getrandom 0.2.0",
2020-03-24 20:02:58 +03:00
]
[[package]]
name = "rand_hc"
version = "0.3.0"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
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.0"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
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"
2020-12-09 01:39:30 +03:00
version = "0.1.57"
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 = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2020-03-16 15:34:01 +03:00
[[package]]
name = "redox_syscall"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05ec8ca9416c5ea37062b502703cd7fcb207736bc294f6e0cf367ac6fc234570"
dependencies = [
"bitflags",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "redox_users"
2020-12-09 01:39:30 +03:00
version = "0.3.5"
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 = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
2020-03-20 20:28:42 +03:00
dependencies = [
2020-12-09 01:39:30 +03:00
"getrandom 0.1.15",
"redox_syscall 0.1.57",
2020-03-20 20:28:42 +03:00
]
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"
2020-12-09 01:39:30 +03:00
version = "0.8.25"
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 = "287f3c3f8236abb92d8b7e36797f19159df4b58f0a658cc3fb6dd3004b1f3bd3"
2020-07-06 22:18:37 +03:00
dependencies = [
"bytemuck",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "ron"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "064ea8613fb712a19faf920022ec8ddf134984f100090764a4e1d768f3827f1f"
dependencies = [
2020-12-09 01:39:30 +03:00
"base64",
"bitflags",
"serde",
]
[[package]]
name = "rustc-demangle"
2020-12-09 01:39:30 +03:00
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "6e3bad0ee36814ca07d7968269dd4b7ec89ec2da10c4bb613928d3077083c232"
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"
version = "1.0.123"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92d5161132722baa40d802cc70b15262b98258453e85e5d1d365c757c73869ae"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.123"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9391c295d64fc0abb2c556bad848f33cb8296276b1ad2677d1ae1ace4f258f31"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
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",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "signal-hook"
2020-06-23 12:08:26 +03:00
version = "0.1.16"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-23 12:08:26 +03:00
checksum = "604508c1418b99dfe1925ca9224829bb2a8a9a04dda655cc01fcad46f4ab05ed"
2020-03-16 15:34:01 +03:00
dependencies = [
"libc",
"mio",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-registry"
2020-12-09 01:39:30 +03:00
version = "1.2.2"
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 = "ce32ea0c6c56d5eacaeb814fbed9960547021d3edd010ded1425f180536b20ab"
2020-03-16 15:34:01 +03:00
dependencies = [
"libc",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "simplelog"
version = "0.9.0"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bc0ffd69814a9b251d43afcabf96dad1b29f5028378056257be9e3fecc9f720"
2020-03-20 20:28:42 +03:00
dependencies = [
"chrono",
"log",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "smallvec"
2020-12-09 01:39:30 +03:00
version = "1.5.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 = "ae524f056d7d770e174287294f562e95044c68e88dec909a00d2094805db9d75"
2020-03-16 15:34:01 +03:00
[[package]]
name = "smawk"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1bc737c97d093feb72e67f4926d9b22d717ce8580cd25f0ce86d74e859c466d"
[[package]]
name = "socket2"
2020-12-09 01:39:30 +03:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "2c29947abdee2a218277abeca306f25789c938e500ea5a9d4b12a5a504466902"
dependencies = [
2020-12-09 01:39:30 +03:00
"cfg-if 1.0.0",
"libc",
"redox_syscall 0.1.57",
"winapi",
]
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"
version = "8.0.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0caab39ce6f074031b8fd3dd297bfda70a2d1f33c6e7cc1b737ac401f856448d"
2020-07-04 15:59:30 +03:00
dependencies = [
"debugid",
"memmap",
"stable_deref_trait",
"uuid",
]
[[package]]
name = "symbolic-demangle"
version = "8.0.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b77ecb5460a87faa37ed53521eed8f073c8339b7a5788c1f93efc09ce74e1b68"
2020-07-04 15:59:30 +03:00
dependencies = [
"cpp_demangle",
"rustc-demangle",
"symbolic-common",
]
[[package]]
name = "syn"
version = "1.0.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c700597eca8a5a762beb35753ef6b94df201c81cca676604f547495a0d7f0081"
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
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 = [
"cfg-if 1.0.0",
2020-03-24 20:02:58 +03:00
"libc",
"rand",
"redox_syscall 0.2.4",
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.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3cdcf6b66102d38821c33eea2bf1e8b7bd738072171cbf8a0683fbb46fcb8b0b"
dependencies = [
"smawk",
"unicode-width",
]
[[package]]
name = "thiserror"
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76cc616c6abf8c8928e2fdcc0dbfab37175edd8fb49a4641066ad1364fdab146"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9be73a2caec27583d0046ef3796c3794f868a5bc813db689eed00c7631275cd1"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "time"
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 = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2020-03-20 20:28:42 +03:00
dependencies = [
"libc",
2020-12-09 01:39:30 +03:00
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi",
2020-03-20 20:28:42 +03:00
]
2020-06-23 12:08:26 +03:00
[[package]]
name = "tinyvec"
2020-12-09 01:39:30 +03:00
version = "1.1.0"
2020-06-23 12:08:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:39:30 +03:00
checksum = "ccf8dbc19eb42fba10e8feaaec282fb50e2c14b2726d6301dbfeed0f73306a6f"
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"
version = "0.14.0"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ced152a8e9295a5b168adc254074525c17ac4a83c90b2716274cc38118bddc9"
2020-03-16 15:34:01 +03:00
dependencies = [
"bitflags",
"cassowary",
"crossterm 0.18.2",
"serde",
2020-03-16 15:34:01 +03:00
"unicode-segmentation",
"unicode-width",
]
[[package]]
name = "unicode-bidi"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
dependencies = [
"matches",
]
[[package]]
name = "unicode-normalization"
2020-12-09 01:39:30 +03:00
version = "0.1.16"
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 = "a13e63ab62dbe32aeee58d1c5408d35c36c392bba5d9d3142287219721afe606"
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"
2020-12-09 01:39:30 +03:00
version = "1.7.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 = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
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"
2020-07-06 10:16:13 +03:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-06 10:16:13 +03:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2020-03-16 15:34:01 +03:00
[[package]]
name = "url"
version = "2.2.0"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5909f2b0817350449ed73e8bcd81c8c3c8d9a7a5d8acba4b27db277f1868976e"
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"
2020-07-09 10:25:04 +03:00
version = "0.8.1"
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 = "9fde2f6a4bea1d6e007c4ad38c6839fa71cbb63b6dbf5b595aa38dc9b1093c11"
2020-07-04 15:59:30 +03:00
2020-03-16 15:34:01 +03:00
[[package]]
name = "vcpkg"
2020-06-15 13:30:48 +03:00
version = "0.2.10"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 13:30:48 +03:00
checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
2020-03-16 15:34:01 +03:00
2020-12-09 01:39:30 +03:00
[[package]]
name = "version_check"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
2020-03-20 20:28:42 +03:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2020-12-09 01:39:30 +03:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]]
name = "which"
version = "4.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87c14ef7e1b8b8ecfc75d5eca37949410046e66f15d185c01d70824f1f8111ef"
dependencies = [
"libc",
"thiserror",
]
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"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"