gitui/Cargo.lock

2180 lines
53 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"
2022-12-20 17:15:14 +03:00
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
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-10-15 19:54:57 +03:00
version = "0.7.6"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-15 19:54:57 +03:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
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
]
2022-12-10 13:31:10 +03:00
[[package]]
name = "ahash"
2023-01-27 02:38:28 +03:00
version = "0.8.3"
2022-12-10 13:31:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
2022-12-10 13:31:10 +03:00
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "aho-corasick"
2022-11-22 13:09:19 +03:00
version = "0.7.20"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
2021-05-23 03:45:22 +03:00
dependencies = [
"memchr",
]
[[package]]
name = "android_system_properties"
2022-08-30 14:48:23 +03:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-30 14:48:23 +03:00
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2020-05-23 18:12:38 +03:00
[[package]]
name = "anyhow"
version = "1.0.69"
2020-05-23 18:12:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "224afbd727c3d6e4b90103ece64b8d1b67fbb1973b1046c2281eed3f3803f800"
2020-05-23 18:12:38 +03:00
2020-07-04 15:59:30 +03:00
[[package]]
name = "arrayvec"
2022-11-22 13:09:19 +03:00
version = "0.7.2"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
2020-07-04 15:59:30 +03:00
2020-03-22 23:08:48 +03:00
[[package]]
name = "asyncgit"
2022-11-22 13:07:41 +03:00
version = "0.22.1"
2020-03-22 23:08:48 +03:00
dependencies = [
"crossbeam-channel",
2021-04-18 01:08:35 +03:00
"easy-cast",
2022-08-31 11:51:08 +03:00
"env_logger",
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",
"serde",
2020-10-25 12:50:20 +03:00
"serial_test",
2022-01-17 17:06:54 +03:00
"shellexpand",
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 = [
2022-12-10 13:31:10 +03:00
"hermit-abi 0.1.19",
2021-02-09 00:40:58 +03:00
"libc",
"winapi",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "autocfg"
version = "1.1.0"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-03-16 15:34:01 +03:00
[[package]]
name = "backtrace"
2022-12-20 17:15:14 +03:00
version = "0.3.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
dependencies = [
"addr2line",
2021-04-27 18:47:46 +03:00
"cc",
2021-02-09 00:40:58 +03:00
"cfg-if",
"libc",
2022-12-20 17:15:14 +03:00
"miniz_oxide",
"object",
"rustc-demangle",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "base64"
2022-11-22 13:09:19 +03:00
version = "0.13.1"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
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.3"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
2021-05-23 03:45:22 +03:00
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-11-22 00:05:30 +03:00
version = "1.3.2"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-22 00:05:30 +03:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-03-16 15:34:01 +03:00
[[package]]
name = "bugreport"
2022-08-06 18:00:19 +03:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-06 18:00:19 +03:00
checksum = "535120b8182547808081a66f1f77a64533c780b23da26763e0ee34dfb94f98c9"
dependencies = [
"git-version",
"shell-escape",
"sys-info",
]
2022-08-05 14:43:02 +03:00
[[package]]
name = "bumpalo"
2023-01-27 02:38:28 +03:00
version = "3.12.0"
2022-08-05 14:43:02 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
2022-08-05 14:43:02 +03:00
2020-07-06 22:18:37 +03:00
[[package]]
name = "bytemuck"
2023-01-27 02:38:28 +03:00
version = "1.13.0"
2020-07-06 22:18:37 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "c041d3eab048880cb0b86b256447da3f18859a163c3b8d8893f4e6368abe6393"
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"
2023-01-29 13:23:54 +03:00
version = "1.0.79"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-29 13:23:54 +03:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
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.23"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f"
2020-03-20 20:28:42 +03:00
dependencies = [
"iana-time-zone",
2020-03-20 20:28:42 +03:00
"num-integer",
"num-traits",
"winapi",
2020-03-20 20:28:42 +03:00
]
[[package]]
name = "clap"
2023-01-27 02:38:28 +03:00
version = "4.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76"
dependencies = [
"bitflags",
"clap_lex",
2022-12-10 13:31:10 +03:00
"is-terminal",
"once_cell",
"strsim",
"termcolor",
]
[[package]]
name = "clap_lex"
2023-01-27 02:38:28 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade"
dependencies = [
"os_str_bytes",
]
2022-11-22 13:09:19 +03:00
[[package]]
name = "codespan-reporting"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
dependencies = [
"termcolor",
"unicode-width",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2020-07-04 15:59:30 +03:00
[[package]]
name = "cpp_demangle"
2022-11-22 13:09:19 +03:00
version = "0.4.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "b446fd40bcc17eddd6a4a78f24315eb90afdb3334999ddfd4909985c47722442"
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.3.2"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2021-05-23 03:45:22 +03:00
dependencies = [
"cfg-if",
]
[[package]]
name = "crossbeam-channel"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
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"
version = "0.8.2"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
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"
2022-11-22 13:09:19 +03:00
version = "0.9.13"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
2020-03-22 23:08:48 +03:00
dependencies = [
"autocfg",
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
"memoffset",
"scopeguard",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "crossbeam-utils"
2022-11-22 13:09:19 +03:00
version = "0.8.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-03-20 20:28:42 +03:00
]
[[package]]
name = "crossterm"
2022-08-17 22:46:55 +03:00
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 22:46:55 +03:00
checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
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"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
dependencies = [
"winapi",
]
2021-05-18 01:21:05 +03:00
[[package]]
name = "ctor"
2022-10-24 12:41:46 +03:00
version = "0.1.26"
2021-05-18 01:21:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-24 12:41:46 +03:00
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
2021-05-18 01:21:05 +03:00
dependencies = [
"quote",
"syn",
]
2022-11-22 13:09:19 +03:00
[[package]]
name = "cxx"
2023-02-11 13:14:30 +03:00
version = "1.0.90"
2022-11-22 13:09:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "90d59d9acd2a682b4e40605a242f6670eaa58c5957471cbf85e8aa6a0b97a5e8"
2022-11-22 13:09:19 +03:00
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
2023-02-11 13:14:30 +03:00
version = "1.0.90"
2022-11-22 13:09:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "ebfa40bda659dd5c864e65f4c9a2b0aff19bea56b017b9b77c73d3766a453a38"
2022-11-22 13:09:19 +03:00
dependencies = [
"cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
"syn",
]
[[package]]
name = "cxxbridge-flags"
2023-02-11 13:14:30 +03:00
version = "1.0.90"
2022-11-22 13:09:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "457ce6757c5c70dc6ecdbda6925b958aae7f959bda7d8fb9bde889e34a09dc03"
2022-11-22 13:09:19 +03:00
[[package]]
name = "cxxbridge-macro"
2023-02-11 13:14:30 +03:00
version = "1.0.90"
2022-11-22 13:09:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "ebf883b7aacd7b2aeb2a7b338648ee19f57c140d4ee8e52c68979c6b2f7f2263"
2022-11-22 13:09:19 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "dashmap"
2022-09-02 21:10:17 +03:00
version = "5.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-02 21:10:17 +03:00
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
dependencies = [
"cfg-if",
"hashbrown",
"lock_api",
2022-09-02 21:10:17 +03:00
"once_cell",
"parking_lot_core",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "debugid"
version = "0.8.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
2020-07-04 15:59:30 +03:00
dependencies = [
"uuid",
]
2021-05-18 01:21:05 +03:00
[[package]]
name = "diff"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
[[package]]
name = "dirs"
version = "4.0.0"
2021-05-18 01:21:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
]
2021-05-18 01:21:05 +03:00
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"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
]
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.5.2"
2021-04-18 01:08:35 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10936778145f3bea71fd9bf61332cce28c28e96a380714f7ab34838b80733fd6"
2021-04-18 01:08:35 +03:00
2020-03-16 15:34:01 +03:00
[[package]]
name = "either"
2023-01-27 02:38:28 +03:00
version = "1.8.1"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2020-03-16 15:34:01 +03:00
2022-08-31 11:51:08 +03:00
[[package]]
name = "env_logger"
2022-12-10 13:32:43 +03:00
version = "0.10.0"
2022-08-31 11:51:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-10 13:32:43 +03:00
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
2022-08-31 11:51:08 +03:00
dependencies = [
"humantime",
2022-12-10 13:32:43 +03:00
"is-terminal",
2022-08-31 11:51:08 +03:00
"log",
"regex",
"termcolor",
]
2022-12-10 13:31:10 +03:00
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
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",
]
2022-01-12 14:52:35 +03:00
[[package]]
name = "fastrand"
version = "1.8.0"
2022-01-12 14:52:35 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
2022-01-12 14:52:35 +03:00
dependencies = [
"instant",
]
[[package]]
name = "filetime"
2023-02-11 13:14:30 +03:00
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412"
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
2023-02-11 13:14:30 +03:00
"windows-sys 0.45.0",
]
2021-05-21 15:52:05 +03:00
[[package]]
name = "filetreelist"
2022-01-30 21:28:45 +03:00
version = "0.5.0"
2021-05-21 15:52:05 +03:00
dependencies = [
"pretty_assertions",
"thiserror",
]
2021-11-22 00:05:30 +03:00
[[package]]
name = "findshlibs"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
dependencies = [
"cc",
"lazy_static",
"libc",
"winapi",
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "flate2"
2022-12-10 13:31:10 +03:00
version = "1.0.25"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-10 13:31:10 +03:00
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
2021-05-23 03:45:22 +03:00
dependencies = [
"crc32fast",
2022-12-20 17:15:14 +03:00
"miniz_oxide",
2021-05-23 03:45:22 +03:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
dependencies = [
"percent-encoding",
]
[[package]]
name = "fsevent-sys"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
dependencies = [
"libc",
]
[[package]]
name = "futures"
2023-02-11 13:14:30 +03:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "13e2792b0ff0340399d58445b88fd9770e3489eff258a4cbc1523418f12abf84"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-02-11 13:14:30 +03:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "2e5317663a9089767a1ec00a487df42e0ca174b61b4483213ac24448e4664df5"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-02-11 13:14:30 +03:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "ec90ff4d0fe1f57d600049061dc6bb68ed03c7d2fbd697274c41805dcb3f8608"
[[package]]
name = "futures-executor"
2023-02-11 13:14:30 +03:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "e8de0a35a6ab97ec8869e32a2473f4b1324459e14c29275d14b10cb1fd19b50e"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2023-02-11 13:14:30 +03:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "bfb8371b6fb2aeb2d280374607aeabfc99d95c72edfe51692e42d3d7f0d08531"
[[package]]
name = "futures-sink"
2023-02-11 13:14:30 +03:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "f310820bb3e8cfd46c80db4d7fb8353e15dfff853a127158425f31e0be6c8364"
[[package]]
name = "futures-task"
2023-02-11 13:14:30 +03:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "dcf79a1bf610b10f42aea489289c5a2c478a786509693b80cd39c44ccd936366"
[[package]]
name = "futures-util"
2023-02-11 13:14:30 +03:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "9c1d6de3acfef38d2be4b1f543f553131788603495be83da675e180c8d6b7bd1"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
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"
2022-10-24 12:41:46 +03:00
version = "0.2.8"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-24 12:41:46 +03:00
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
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",
2022-08-17 20:05:12 +03:00
"wasi",
2020-03-20 20:28:42 +03:00
]
[[package]]
name = "gh-emoji"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30ad64b43d48c1745c0059e5ba223816eb599eec8956c668fc0a31f6b9cd799e"
dependencies = [
"phf",
"regex",
]
[[package]]
name = "gimli"
2023-01-27 02:38:28 +03:00
version = "0.27.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "221996f774192f0f718773def8201c4ae31f02616a54ccfc2d358bb0e5cefdec"
[[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"
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccf7f68c2995f392c49fffb4f95ae2c873297830eb25c6bc4c114ce8f4562acc"
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"
2022-11-22 13:07:41 +03:00
version = "0.22.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",
2020-03-20 20:28:42 +03:00
"log",
"notify",
"notify-debouncer-mini",
2022-09-02 10:17:34 +03:00
"once_cell",
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",
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"
version = "0.12.3"
2020-12-09 01:39:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2022-09-18 15:57:26 +03:00
dependencies = [
2022-12-10 13:31:10 +03:00
"ahash 0.7.6",
2022-09-18 15:57:26 +03:00
]
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",
]
2022-12-10 13:31:10 +03:00
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
2023-02-11 13:14:30 +03:00
[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
2022-08-31 11:51:08 +03:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "iana-time-zone"
2022-11-22 13:09:19 +03:00
version = "0.1.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
dependencies = [
"android_system_properties",
"core-foundation-sys",
2022-11-22 13:09:19 +03:00
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"winapi",
]
2022-11-22 13:09:19 +03:00
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
dependencies = [
"cxx",
"cxx-build",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "idna"
version = "0.3.0"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
2020-03-16 15:34:01 +03:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "indexmap"
2022-11-22 13:09:19 +03:00
version = "1.9.2"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
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"
2023-01-27 02:38:28 +03:00
version = "0.11.14"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "d6e66fa9bb3c52f40d05c11b78919ff2f18993c2305bd8a62556d20cb3e9606f"
2020-07-04 15:59:30 +03:00
dependencies = [
2023-01-27 02:38:28 +03:00
"ahash 0.8.3",
2021-02-09 00:40:58 +03:00
"atty",
2020-07-04 15:59:30 +03:00
"indexmap",
2022-11-22 13:09:19 +03:00
"itoa",
2020-07-04 15:59:30 +03:00
"log",
"num-format",
"once_cell",
2020-07-04 15:59:30 +03:00
"quick-xml",
"rgb",
"str_stack",
]
[[package]]
name = "inotify"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
dependencies = [
"bitflags",
"inotify-sys",
"libc",
]
[[package]]
name = "inotify-sys"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
dependencies = [
"libc",
]
2020-07-09 10:25:04 +03:00
[[package]]
name = "instant"
2021-10-23 15:29:18 +03:00
version = "0.1.12"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-23 15:29:18 +03:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
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"
2022-12-10 13:31:10 +03:00
[[package]]
name = "io-lifetimes"
2023-02-11 13:14:30 +03:00
version = "1.0.5"
2022-12-10 13:31:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
2022-12-10 13:31:10 +03:00
dependencies = [
"libc",
2023-02-11 13:14:30 +03:00
"windows-sys 0.45.0",
2022-12-10 13:31:10 +03:00
]
[[package]]
name = "is-terminal"
2023-02-11 13:14:30 +03:00
version = "0.4.3"
2022-12-10 13:31:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef"
2022-12-10 13:31:10 +03:00
dependencies = [
2023-02-11 13:14:30 +03:00
"hermit-abi 0.3.1",
2022-12-10 13:31:10 +03:00
"io-lifetimes",
"rustix",
2023-02-11 13:14:30 +03:00
"windows-sys 0.45.0",
2022-12-10 13:31:10 +03:00
]
[[package]]
name = "itertools"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "itoa"
2022-12-20 17:15:14 +03:00
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
2020-03-16 15:34:01 +03:00
[[package]]
name = "jobserver"
2022-11-22 13:09:19 +03:00
version = "0.1.25"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
2020-03-16 15:34:01 +03:00
dependencies = [
"libc",
]
2022-08-05 14:43:02 +03:00
[[package]]
name = "js-sys"
2023-02-11 13:14:30 +03:00
version = "0.3.61"
2022-08-05 14:43:02 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
2022-08-05 14:43:02 +03:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "kqueue"
2022-11-22 13:09:19 +03:00
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98"
dependencies = [
"kqueue-sys",
"libc",
]
[[package]]
name = "kqueue-sys"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587"
dependencies = [
"bitflags",
"libc",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-12-30 11:44:29 +03:00
version = "0.2.139"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-30 11:44:29 +03:00
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
2020-03-16 15:34:01 +03:00
[[package]]
name = "libgit2-sys"
version = "0.14.2+1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f3d95f6b51075fe9810a7ae22c7095f12b98005ab364d8544797a825ce946a4"
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-10-11 12:02:27 +03:00
version = "0.2.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-11 12:02:27 +03:00
checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca"
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "libz-sys"
version = "1.1.8"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
2020-03-16 15:34:01 +03:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2022-11-22 13:09:19 +03:00
[[package]]
name = "link-cplusplus"
2022-12-20 17:15:14 +03:00
version = "1.0.8"
2022-11-22 13:09:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
2022-11-22 13:09:19 +03:00
dependencies = [
"cc",
]
2022-12-10 13:31:10 +03:00
[[package]]
name = "linux-raw-sys"
2022-12-20 17:15:14 +03:00
version = "0.1.4"
2022-12-10 13:31:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
2022-12-10 13:31:10 +03:00
2020-07-09 10:25:04 +03:00
[[package]]
name = "lock_api"
2022-11-22 13:09:19 +03:00
version = "0.4.9"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2020-07-09 10:25:04 +03:00
dependencies = [
"autocfg",
2020-07-09 10:25:04 +03:00
"scopeguard",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "log"
version = "0.4.17"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
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
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "memchr"
version = "2.5.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2020-07-04 15:59:30 +03:00
[[package]]
name = "memmap2"
2022-11-22 13:09:19 +03:00
version = "0.5.8"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "4b182332558b18d807c4ce1ca8ca983b34c3ee32765e47b3f0f69b90355cc1dc"
2020-07-04 15:59:30 +03:00
dependencies = [
"libc",
]
2020-03-22 23:08:48 +03:00
[[package]]
name = "memoffset"
2022-11-22 13:09:19 +03:00
version = "0.7.1"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
2020-03-22 23:08:48 +03:00
dependencies = [
"autocfg",
]
2022-12-10 13:31:10 +03:00
[[package]]
name = "miniz_oxide"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
dependencies = [
"adler",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "mio"
2022-11-22 13:09:19 +03:00
version = "0.8.5"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
2020-03-16 15:34:01 +03:00
dependencies = [
"libc",
"log",
2022-08-17 20:05:12 +03:00
"wasi",
2023-02-11 13:14:30 +03:00
"windows-sys 0.42.0",
2020-03-16 15:34:01 +03:00
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "nix"
2022-12-10 13:31:10 +03:00
version = "0.24.3"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-10 13:31:10 +03:00
checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
2020-07-04 15:59:30 +03:00
dependencies = [
"bitflags",
2021-02-09 00:40:58 +03:00
"cfg-if",
2020-07-04 15:59:30 +03:00
"libc",
]
[[package]]
name = "notify"
2023-01-29 13:23:54 +03:00
version = "5.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-29 13:23:54 +03:00
checksum = "58ea850aa68a06e48fdb069c0ec44d0d64c8dbffa49bf3b6f7f0a901fdea1ba9"
dependencies = [
"bitflags",
"crossbeam-channel",
"filetime",
"fsevent-sys",
"inotify",
"kqueue",
"libc",
"mio",
"walkdir",
2023-02-11 13:14:30 +03:00
"windows-sys 0.42.0",
]
[[package]]
name = "notify-debouncer-mini"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e23e9fa24f094b143c1eb61f90ac6457de87be6987bc70746e0179f7dbc9007b"
dependencies = [
"crossbeam-channel",
"notify",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "num-format"
2022-12-10 13:31:10 +03:00
version = "0.4.4"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-10 13:31:10 +03:00
checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
2020-07-04 15:59:30 +03:00
dependencies = [
2020-12-09 01:39:30 +03:00
"arrayvec",
2022-11-22 13:09:19 +03:00
"itoa",
2020-07-04 15:59:30 +03:00
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "num-integer"
version = "0.1.45"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2020-03-20 20:28:42 +03:00
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.15"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2020-03-20 20:28:42 +03:00
dependencies = [
"autocfg",
]
2020-03-22 23:08:48 +03:00
[[package]]
name = "num_cpus"
version = "1.15.0"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2020-03-22 23:08:48 +03:00
dependencies = [
"hermit-abi 0.2.6",
2020-03-22 23:08:48 +03:00
"libc",
]
[[package]]
name = "object"
2023-01-27 02:38:28 +03:00
version = "0.30.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
2021-06-06 11:24:05 +03:00
dependencies = [
"memchr",
]
2021-02-09 00:40:58 +03:00
[[package]]
name = "once_cell"
2022-12-30 11:44:29 +03:00
version = "1.17.0"
2021-02-09 00:40:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-30 11:44:29 +03:00
checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
2021-02-09 00:40:58 +03:00
Allow to build without vendored openssl, allow to build syntect with regex-onig (#1323) * allow to build syntect with regex-onig Syntect supports two regex engines: * regex-fancy: a pure-rust regex engine based on the fancy-regex * regex-onig: a regex engine based on the oniguruma C library From the syntect's Readme: > The advantage of fancy-regex is that it does not require the onig > crate which requires building and linking the Oniguruma C library. > Many users experience difficulty building the onig crate, especially > on Windows and Webassembly. > As far as our tests can tell this new engine is just as correct, but > it hasn't been tested as extensively in production. It also currently > seems to be about half the speed of the default Oniguruma engine Oniguruma engine is faster than the fancy-regex engine and the syntect project chose the latter as the default only to avoid difficulties with linking Oniguruma (C library) on some platforms. This is not an issue for linux distributions - linking against system-provided shared library is preferred to bundled libraries. Moreover, gitui built with Oniguruma instead of fancy-regex is by 25% smaller. This commit adds two cargo features, regex-fancy and regex-onig, to enable respective syntect features. The former is enabled by default. * allow to build without vendored openssl Vendoring (bundling) openssl library is very bad for security and Linux distributions forbid it. The aim of this change is to simplify packaging gitui in linux distros. Co-authored-by: extrawurst <776816+extrawurst@users.noreply.github.com>
2022-09-18 16:02:01 +03:00
[[package]]
name = "onig"
version = "6.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
dependencies = [
"bitflags",
"libc",
"once_cell",
"onig_sys",
]
[[package]]
name = "onig_sys"
version = "69.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
dependencies = [
"cc",
"pkg-config",
]
[[package]]
name = "openssl-probe"
2022-01-16 22:52:33 +03:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-16 22:52:33 +03:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
version = "111.25.0+1.1.1t"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3173cd3626c43e3854b1b727422a276e568d9ec5fe8cec197822cf52cfb743d6"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
version = "0.9.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
dependencies = [
"autocfg",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
[[package]]
name = "os_str_bytes"
2022-11-22 13:09:19 +03:00
version = "6.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
2021-05-18 01:21:05 +03:00
[[package]]
name = "output_vt100"
version = "0.1.3"
2021-05-18 01:21:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66"
2021-05-18 01:21:05 +03:00
dependencies = [
"winapi",
]
2020-07-09 10:25:04 +03:00
[[package]]
name = "parking_lot"
version = "0.12.1"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2020-07-09 10:25:04 +03:00
dependencies = [
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"
2023-02-11 13:14:30 +03:00
version = "0.9.7"
2020-07-09 10:25:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
2020-07-09 10:25:04 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
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",
2023-02-11 13:14:30 +03:00
"windows-sys 0.45.0",
2020-03-16 15:34:01 +03:00
]
[[package]]
name = "percent-encoding"
version = "2.2.0"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2020-03-16 15:34:01 +03:00
[[package]]
name = "phf"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
dependencies = [
"phf_shared",
]
[[package]]
name = "phf_shared"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
dependencies = [
"siphasher",
]
[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-03-16 15:34:01 +03:00
[[package]]
name = "pkg-config"
2022-11-22 13:09:19 +03:00
version = "0.3.26"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
2020-03-16 15:34:01 +03:00
2020-07-04 15:59:30 +03:00
[[package]]
name = "pprof"
version = "0.11.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e20150f965e0e4c925982b9356da71c84bcd56cb66ef4e894825837cbcf6613e"
2020-07-04 15:59:30 +03:00
dependencies = [
"backtrace",
2021-11-22 00:05:30 +03:00
"cfg-if",
"findshlibs",
2020-07-04 15:59:30 +03:00
"inferno",
"libc",
"log",
"nix",
"once_cell",
2020-12-08 03:31:06 +03:00
"parking_lot",
"smallvec",
2020-07-04 15:59:30 +03:00
"symbolic-demangle",
"tempfile",
"thiserror",
]
2021-05-18 01:21:05 +03:00
[[package]]
name = "pretty_assertions"
version = "1.3.0"
2021-05-18 01:21:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755"
2021-05-18 01:21:05 +03:00
dependencies = [
"ctor",
"diff",
"output_vt100",
"yansi",
2021-05-18 01:21:05 +03:00
]
[[package]]
name = "proc-macro-hack"
2022-12-20 17:15:14 +03:00
version = "0.5.20+deprecated"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
[[package]]
name = "proc-macro2"
2023-02-11 13:14:30 +03:00
version = "1.0.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
dependencies = [
"unicode-ident",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "quick-xml"
2022-12-10 13:31:10 +03:00
version = "0.26.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-10 13:31:10 +03:00
checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd"
2020-07-04 15:59:30 +03:00
dependencies = [
"memchr",
]
[[package]]
name = "quote"
2022-12-20 17:15:14 +03:00
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
dependencies = [
"proc-macro2",
]
2020-03-22 23:08:48 +03:00
[[package]]
name = "rayon-core"
version = "1.10.2"
2020-03-22 23:08:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b"
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
"num_cpus",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags",
]
2020-03-20 20:28:42 +03:00
[[package]]
name = "redox_users"
version = "0.4.3"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
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",
"thiserror",
2020-03-20 20:28:42 +03:00
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "regex"
2023-01-27 02:38:28 +03:00
version = "1.7.1"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
2021-05-23 03:45:22 +03:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2022-11-22 13:09:19 +03:00
version = "0.6.28"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
2021-05-23 03:45:22 +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"
2023-02-11 13:14:30 +03:00
version = "0.8.35"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "7495acf66551cdb696b7711408144bcd3194fc78e32f3a09e809bfe7dd4a7ce3"
2020-07-06 22:18:37 +03:00
dependencies = [
"bytemuck",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "ron"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "300a51053b1cb55c80b7a9fde4120726ddf25ca241a1cbb926626f62fb136bff"
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"
2022-12-10 13:31:10 +03:00
[[package]]
name = "rustix"
2023-02-11 13:14:30 +03:00
version = "0.36.8"
2022-12-10 13:31:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
2022-12-10 13:31:10 +03:00
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
2023-02-11 13:14:30 +03:00
"windows-sys 0.45.0",
2022-12-10 13:31:10 +03:00
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "ryu"
2022-12-20 17:15:14 +03:00
version = "1.0.12"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
2021-05-23 03:45:22 +03:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2020-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"
2023-01-06 13:06:25 +03:00
version = "0.1.2"
dependencies = [
"log",
]
2022-11-22 13:09:19 +03:00
[[package]]
name = "scratch"
2022-12-20 17:15:14 +03:00
version = "1.0.3"
2022-11-22 13:09:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
2022-11-22 13:09:19 +03:00
[[package]]
name = "serde"
version = "1.0.152"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.152"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "serde_json"
2023-02-11 13:14:30 +03:00
version = "1.0.93"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "cad406b69c91885b5107daf2c29572f6c8cdb3c66826821e286c533490c0bc76"
2021-05-23 03:45:22 +03:00
dependencies = [
2022-11-22 13:09:19 +03:00
"itoa",
2021-05-23 03:45:22 +03:00
"ryu",
"serde",
]
2020-10-25 12:50:20 +03:00
[[package]]
name = "serial_test"
version = "1.0.0"
2020-10-25 12:50:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "538c30747ae860d6fb88330addbbd3e0ddbe46d662d032855596d8a8ca260611"
2020-10-25 12:50:20 +03:00
dependencies = [
"dashmap",
"futures",
2020-10-25 12:50:20 +03:00
"lazy_static",
"log",
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 = "1.0.0"
2020-10-25 12:50:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "079a83df15f85d89a68d64ae1238f142f172b1fa915d0d76b26a7cba1b659a69"
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"
2022-01-17 17:06:54 +03:00
[[package]]
name = "shellexpand"
version = "3.0.0"
2022-01-17 17:06:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd1c7ddea665294d484c39fd0c0d2b7e35bbfe10035c5fe1854741a57f6880e1"
2022-01-17 17:06:54 +03:00
dependencies = [
"dirs",
2022-01-17 17:06:54 +03:00
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "signal-hook"
version = "0.3.14"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d"
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.3"
2021-08-03 23:56:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
2021-08-03 23:56:39 +03:00
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.12.0"
2020-03-20 20:28:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786"
2020-03-20 20:28:42 +03:00
dependencies = [
"log",
2022-08-17 20:05:12 +03:00
"time",
2020-03-20 20:28:42 +03:00
]
[[package]]
name = "siphasher"
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
[[package]]
name = "slab"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "smallvec"
2022-10-24 12:41:46 +03:00
version = "1.10.0"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-24 12:41:46 +03:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
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 = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2020-07-04 15:59:30 +03:00
[[package]]
name = "symbolic-common"
2022-12-10 13:31:10 +03:00
version = "10.2.1"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-10 13:31:10 +03:00
checksum = "1b55cdc318ede251d0957f07afe5fed912119b8c1bc5a7804151826db999e737"
2020-07-04 15:59:30 +03:00
dependencies = [
"debugid",
"memmap2",
2020-07-04 15:59:30 +03:00
"stable_deref_trait",
"uuid",
]
[[package]]
name = "symbolic-demangle"
2022-12-10 13:31:10 +03:00
version = "10.2.1"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-10 13:31:10 +03:00
checksum = "79be897be8a483a81fff6a3a4e195b4ac838ef73ca42d348b3f722da9902e489"
2020-07-04 15:59:30 +03:00
dependencies = [
"cpp_demangle",
"rustc-demangle",
"symbolic-common",
]
[[package]]
name = "syn"
2022-12-20 17:15:14 +03:00
version = "1.0.107"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2021-05-23 03:45:22 +03:00
[[package]]
name = "syntect"
version = "5.0.0"
2021-05-23 03:45:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6c454c27d9d7d9a84c7803aaa3c50cd088d2906fe3c6e42da3209aa623576a8"
2021-05-23 03:45:22 +03:00
dependencies = [
"bincode",
"bitflags",
"fancy-regex",
"flate2",
"fnv",
"lazy_static",
"once_cell",
Allow to build without vendored openssl, allow to build syntect with regex-onig (#1323) * allow to build syntect with regex-onig Syntect supports two regex engines: * regex-fancy: a pure-rust regex engine based on the fancy-regex * regex-onig: a regex engine based on the oniguruma C library From the syntect's Readme: > The advantage of fancy-regex is that it does not require the onig > crate which requires building and linking the Oniguruma C library. > Many users experience difficulty building the onig crate, especially > on Windows and Webassembly. > As far as our tests can tell this new engine is just as correct, but > it hasn't been tested as extensively in production. It also currently > seems to be about half the speed of the default Oniguruma engine Oniguruma engine is faster than the fancy-regex engine and the syntect project chose the latter as the default only to avoid difficulties with linking Oniguruma (C library) on some platforms. This is not an issue for linux distributions - linking against system-provided shared library is preferred to bundled libraries. Moreover, gitui built with Oniguruma instead of fancy-regex is by 25% smaller. This commit adds two cargo features, regex-fancy and regex-onig, to enable respective syntect features. The former is enabled by default. * allow to build without vendored openssl Vendoring (bundling) openssl library is very bad for security and Linux distributions forbid it. The aim of this change is to simplify packaging gitui in linux distros. Co-authored-by: extrawurst <776816+extrawurst@users.noreply.github.com>
2022-09-18 16:02:01 +03:00
"onig",
2021-05-23 03:45:22 +03:00
"regex-syntax",
"serde",
"serde_derive",
"serde_json",
"thiserror",
2021-05-23 03:45:22 +03:00
"walkdir",
]
[[package]]
name = "sys-info"
2021-10-23 15:29:18 +03:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-23 15:29:18 +03:00
checksum = "0b3a0d0aba8bf96a0e1ddfdc352fc53b3df7f39318c71854910c3c4b024ae52c"
dependencies = [
"cc",
"libc",
]
2020-03-24 20:02:58 +03:00
[[package]]
name = "tempfile"
2022-01-12 14:52:35 +03:00
version = "3.3.0"
2020-03-24 20:02:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-12 14:52:35 +03:00
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2020-03-24 20:02:58 +03:00
dependencies = [
2021-02-09 00:40:58 +03:00
"cfg-if",
2022-01-12 14:52:35 +03:00
"fastrand",
2020-03-24 20:02:58 +03:00
"libc",
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 = "termcolor"
2023-01-27 02:38:28 +03:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
dependencies = [
"winapi-util",
]
[[package]]
name = "textwrap"
2022-11-19 19:14:06 +03:00
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-19 19:14:06 +03:00
checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
dependencies = [
"smawk",
"unicode-linebreak",
"unicode-width",
]
[[package]]
name = "thiserror"
2022-12-20 17:15:14 +03:00
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-12-20 17:15:14 +03:00
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-09-04 11:50:03 +03:00
[[package]]
name = "thread_local"
2022-01-25 21:47:54 +03:00
version = "1.1.4"
2021-09-04 11:50:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-25 21:47:54 +03:00
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
2021-09-04 11:50:03 +03:00
dependencies = [
"once_cell",
]
[[package]]
name = "time"
2022-11-22 13:09:19 +03:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
dependencies = [
2022-11-22 13:09:19 +03:00
"itoa",
2022-10-24 12:41:46 +03:00
"serde",
"time-core",
"time-macros",
]
2022-10-24 12:41:46 +03:00
[[package]]
name = "time-core"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
[[package]]
name = "time-macros"
2022-11-22 13:09:19 +03:00
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
2022-10-24 12:41:46 +03:00
dependencies = [
"time-core",
]
2020-06-23 12:08:26 +03:00
[[package]]
name = "tinyvec"
version = "1.6.0"
2020-06-23 12:08:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2020-12-09 01:39:30 +03:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-02-11 13:14:30 +03:00
version = "0.1.1"
2020-12-09 01:39:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-06-23 12:08:26 +03:00
2020-03-16 15:34:01 +03:00
[[package]]
name = "tui"
2022-08-17 22:46:55 +03:00
version = "0.19.0"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-17 22:46:55 +03:00
checksum = "ccdd26cbd674007e649a272da4475fb666d3aa0ad0531da7136db6fab0e5bad1"
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"
2023-01-27 02:38:28 +03:00
version = "0.3.10"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58"
[[package]]
name = "unicode-ident"
2022-12-20 17:15:14 +03:00
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-20 17:15:14 +03:00
checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
2020-03-16 15:34:01 +03:00
[[package]]
name = "unicode-linebreak"
2022-10-24 12:41:46 +03:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-24 12:41:46 +03:00
checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137"
dependencies = [
2022-09-18 15:57:26 +03:00
"hashbrown",
"regex",
]
2020-03-16 15:34:01 +03:00
[[package]]
name = "unicode-normalization"
2022-09-18 15:57:26 +03:00
version = "0.1.22"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-18 15:57:26 +03:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
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"
version = "1.10.1"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
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.10"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2020-03-16 15:34:01 +03:00
[[package]]
name = "url"
version = "2.3.1"
2020-03-16 15:34:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2020-03-16 15:34:01 +03:00
dependencies = [
"form_urlencoded",
2020-03-16 15:34:01 +03:00
"idna",
"percent-encoding",
]
2020-07-04 15:59:30 +03:00
[[package]]
name = "uuid"
2023-02-11 13:14:30 +03:00
version = "1.3.0"
2020-07-04 15:59:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79"
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"
2022-01-12 14:52:35 +03:00
version = "0.9.4"
2020-12-09 01:39:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-12 14:52:35 +03:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
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",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
2020-12-09 01:39:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2020-12-09 01:39:30 +03:00
2022-08-05 14:43:02 +03:00
[[package]]
name = "wasm-bindgen"
2023-02-11 13:14:30 +03:00
version = "0.2.84"
2022-08-05 14:43:02 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
2022-08-05 14:43:02 +03:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-02-11 13:14:30 +03:00
version = "0.2.84"
2022-08-05 14:43:02 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
2022-08-05 14:43:02 +03:00
dependencies = [
"bumpalo",
"log",
"once_cell",
2022-08-05 14:43:02 +03:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2023-02-11 13:14:30 +03:00
version = "0.2.84"
2022-08-05 14:43:02 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
2022-08-05 14:43:02 +03:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-02-11 13:14:30 +03:00
version = "0.2.84"
2022-08-05 14:43:02 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
2022-08-05 14:43:02 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-02-11 13:14:30 +03:00
version = "0.2.84"
2022-08-05 14:43:02 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 13:14:30 +03:00
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
2022-08-05 14:43:02 +03:00
[[package]]
name = "which"
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
dependencies = [
"either",
"libc",
"once_cell",
]
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"
[[package]]
name = "windows-sys"
2022-11-22 13:09:19 +03:00
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-22 13:09:19 +03:00
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
2022-11-22 13:09:19 +03:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
2022-11-22 13:09:19 +03:00
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
2023-02-11 13:14:30 +03:00
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
2022-11-22 13:09:19 +03:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-01-27 02:38:28 +03:00
version = "0.42.1"
2022-11-22 13:09:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
2022-11-22 13:09:19 +03:00
[[package]]
name = "windows_aarch64_msvc"
2023-01-27 02:38:28 +03:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
[[package]]
name = "windows_i686_gnu"
2023-01-27 02:38:28 +03:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
[[package]]
name = "windows_i686_msvc"
2023-01-27 02:38:28 +03:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
[[package]]
name = "windows_x86_64_gnu"
2023-01-27 02:38:28 +03:00
version = "0.42.1"
2022-11-22 13:09:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
2022-11-22 13:09:19 +03:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-01-27 02:38:28 +03:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
[[package]]
name = "windows_x86_64_msvc"
2023-01-27 02:38:28 +03:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 02:38:28 +03:00
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"