rust-analyzer/Cargo.lock

2032 lines
45 KiB
Text
Raw Normal View History

2019-02-08 21:43:13 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2020-05-12 20:49:42 +00:00
[[package]]
name = "addr2line"
2021-01-04 16:12:42 +00:00
version = "0.14.1"
2020-05-12 20:49:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-04 16:12:42 +00:00
checksum = "a55f82cfe485775d02112886f4169bde0c5894d75e79ead7eafe7e40a25e45f7"
2020-05-12 20:49:42 +00:00
dependencies = [
"gimli",
]
2020-06-16 17:21:38 +00:00
[[package]]
2020-07-07 14:26:33 +00:00
name = "adler"
2020-07-13 12:52:07 +00:00
version = "0.2.3"
2020-06-16 17:21:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-13 12:52:07 +00:00
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e"
2020-06-16 17:21:38 +00:00
2020-06-22 11:18:10 +00:00
[[package]]
name = "ansi_term"
2020-07-10 16:30:32 +00:00
version = "0.12.1"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-10 16:30:32 +00:00
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
2020-06-22 11:18:10 +00:00
dependencies = [
"winapi 0.3.9",
2020-06-22 11:18:10 +00:00
]
[[package]]
name = "anyhow"
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afddf7f520a80dbf76e6f50a35bca42a2331ef227a28b3b6dc5c2e2338d114b1"
[[package]]
name = "anymap"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344"
2019-10-17 15:06:01 +00:00
[[package]]
name = "arrayvec"
2020-10-24 14:10:27 +00:00
version = "0.5.2"
2019-10-17 15:06:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-24 14:10:27 +00:00
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2019-10-17 15:06:01 +00:00
2020-08-13 15:33:38 +00:00
[[package]]
name = "assists"
version = "0.0.0"
dependencies = [
"either",
"hir",
"ide_db",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
2020-08-13 15:33:38 +00:00
"profile",
"rustc-hash",
"stdx",
"syntax",
"test_utils",
"text_edit",
]
2020-07-10 16:30:32 +00:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi 0.3.9",
]
2020-01-12 01:16:35 +00:00
[[package]]
name = "autocfg"
2020-08-21 17:14:44 +00:00
version = "1.0.1"
2020-01-12 01:16:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-21 17:14:44 +00:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-01-12 01:16:35 +00:00
2018-09-18 22:10:19 +00:00
[[package]]
name = "backtrace"
2020-11-24 14:13:26 +00:00
version = "0.3.55"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-24 14:13:26 +00:00
checksum = "ef5140344c85b01f9bbb4d4b7288a8aa4b3287ccef913a14bcc78a1063623598"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-05-12 20:49:42 +00:00
"addr2line",
2020-10-11 22:01:50 +00:00
"cfg-if 1.0.0",
2020-01-30 17:14:20 +00:00
"libc",
2020-06-16 17:21:38 +00:00
"miniz_oxide",
2020-12-11 12:53:22 +00:00
"object 0.22.0",
2020-01-30 17:14:20 +00:00
"rustc-demangle",
2018-09-18 22:10:19 +00:00
]
2019-12-23 14:33:49 +00:00
[[package]]
name = "base64"
2020-06-27 07:09:47 +00:00
version = "0.12.3"
2019-12-23 14:33:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-27 07:09:47 +00:00
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
2019-12-23 14:33:49 +00:00
2020-08-13 14:25:38 +00:00
[[package]]
name = "base_db"
version = "0.0.0"
dependencies = [
"cfg",
"profile",
"rustc-hash",
"salsa",
"stdx",
"syntax",
"test_utils",
"tt",
"vfs",
]
2019-01-06 14:05:12 +00:00
[[package]]
name = "bitflags"
2019-10-17 15:06:01 +00:00
version = "1.2.1"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2018-09-18 22:10:19 +00:00
2020-06-22 11:18:10 +00:00
[[package]]
name = "byteorder"
version = "1.4.2"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b"
2020-06-22 11:18:10 +00:00
[[package]]
name = "cargo-platform"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0226944a63d1bf35a3b5f948dd7c59e263db83695c9e8bffc4037de02e30f1d7"
dependencies = [
"serde",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "cargo_metadata"
version = "0.12.3"
2019-01-14 13:15:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7714a157da7991e23d90686b9524b9e12e0407a108647f52e9328f4b3d51ac7f"
2018-09-18 22:10:19 +00:00
dependencies = [
"cargo-platform",
"semver",
"semver-parser",
2020-01-30 17:14:20 +00:00
"serde",
"serde_json",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "cc"
2020-12-07 18:01:07 +00:00
version = "1.0.66"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-07 18:01:07 +00:00
checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
2018-09-18 22:10:19 +00:00
2020-08-13 08:19:09 +00:00
[[package]]
name = "cfg"
version = "0.0.0"
dependencies = [
"expect-test",
2020-08-13 08:19:09 +00:00
"mbe",
"rustc-hash",
"syntax",
"tt",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "cfg-if"
2019-09-30 19:05:46 +00:00
version = "0.1.10"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2018-09-18 22:10:19 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chalk-derive"
2021-01-04 16:12:42 +00:00
version = "0.47.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-04 16:12:42 +00:00
checksum = "3f00f6342a387edc822002d36a381e117afcac9f744951ff75fbf4a218edea5c"
dependencies = [
2020-01-30 17:14:20 +00:00
"proc-macro2",
"quote",
"syn",
2020-04-10 15:44:29 +00:00
"synstructure",
]
[[package]]
2020-07-11 17:17:03 +00:00
name = "chalk-ir"
2021-01-04 16:12:42 +00:00
version = "0.47.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-04 16:12:42 +00:00
checksum = "c686e69913591ae753e5526e73cbee39db3d9b0a92cc9078ab780cabf1c70aa9"
dependencies = [
2020-12-23 09:41:03 +00:00
"bitflags",
"chalk-derive",
2020-07-11 17:17:03 +00:00
"lazy_static",
]
[[package]]
2020-07-11 17:17:03 +00:00
name = "chalk-recursive"
2021-01-04 16:12:42 +00:00
version = "0.47.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-04 16:12:42 +00:00
checksum = "310fdcac0340dab4163b766baa8067266e3b909108d1ac1b5246c033bde63975"
dependencies = [
2020-01-30 17:14:20 +00:00
"chalk-derive",
2020-07-11 17:17:03 +00:00
"chalk-ir",
"chalk-solve",
"rustc-hash",
"tracing",
]
[[package]]
name = "chalk-solve"
2021-01-04 16:12:42 +00:00
version = "0.47.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-04 16:12:42 +00:00
checksum = "c3c3252116111c3548f1164ab8d98c67c49848b3bde10dd11b650fd023e91c72"
dependencies = [
2020-01-30 17:14:20 +00:00
"chalk-derive",
"chalk-ir",
"ena",
2020-12-30 15:39:50 +00:00
"itertools 0.9.0",
2020-01-30 17:14:20 +00:00
"petgraph",
"rustc-hash",
2020-06-22 11:18:10 +00:00
"tracing",
"tracing-subscriber",
2020-07-11 17:17:03 +00:00
"tracing-tree",
2020-06-22 11:18:10 +00:00
]
[[package]]
name = "chrono"
version = "0.4.19"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
2020-06-22 11:18:10 +00:00
dependencies = [
2020-09-27 22:14:50 +00:00
"libc",
2020-06-22 11:18:10 +00:00
"num-integer",
"num-traits",
"time",
2020-09-27 22:14:50 +00:00
"winapi 0.3.9",
]
2019-10-17 15:06:01 +00:00
[[package]]
2020-07-14 00:12:49 +00:00
name = "cmake"
2020-11-17 14:39:25 +00:00
version = "0.1.45"
2019-10-17 15:06:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-17 14:39:25 +00:00
checksum = "eb6210b637171dfba4cda12e579ac6dc73f5165ad56133e5d72ef3131f320855"
2019-10-17 15:06:01 +00:00
dependencies = [
2020-07-14 00:12:49 +00:00
"cc",
2019-08-29 13:49:10 +00:00
]
[[package]]
name = "completion"
version = "0.0.0"
dependencies = [
"base_db",
2020-09-18 20:40:11 +00:00
"either",
"expect-test",
"hir",
"ide_db",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
"log",
"profile",
"rustc-hash",
"stdx",
"syntax",
"test_utils",
"text_edit",
]
2020-10-13 13:57:01 +00:00
[[package]]
name = "const_fn"
version = "0.4.5"
2020-10-13 13:57:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28b9d6de7f49e22cf97ad17fc4036ece69300032f45f78f30b4a4482cdc3f4a6"
2020-10-13 13:57:01 +00:00
2019-06-26 06:12:46 +00:00
[[package]]
name = "crc32fast"
2020-10-24 14:10:27 +00:00
version = "1.2.1"
2019-06-26 06:12:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-24 14:10:27 +00:00
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
2019-06-26 06:12:46 +00:00
dependencies = [
2020-10-24 14:10:27 +00:00
"cfg-if 1.0.0",
2019-06-26 06:12:46 +00:00
]
[[package]]
name = "crossbeam-channel"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87"
dependencies = [
2020-10-13 13:57:01 +00:00
"crossbeam-utils 0.7.2",
"maybe-uninit",
]
2020-10-13 13:57:01 +00:00
[[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-11-30 13:44:03 +00:00
"crossbeam-utils 0.8.1",
2020-10-13 13:57:01 +00:00
]
2019-06-26 06:12:46 +00:00
[[package]]
name = "crossbeam-deque"
2020-10-24 14:10:27 +00:00
version = "0.8.0"
2019-06-26 06:12:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-24 14:10:27 +00:00
checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9"
2019-06-26 06:12:46 +00:00
dependencies = [
2020-10-24 14:10:27 +00:00
"cfg-if 1.0.0",
2020-01-30 17:14:20 +00:00
"crossbeam-epoch",
2020-11-30 13:44:03 +00:00
"crossbeam-utils 0.8.1",
2019-06-26 06:12:46 +00:00
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "crossbeam-epoch"
2020-11-30 13:44:03 +00:00
version = "0.9.1"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 13:44:03 +00:00
checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-10-24 14:10:27 +00:00
"cfg-if 1.0.0",
"const_fn",
2020-11-30 13:44:03 +00:00
"crossbeam-utils 0.8.1",
2020-01-30 17:14:20 +00:00
"lazy_static",
"memoffset 0.6.1",
2020-01-30 17:14:20 +00:00
"scopeguard",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "crossbeam-utils"
2020-02-22 16:22:09 +00:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-22 16:22:09 +00:00
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
dependencies = [
2020-02-22 16:22:09 +00:00
"autocfg",
"cfg-if 0.1.10",
2020-01-30 17:14:20 +00:00
"lazy_static",
]
2020-10-13 13:57:01 +00:00
[[package]]
name = "crossbeam-utils"
2020-11-30 13:44:03 +00:00
version = "0.8.1"
2020-10-13 13:57:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 13:44:03 +00:00
checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d"
2020-10-13 13:57:01 +00:00
dependencies = [
"autocfg",
"cfg-if 1.0.0",
"lazy_static",
]
[[package]]
name = "dissimilar"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc4b29f4b9bb94bf267d57269fd0706d343a160937108e9619fe380645428abb"
2018-09-18 22:10:19 +00:00
[[package]]
name = "drop_bomb"
2020-08-01 11:47:19 +00:00
version = "0.1.5"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-01 11:47:19 +00:00
checksum = "9bda8e21c04aca2ae33ffc2fd8c23134f3cac46db123ba97bd9d3f3b8a4a85e1"
2018-09-18 22:10:19 +00:00
[[package]]
name = "either"
version = "1.6.1"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2018-09-18 22:10:19 +00:00
2020-05-01 12:29:03 +00:00
[[package]]
name = "ena"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7402b94a93c24e742487327a7cd839dc9d36fec9de9fb25b09f2dae459f36c3"
dependencies = [
"log",
]
2019-11-30 00:20:48 +00:00
[[package]]
name = "env_logger"
2020-11-19 20:00:56 +00:00
version = "0.8.2"
2019-11-30 00:20:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 20:00:56 +00:00
checksum = "f26ecb66b4bdca6c1409b40fb255eefc2bd4f6d135dab3c3124f80ffa2a9661e"
2019-11-30 00:20:48 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"log",
2019-11-30 00:20:48 +00:00
]
[[package]]
2020-08-21 11:19:31 +00:00
name = "expect-test"
2021-01-03 13:43:29 +00:00
version = "1.1.0"
2020-08-21 11:19:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-03 13:43:29 +00:00
checksum = "2300477aab3a378f2ca00a4fbd4dc713654ab7ed790e4017493cb33656280633"
dependencies = [
2021-01-03 13:43:29 +00:00
"dissimilar",
"once_cell",
]
2019-01-06 14:05:12 +00:00
[[package]]
name = "filetime"
2020-11-11 16:17:48 +00:00
version = "0.2.13"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-11 16:17:48 +00:00
checksum = "0c122a393ea57648015bf06fbd3d372378992e86b9ff5a7a497b076a28c79efe"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-11-11 16:17:48 +00:00
"cfg-if 1.0.0",
2020-01-30 17:14:20 +00:00
"libc",
"redox_syscall",
2020-06-27 07:09:47 +00:00
"winapi 0.3.9",
2019-01-06 14:05:12 +00:00
]
[[package]]
name = "fixedbitset"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d"
[[package]]
name = "flate2"
version = "1.0.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7411863d55df97a419aa64cb4d2f167103ea9d767e2c54a1868b7ac3f6b47129"
dependencies = [
"cfg-if 1.0.0",
"crc32fast",
"libc",
"miniz_oxide",
]
2020-06-25 07:13:46 +00:00
[[package]]
name = "flycheck"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
2020-06-25 07:13:46 +00:00
dependencies = [
"cargo_metadata",
2020-10-13 13:57:01 +00:00
"crossbeam-channel 0.5.0",
2020-06-25 07:13:46 +00:00
"jod-thread",
"log",
"serde_json",
2021-01-07 17:08:34 +00:00
"stdx",
2020-08-12 14:52:28 +00:00
"toolchain",
2020-06-25 07:13:46 +00:00
]
2020-11-11 16:17:48 +00: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",
]
2019-01-06 14:05:12 +00:00
[[package]]
name = "fsevent"
2020-06-11 09:04:09 +00:00
version = "2.0.2"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 09:04:09 +00:00
checksum = "97f347202c95c98805c216f9e1df210e8ebaec9fdb2365700a43c10797a35e63"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"bitflags",
"fsevent-sys",
2019-01-06 14:05:12 +00:00
]
[[package]]
name = "fsevent-sys"
2020-06-11 09:04:09 +00:00
version = "3.0.2"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 09:04:09 +00:00
checksum = "77a29c77f1ca394c3e73a9a5d24cfcabb734682d9634fc398f2204a63c994120"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"libc",
2019-01-06 14:05:12 +00:00
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "fst"
2020-10-31 14:20:25 +00:00
version = "0.4.5"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:20:25 +00:00
checksum = "d79238883cf0307100b90aba4a755d8051a3182305dfe7f649a1e9dc0517006f"
2018-09-18 22:10:19 +00:00
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"bitflags",
"fuchsia-zircon-sys",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2018-09-18 22:10:19 +00:00
2020-05-12 20:49:42 +00:00
[[package]]
name = "gimli"
2020-10-31 14:20:25 +00:00
version = "0.23.0"
2020-05-12 20:49:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:20:25 +00:00
checksum = "f6503fe142514ca4799d4c26297c4248239fe8838d827db6bd6065c6ed29a6ce"
2020-07-19 17:09:01 +00:00
[[package]]
name = "hashbrown"
2020-09-30 13:49:40 +00:00
version = "0.9.1"
2020-07-19 17:09:01 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-30 13:49:40 +00:00
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
2020-07-19 17:09:01 +00:00
[[package]]
name = "hashbrown"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2140e9c963869f01789fa4fef4805211081ec794af5fc77c0d5b377906118853"
2018-09-18 22:10:19 +00:00
[[package]]
name = "heck"
2020-12-23 09:46:36 +00:00
version = "0.3.2"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-23 09:46:36 +00:00
checksum = "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"unicode-segmentation",
2019-10-31 14:31:59 +00:00
]
[[package]]
name = "hermit-abi"
version = "0.1.18"
2019-10-31 14:31:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
2019-10-31 14:31:59 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"libc",
2018-09-18 22:10:19 +00:00
]
2020-08-13 14:36:55 +00:00
[[package]]
name = "hir"
version = "0.0.0"
dependencies = [
"arrayvec",
"base_db",
"either",
"hir_def",
"hir_expand",
"hir_ty",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
2020-08-13 14:36:55 +00:00
"log",
"profile",
"rustc-hash",
"stdx",
"syntax",
"tt",
2020-08-13 14:36:55 +00:00
]
2020-08-13 14:28:27 +00:00
[[package]]
name = "hir_def"
version = "0.0.0"
dependencies = [
"anymap",
"base_db",
"cfg",
"drop_bomb",
"either",
2020-08-21 11:19:31 +00:00
"expect-test",
2020-08-13 14:28:27 +00:00
"fst",
"hir_expand",
"indexmap",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
"la-arena",
2020-08-13 14:28:27 +00:00
"log",
"mbe",
"once_cell",
"profile",
"rustc-hash",
"smallvec",
"stdx",
"syntax",
"test_utils",
"tt",
]
2020-08-13 14:26:29 +00:00
[[package]]
name = "hir_expand"
version = "0.0.0"
dependencies = [
"base_db",
"either",
"la-arena",
2020-08-13 14:26:29 +00:00
"log",
"mbe",
"parser",
"profile",
"rustc-hash",
"syntax",
"test_utils",
"tt",
]
2020-08-13 14:35:29 +00:00
[[package]]
name = "hir_ty"
version = "0.0.0"
dependencies = [
"arrayvec",
"base_db",
"chalk-ir",
"chalk-recursive",
"chalk-solve",
"ena",
2020-08-21 11:19:31 +00:00
"expect-test",
2020-08-13 14:35:29 +00:00
"hir_def",
"hir_expand",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
"la-arena",
2020-08-13 14:35:29 +00:00
"log",
2020-11-11 02:11:40 +00:00
"once_cell",
2020-08-13 14:35:29 +00:00
"profile",
"rustc-hash",
"scoped-tls",
"smallvec",
"stdx",
"syntax",
"test_utils",
"tracing",
"tracing-subscriber",
"tracing-tree",
]
2020-05-07 19:06:44 +00:00
[[package]]
name = "home"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2456aef2e6b6a9784192ae780c0f15bc57df0e918585282325e8c8ac27737654"
dependencies = [
2020-06-27 07:09:47 +00:00
"winapi 0.3.9",
2020-05-07 19:06:44 +00:00
]
2020-08-13 15:42:52 +00:00
[[package]]
name = "ide"
version = "0.0.0"
dependencies = [
"assists",
"cfg",
"completion",
2020-08-13 15:42:52 +00:00
"either",
2020-08-21 11:19:31 +00:00
"expect-test",
2020-08-13 15:42:52 +00:00
"hir",
"ide_db",
"indexmap",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
2020-08-13 15:42:52 +00:00
"log",
"oorandom",
"profile",
"pulldown-cmark",
"pulldown-cmark-to-cmark",
2020-08-13 15:42:52 +00:00
"rustc-hash",
"ssr",
"stdx",
"syntax",
"test_utils",
"text_edit",
"url",
2020-08-13 15:42:52 +00:00
]
2020-08-13 14:39:16 +00:00
[[package]]
name = "ide_db"
version = "0.0.0"
dependencies = [
"base_db",
"either",
2020-10-24 08:07:10 +00:00
"expect-test",
2020-08-13 14:39:16 +00:00
"fst",
"hir",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
2020-08-13 14:39:16 +00:00
"log",
"once_cell",
"profile",
"rayon",
"rustc-hash",
"stdx",
"syntax",
"test_utils",
"text_edit",
]
2019-08-17 18:34:31 +00:00
[[package]]
name = "idna"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
2019-08-17 18:34:31 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"matches",
"unicode-bidi",
"unicode-normalization",
2019-08-17 18:34:31 +00:00
]
2018-10-07 08:32:02 +00:00
[[package]]
name = "indexmap"
2020-12-19 19:04:31 +00:00
version = "1.6.1"
2018-10-07 08:32:02 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-19 19:04:31 +00:00
checksum = "4fb1fa934250de4de8aef298d81c729a7d33d8c239daa3a7575e6b92bfc7313b"
2019-10-22 17:01:26 +00:00
dependencies = [
2020-02-22 16:22:09 +00:00
"autocfg",
"hashbrown 0.9.1",
2019-10-22 17:01:26 +00:00
]
2018-10-07 08:32:02 +00:00
2019-01-06 14:05:12 +00:00
[[package]]
name = "inotify"
2020-06-11 09:04:09 +00:00
version = "0.8.3"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 09:04:09 +00:00
checksum = "46dd0a94b393c730779ccfd2a872b67b1eb67be3fc33082e733bdb38b5fde4d4"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"bitflags",
"inotify-sys",
"libc",
2019-01-06 14:05:12 +00:00
]
[[package]]
name = "inotify-sys"
version = "0.1.5"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"libc",
2019-01-06 14:05:12 +00:00
]
2020-06-27 07:09:47 +00:00
[[package]]
name = "instant"
2020-11-19 20:00:56 +00:00
version = "0.1.9"
2020-06-27 07:09:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 20:00:56 +00:00
checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec"
2020-09-27 22:14:50 +00:00
dependencies = [
2020-10-28 19:37:40 +00:00
"cfg-if 1.0.0",
2020-09-27 22:14:50 +00:00
]
2020-06-27 07:09:47 +00:00
2019-01-06 14:05:12 +00:00
[[package]]
name = "iovec"
version = "0.1.4"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"libc",
2019-01-06 14:05:12 +00:00
]
2020-03-23 23:22:46 +00:00
[[package]]
name = "itertools"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
dependencies = [
"either",
]
2020-12-30 15:39:50 +00:00
[[package]]
name = "itertools"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37d572918e350e82412fe766d24b15e6682fb2ed2bbe018280caa810397cb319"
dependencies = [
"either",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "itoa"
2020-12-30 15:39:50 +00:00
version = "0.4.7"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-30 15:39:50 +00:00
checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
2018-09-18 22:10:19 +00:00
2019-08-21 07:31:33 +00:00
[[package]]
name = "jod-thread"
2020-06-11 12:55:41 +00:00
version = "0.1.2"
2019-08-21 07:31:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 12:55:41 +00:00
checksum = "8b23360e99b8717f20aaa4598f5a6541efbe30630039fbc7706cf954a87947ae"
2019-08-21 07:31:33 +00:00
2019-01-06 14:05:12 +00:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"winapi 0.2.8",
"winapi-build",
2019-01-06 14:05:12 +00:00
]
2021-01-14 15:47:42 +00:00
[[package]]
name = "la-arena"
2021-01-17 08:41:45 +00:00
version = "0.2.0"
2021-01-14 15:47:42 +00:00
2018-09-18 22:10:19 +00:00
[[package]]
name = "lazy_static"
2019-08-30 17:23:28 +00:00
version = "1.4.0"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-09-18 22:10:19 +00:00
2019-01-06 14:05:12 +00:00
[[package]]
name = "lazycell"
2020-08-13 08:04:55 +00:00
version = "1.3.0"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-13 08:04:55 +00:00
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2019-01-06 14:05:12 +00:00
2018-09-18 22:10:19 +00:00
[[package]]
name = "libc"
version = "0.2.82"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89203f3fba0a3795506acaad8ebce3c80c0af93f994d5a1d7a0b1eeb23271929"
2018-09-18 22:10:19 +00:00
2020-04-04 08:09:36 +00:00
[[package]]
name = "libloading"
version = "0.6.7"
2020-04-04 08:09:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883"
2020-04-04 08:09:36 +00:00
dependencies = [
2020-10-24 14:10:27 +00:00
"cfg-if 1.0.0",
2020-06-27 07:09:47 +00:00
"winapi 0.3.9",
2020-04-04 08:09:36 +00:00
]
2019-01-21 22:28:57 +00:00
[[package]]
2020-07-14 00:12:49 +00:00
name = "libmimalloc-sys"
2020-10-11 22:01:50 +00:00
version = "0.1.18"
2019-01-21 22:28:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 22:01:50 +00:00
checksum = "82151ff13433c4d403cb15d0e6fbda14b24d65bd1a5b33f7d52ec983cc00752d"
2020-07-14 00:12:49 +00:00
dependencies = [
"cmake",
]
2019-01-21 22:28:57 +00:00
2019-07-14 16:21:50 +00:00
[[package]]
name = "lock_api"
2020-11-19 20:00:56 +00:00
version = "0.4.2"
2019-07-14 16:21:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 20:00:56 +00:00
checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312"
2019-07-14 16:21:50 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"scopeguard",
2019-07-14 16:21:50 +00:00
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "log"
version = "0.4.13"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcf3805d4480bb5b86070dcfeb9e2cb2ebc148adb753c5cca5f884d1d65a42b2"
2018-09-18 22:10:19 +00:00
dependencies = [
"cfg-if 0.1.10",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "lsp-server"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69b18dfe0e4a380b872aa79d8e0ee6c3d7a9682466e84b83ad807c88b3545f79"
dependencies = [
"crossbeam-channel 0.5.0",
2020-01-30 17:14:20 +00:00
"log",
"serde",
"serde_json",
]
2019-01-14 10:55:56 +00:00
[[package]]
name = "lsp-types"
2020-12-09 01:56:43 +00:00
version = "0.86.0"
2019-04-21 12:14:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-09 01:56:43 +00:00
checksum = "f2a5c40d566f2704dac30859bca152217583fc94fd5b178d8baba915e1abd382"
2019-01-14 10:55:56 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"base64",
"bitflags",
"serde",
"serde_json",
"serde_repr",
"url",
2019-01-14 10:55:56 +00:00
]
2020-06-22 11:18:10 +00:00
[[package]]
name = "matchers"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
dependencies = [
"regex-automata",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "matches"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
2018-09-18 22:10:19 +00:00
2020-02-22 16:22:09 +00:00
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
2020-08-13 08:08:11 +00:00
[[package]]
name = "mbe"
version = "0.0.0"
dependencies = [
"log",
"parser",
"rustc-hash",
"smallvec",
"syntax",
"test_utils",
"tt",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "memchr"
2020-10-31 14:20:25 +00:00
version = "2.3.4"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:20:25 +00:00
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
2018-09-18 22:10:19 +00:00
2020-04-17 07:47:15 +00:00
[[package]]
name = "memmap"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b"
dependencies = [
"libc",
2020-06-27 07:09:47 +00:00
"winapi 0.3.9",
2020-04-17 07:47:15 +00:00
]
[[package]]
name = "memoffset"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
dependencies = [
"autocfg",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "memoffset"
2020-11-30 13:44:03 +00:00
version = "0.6.1"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 13:44:03 +00:00
checksum = "157b4208e3059a8f9e78d559edc658e13df41410cb3ae03979c83130067fdd87"
dependencies = [
"autocfg",
]
2018-09-18 22:10:19 +00:00
2020-07-14 00:12:49 +00:00
[[package]]
name = "mimalloc"
2020-10-11 22:01:50 +00:00
version = "0.1.22"
2020-07-14 00:12:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-11 22:01:50 +00:00
checksum = "4a5d2c9cb18f9cdc6d88f4aca6d3d8ea89c4c8202d6facfc7e56efdee97b80fa"
2020-07-14 00:12:49 +00:00
dependencies = [
"libmimalloc-sys",
]
2020-06-16 17:21:38 +00:00
[[package]]
name = "miniz_oxide"
version = "0.4.3"
2020-06-16 17:21:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d"
2020-06-16 17:21:38 +00:00
dependencies = [
2020-07-07 14:26:33 +00:00
"adler",
2020-09-14 12:43:26 +00:00
"autocfg",
2020-06-16 17:21:38 +00:00
]
2019-01-06 14:05:12 +00:00
[[package]]
name = "mio"
2020-12-02 21:06:36 +00:00
version = "0.6.23"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-02 21:06:36 +00:00
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
2019-01-06 14:05:12 +00:00
dependencies = [
"cfg-if 0.1.10",
2020-01-30 17:14:20 +00:00
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow",
"net2",
"slab",
"winapi 0.2.8",
2019-01-06 14:05:12 +00:00
]
[[package]]
name = "mio-extras"
version = "2.0.6"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"lazycell",
"log",
"mio",
"slab",
2019-01-06 14:05:12 +00:00
]
[[package]]
name = "miow"
2020-11-30 13:44:03 +00:00
version = "0.2.2"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 13:44:03 +00:00
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
2019-01-06 14:05:12 +00:00
]
[[package]]
name = "net2"
2020-12-11 22:00:25 +00:00
version = "0.2.37"
2019-01-06 14:05:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-11 22:00:25 +00:00
checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae"
2019-01-06 14:05:12 +00:00
dependencies = [
"cfg-if 0.1.10",
2020-01-30 17:14:20 +00:00
"libc",
2020-06-27 07:09:47 +00:00
"winapi 0.3.9",
2019-01-06 14:05:12 +00:00
]
[[package]]
name = "notify"
2020-10-31 14:20:25 +00:00
version = "5.0.0-pre.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:20:25 +00:00
checksum = "a8b946889dfdad884379cd56367d93b6d0ce8889cc027d26a69a3a31c0a03bb5"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-06-11 09:04:09 +00:00
"anymap",
2020-01-30 17:14:20 +00:00
"bitflags",
2020-10-13 13:57:01 +00:00
"crossbeam-channel 0.4.4",
2020-01-30 17:14:20 +00:00
"filetime",
"fsevent",
"fsevent-sys",
"inotify",
"libc",
"mio",
"mio-extras",
"walkdir",
2020-06-27 07:09:47 +00:00
"winapi 0.3.9",
2019-01-06 14:05:12 +00:00
]
2020-06-22 11:18:10 +00:00
[[package]]
name = "num-integer"
2020-10-31 14:20:25 +00:00
version = "0.1.44"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:20:25 +00:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
2020-06-22 11:18:10 +00:00
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
2020-10-31 14:20:25 +00:00
version = "0.2.14"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:20:25 +00:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2020-06-22 11:18:10 +00:00
dependencies = [
"autocfg",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "num_cpus"
2020-04-16 13:13:44 +00:00
version = "1.13.0"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-16 13:13:44 +00:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"hermit-abi",
"libc",
2018-09-18 22:10:19 +00:00
]
2020-05-12 20:49:42 +00:00
[[package]]
name = "object"
2020-10-31 14:20:25 +00:00
version = "0.22.0"
2020-05-12 20:49:42 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-31 14:20:25 +00:00
checksum = "8d3b63360ec3cb337817c2dbd47ab4a0f170d285d8e5a2064600f3def1402397"
2020-05-12 20:49:42 +00:00
2020-12-11 12:53:22 +00:00
[[package]]
name = "object"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9a7ab5d64814df0fe4a4b5ead45ed6c5f181ee3ff04ba344313a6c80446c5d4"
2019-05-07 17:54:33 +00:00
[[package]]
name = "once_cell"
2020-11-17 14:39:25 +00:00
version = "1.5.2"
2019-05-07 17:54:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-17 14:39:25 +00:00
checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
2019-05-07 17:54:33 +00:00
2020-07-29 17:49:10 +00:00
[[package]]
name = "oorandom"
2020-11-24 14:13:26 +00:00
version = "11.1.3"
2020-07-29 17:49:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-24 14:13:26 +00:00
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
2020-07-29 17:49:10 +00:00
2019-11-26 08:29:20 +00:00
[[package]]
name = "parking_lot"
2020-11-19 20:00:56 +00:00
version = "0.11.1"
2019-11-26 08:29:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 20:00:56 +00:00
checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb"
2019-11-26 08:29:20 +00:00
dependencies = [
2020-06-27 07:09:47 +00:00
"instant",
2020-01-30 17:14:20 +00:00
"lock_api",
"parking_lot_core",
2019-11-26 08:29:20 +00:00
]
[[package]]
name = "parking_lot_core"
2020-12-23 09:46:36 +00:00
version = "0.8.2"
2019-11-26 08:29:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-23 09:46:36 +00:00
checksum = "9ccb628cad4f84851442432c60ad8e1f607e29752d0bf072cbd0baf28aa34272"
2019-11-26 08:29:20 +00:00
dependencies = [
2020-12-07 18:01:07 +00:00
"cfg-if 1.0.0",
2020-06-27 07:09:47 +00:00
"instant",
2020-01-30 17:14:20 +00:00
"libc",
"redox_syscall",
"smallvec",
2020-06-27 07:09:47 +00:00
"winapi 0.3.9",
2019-11-26 08:29:20 +00:00
]
2020-08-12 15:06:49 +00:00
[[package]]
name = "parser"
version = "0.0.0"
dependencies = [
"drop_bomb",
]
2019-07-17 14:58:17 +00:00
[[package]]
name = "paths"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
2019-08-17 18:34:31 +00:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
2019-07-17 14:58:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2019-07-17 14:58:17 +00:00
[[package]]
name = "perf-event"
2020-12-19 19:04:31 +00:00
version = "0.4.6"
2019-07-17 14:58:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-19 19:04:31 +00:00
checksum = "b7a1c2678a77d65edf773bd900f5b87f0944ac3421949842a2c6a4efe42d6c66"
2019-07-17 14:58:17 +00:00
dependencies = [
"libc",
"perf-event-open-sys",
2019-07-17 14:58:17 +00:00
]
[[package]]
name = "perf-event-open-sys"
2020-08-27 16:55:42 +00:00
version = "1.0.1"
2019-08-17 18:34:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-27 16:55:42 +00:00
checksum = "ce9bedf5da2c234fdf2391ede2b90fabf585355f33100689bc364a3ea558561a"
dependencies = [
"libc",
]
2019-08-17 18:34:31 +00:00
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
[[package]]
name = "petgraph"
2020-05-24 13:42:11 +00:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-24 13:42:11 +00:00
checksum = "467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7"
dependencies = [
2020-01-30 17:14:20 +00:00
"fixedbitset",
"indexmap",
]
2019-09-10 10:31:40 +00:00
[[package]]
name = "pico-args"
2020-08-10 14:56:16 +00:00
version = "0.3.4"
2019-09-10 10:31:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-10 14:56:16 +00:00
checksum = "28b9b4df73455c861d7cbf8be42f01d3b373ed7f02e378d55fa84eafc6f638b1"
2019-09-10 10:31:40 +00:00
2020-09-30 13:49:40 +00:00
[[package]]
name = "pin-project-lite"
version = "0.2.4"
2020-09-30 13:49:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439697af366c49a6d0a010c56a0d97685bc140ce0d377b13a2ea2aa42d64a827"
2020-09-30 13:49:40 +00:00
2019-08-15 12:58:08 +00:00
[[package]]
name = "proc-macro2"
version = "1.0.24"
2019-08-15 12:58:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
2019-08-15 12:58:08 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"unicode-xid",
2019-08-15 12:58:08 +00:00
]
2020-06-15 02:47:33 +00:00
[[package]]
2020-08-13 10:07:28 +00:00
name = "proc_macro_api"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
2020-03-18 09:47:59 +00:00
dependencies = [
"base_db",
2020-10-13 13:57:01 +00:00
"crossbeam-channel 0.5.0",
2020-03-28 12:52:45 +00:00
"jod-thread",
2020-03-26 20:26:34 +00:00
"log",
"serde",
"serde_json",
2020-08-13 10:07:28 +00:00
"tt",
2020-03-18 09:47:59 +00:00
]
2020-04-01 05:11:26 +00:00
[[package]]
2020-08-13 08:04:37 +00:00
name = "proc_macro_srv"
version = "0.0.0"
2020-04-01 05:11:26 +00:00
dependencies = [
"cargo_metadata",
2020-04-04 08:09:36 +00:00
"libloading",
2020-08-13 08:08:11 +00:00
"mbe",
2020-04-17 07:47:15 +00:00
"memmap",
2020-12-11 12:53:22 +00:00
"object 0.23.0",
2020-08-13 10:07:28 +00:00
"proc_macro_api",
"proc_macro_test",
2020-04-01 05:11:26 +00:00
"serde_derive",
2020-04-09 17:43:47 +00:00
"test_utils",
2020-08-13 08:04:37 +00:00
"toolchain",
"tt",
2020-04-01 05:11:26 +00:00
]
2019-03-27 15:09:51 +00:00
[[package]]
name = "proc_macro_test"
version = "0.0.0"
2020-08-12 14:32:36 +00:00
[[package]]
name = "profile"
version = "0.0.0"
2019-03-27 15:09:51 +00:00
dependencies = [
"cfg-if 1.0.0",
"la-arena",
"libc",
2020-01-30 17:14:20 +00:00
"once_cell",
"perf-event",
2019-03-27 15:09:51 +00:00
]
[[package]]
name = "project_model"
version = "0.0.0"
dependencies = [
"anyhow",
2020-08-13 14:25:38 +00:00
"base_db",
2020-01-30 17:14:20 +00:00
"cargo_metadata",
"cfg",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
"la-arena",
2020-01-30 17:14:20 +00:00
"log",
"paths",
2020-08-13 10:07:28 +00:00
"proc_macro_api",
2021-01-18 10:25:57 +00:00
"profile",
2020-01-30 17:14:20 +00:00
"rustc-hash",
"serde",
"serde_json",
2020-06-24 13:52:07 +00:00
"stdx",
"toolchain",
]
[[package]]
name = "pulldown-cmark"
2020-10-13 17:31:23 +00:00
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-13 17:31:23 +00:00
checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8"
dependencies = [
"bitflags",
"memchr",
"unicase",
]
2020-05-08 10:25:36 +00:00
[[package]]
name = "pulldown-cmark-to-cmark"
2020-10-13 17:31:23 +00:00
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-13 17:31:23 +00:00
checksum = "e8f2b9878102358ec65434fdd1a9a161f8648bb2f531acc9260e4d094c96de23"
2020-05-08 10:25:36 +00:00
dependencies = [
"pulldown-cmark",
2020-05-08 10:25:36 +00:00
]
2019-01-31 18:09:43 +00:00
[[package]]
2019-08-15 12:58:08 +00:00
name = "quote"
2020-12-20 22:26:44 +00:00
version = "1.0.8"
2019-08-15 12:58:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-20 22:26:44 +00:00
checksum = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df"
2019-01-31 18:09:43 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"proc-macro2",
2019-01-31 18:09:43 +00:00
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "rayon"
2020-10-24 14:10:27 +00:00
version = "1.5.0"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-24 14:10:27 +00:00
checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-06-16 17:21:38 +00:00
"autocfg",
2020-01-30 17:14:20 +00:00
"crossbeam-deque",
"either",
"rayon-core",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "rayon-core"
2020-10-24 14:10:27 +00:00
version = "1.9.0"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-24 14:10:27 +00:00
checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-10-24 14:10:27 +00:00
"crossbeam-channel 0.5.0",
2020-01-30 17:14:20 +00:00
"crossbeam-deque",
2020-11-30 13:44:03 +00:00
"crossbeam-utils 0.8.1",
2020-01-30 17:14:20 +00:00
"lazy_static",
"num_cpus",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "redox_syscall"
2020-07-10 21:14:24 +00:00
version = "0.1.57"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-10 21:14:24 +00:00
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
2018-09-18 22:10:19 +00:00
[[package]]
name = "regex"
version = "1.4.3"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9251239e129e16308e70d853559389de218ac275b515068abc96829d05b948a"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"regex-syntax",
2018-09-18 22:10:19 +00:00
]
2020-06-22 11:18:10 +00:00
[[package]]
name = "regex-automata"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
dependencies = [
"byteorder",
"regex-syntax",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "regex-syntax"
version = "0.6.22"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581"
2018-09-18 22:10:19 +00:00
2018-10-02 14:07:12 +00:00
[[package]]
name = "rowan"
2021-01-17 17:56:37 +00:00
version = "0.10.5"
2020-04-25 09:52:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-17 17:56:37 +00:00
checksum = "e1898adeafc7d3c69913b33ee1acbbb39c726a9dbe05ff77c08b52957643e8db"
2018-10-02 14:07:12 +00:00
dependencies = [
"hashbrown 0.10.0",
2020-01-30 17:14:20 +00:00
"rustc-hash",
"smol_str",
2020-04-24 21:40:41 +00:00
"text-size",
"triomphe",
2018-10-02 14:07:12 +00:00
]
2020-02-18 11:33:16 +00:00
[[package]]
name = "rust-analyzer"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
2020-02-18 11:33:16 +00:00
dependencies = [
"anyhow",
2020-08-13 08:19:09 +00:00
"cfg",
"crossbeam-channel 0.5.0",
"dissimilar",
2020-02-18 11:33:16 +00:00
"env_logger",
2020-08-21 11:19:31 +00:00
"expect-test",
2020-06-25 07:13:46 +00:00
"flycheck",
2020-08-13 14:36:55 +00:00
"hir",
2020-08-13 14:28:27 +00:00
"hir_def",
2020-08-13 14:35:29 +00:00
"hir_ty",
2020-08-13 15:42:52 +00:00
"ide",
2020-08-13 14:39:16 +00:00
"ide_db",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
2020-02-18 11:33:16 +00:00
"jod-thread",
"log",
"lsp-server",
"lsp-types",
2020-08-13 08:08:11 +00:00
"mbe",
"mimalloc",
2020-07-29 17:49:10 +00:00
"oorandom",
2020-02-18 11:33:16 +00:00
"parking_lot",
"pico-args",
2020-08-13 08:04:37 +00:00
"proc_macro_srv",
2020-08-12 14:32:36 +00:00
"profile",
"project_model",
"rayon",
2020-02-18 11:33:16 +00:00
"rustc-hash",
"serde",
"serde_json",
"serde_path_to_error",
2020-08-13 14:45:10 +00:00
"ssr",
2020-03-28 10:08:19 +00:00
"stdx",
2020-08-12 16:26:51 +00:00
"syntax",
2020-02-18 11:33:16 +00:00
"test_utils",
2020-08-12 15:03:06 +00:00
"text_edit",
2020-02-18 11:33:16 +00:00
"threadpool",
2020-08-12 14:52:28 +00:00
"toolchain",
"tracing",
"tracing-subscriber",
"tracing-tree",
2020-08-12 14:46:20 +00:00
"tt",
2020-06-11 09:04:09 +00:00
"vfs",
"vfs-notify",
2020-06-27 07:09:47 +00:00
"winapi 0.3.9",
2020-02-18 11:33:16 +00:00
]
[[package]]
name = "rustc-ap-rustc_lexer"
2021-01-04 16:12:42 +00:00
version = "697.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-04 16:12:42 +00:00
checksum = "67adbe260a0a11910624d6d28c0304fcf7b063e666682111005c83b09f73429d"
dependencies = [
"unicode-xid",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "rustc-demangle"
2020-10-24 14:10:27 +00:00
version = "0.1.18"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-24 14:10:27 +00:00
checksum = "6e3bad0ee36814ca07d7968269dd4b7ec89ec2da10c4bb613928d3077083c232"
2018-09-18 22:10:19 +00:00
[[package]]
name = "rustc-hash"
2020-02-10 15:42:56 +00:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-10 15:42:56 +00:00
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2018-09-18 22:10:19 +00:00
[[package]]
name = "ryu"
2020-06-03 13:43:27 +00:00
version = "1.0.5"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-03 13:43:27 +00:00
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2018-09-18 22:10:19 +00:00
2018-10-07 08:32:02 +00:00
[[package]]
name = "salsa"
2020-10-14 10:37:59 +00:00
version = "0.16.0"
2019-08-15 12:18:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-14 10:37:59 +00:00
checksum = "d8fadca2ab5de17acf66d744f4888049ca8f1bb9b8a1ab8afd9d032cc959c5dc"
2018-10-07 08:32:02 +00:00
dependencies = [
2020-11-30 13:44:03 +00:00
"crossbeam-utils 0.8.1",
2020-01-30 17:14:20 +00:00
"indexmap",
2020-07-03 14:41:58 +00:00
"lock_api",
2020-01-30 17:14:20 +00:00
"log",
2020-07-29 17:49:10 +00:00
"oorandom",
2020-01-30 17:14:20 +00:00
"parking_lot",
"rustc-hash",
"salsa-macros",
"smallvec",
2018-09-18 22:10:19 +00:00
]
2019-01-17 11:11:00 +00:00
[[package]]
name = "salsa-macros"
2020-10-14 10:37:59 +00:00
version = "0.16.0"
2019-08-15 12:18:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-14 10:37:59 +00:00
checksum = "cd3904a4ba0a9d0211816177fd34b04c7095443f8cdacd11175064fe541c8fe2"
2019-01-17 11:11:00 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"heck",
"proc-macro2",
"quote",
"syn",
2019-01-17 11:11:00 +00:00
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "same-file"
2020-01-12 01:16:35 +00:00
version = "1.0.6"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"winapi-util",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2019-05-04 20:40:40 +00:00
[[package]]
name = "scopeguard"
2020-02-17 14:19:55 +00:00
version = "1.1.0"
2019-05-04 20:40:40 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-02-17 14:19:55 +00:00
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-05-04 20:40:40 +00:00
2018-09-18 22:10:19 +00:00
[[package]]
name = "semver"
version = "0.11.0"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
2018-09-18 22:10:19 +00:00
dependencies = [
"semver-parser",
2020-01-30 17:14:20 +00:00
"serde",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "semver-parser"
2021-01-08 14:37:28 +00:00
version = "0.10.2"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-08 14:37:28 +00:00
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
dependencies = [
"pest",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "serde"
version = "1.0.119"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bdd36f49e35b61d49efd8aa7fc068fd295961fd2286d0b2ee9a4c7a14e99cc3"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"serde_derive",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "serde_derive"
version = "1.0.119"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "552954ce79a059ddd5fd68c271592374bd15cab2274970380c000118aeffe1cd"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"proc-macro2",
"quote",
"syn",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "serde_json"
2020-12-30 15:39:50 +00:00
version = "1.0.61"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-30 15:39:50 +00:00
checksum = "4fceb2595057b6891a4ee808f70054bd2d12f0e97f1cbb78689b59f676df325a"
2018-09-18 22:10:19 +00:00
dependencies = [
"indexmap",
2020-01-30 17:14:20 +00:00
"itoa",
"ryu",
"serde",
2019-01-21 22:28:57 +00:00
]
2019-08-17 18:34:31 +00:00
[[package]]
name = "serde_path_to_error"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42f6109f0506e20f7e0f910e51a0079acf41da8e0694e6442527c4ddf5a2b158"
dependencies = [
"serde",
]
[[package]]
2019-08-17 18:34:31 +00:00
name = "serde_repr"
2020-06-21 15:53:52 +00:00
version = "0.1.6"
2019-08-17 18:34:31 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-21 15:53:52 +00:00
checksum = "2dc6b7951b17b051f3210b063f12cc17320e2fe30ae05b0fe2a3abb068551c76"
2019-08-17 18:34:31 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"proc-macro2",
"quote",
"syn",
2019-08-17 18:34:31 +00:00
]
2020-06-22 11:18:10 +00:00
[[package]]
name = "sharded-slab"
version = "0.1.1"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79c719719ee05df97490f80a45acfc99e5a30ce98a1e4fb67aee422745ae14e3"
2020-06-22 11:18:10 +00:00
dependencies = [
"lazy_static",
]
2019-01-06 14:05:12 +00:00
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
2019-01-06 14:05:12 +00:00
2019-11-15 11:45:58 +00:00
[[package]]
name = "smallvec"
version = "1.6.1"
2019-11-15 11:45:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
2019-11-15 11:45:58 +00:00
2018-09-18 22:10:19 +00:00
[[package]]
name = "smol_str"
2020-09-23 06:45:35 +00:00
version = "0.1.17"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-23 06:45:35 +00:00
checksum = "6ca0f7ce3a29234210f0f4f0b56f8be2e722488b95cb522077943212da3b32eb"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"serde",
2018-09-18 22:10:19 +00:00
]
2020-08-13 14:45:10 +00:00
[[package]]
name = "ssr"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
2020-08-13 14:45:10 +00:00
dependencies = [
2020-08-21 11:19:31 +00:00
"expect-test",
2020-08-13 14:45:10 +00:00
"hir",
"ide_db",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
2020-08-13 14:45:10 +00:00
"rustc-hash",
"syntax",
"test_utils",
"text_edit",
]
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
[[package]]
name = "stdx"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
dependencies = [
"backtrace",
]
2019-08-15 12:58:08 +00:00
[[package]]
name = "syn"
version = "1.0.58"
2019-08-15 12:58:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc60a3d73ea6594cd712d830cc1f0390fd71542d8c8cd24e70cc54cdfd5e05d5"
2019-08-15 12:58:08 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"proc-macro2",
"quote",
"unicode-xid",
2019-08-15 12:58:08 +00:00
]
2020-04-10 15:44:29 +00:00
[[package]]
name = "synstructure"
2020-06-11 12:55:41 +00:00
version = "0.12.4"
2020-04-10 15:44:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 12:55:41 +00:00
checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
2020-04-10 15:44:29 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"unicode-xid",
]
2020-08-12 16:26:51 +00:00
[[package]]
name = "syntax"
version = "0.0.0"
dependencies = [
"arrayvec",
2020-08-21 11:19:31 +00:00
"expect-test",
"indexmap",
2020-12-30 15:39:50 +00:00
"itertools 0.10.0",
2020-08-12 16:26:51 +00:00
"once_cell",
"parser",
2020-11-27 16:00:03 +00:00
"profile",
2020-08-12 16:26:51 +00:00
"rayon",
"rowan",
"rustc-ap-rustc_lexer",
"rustc-hash",
"serde",
"smol_str",
"stdx",
"test_utils",
"text_edit",
"walkdir",
]
2018-12-18 13:38:05 +00:00
[[package]]
2020-07-10 16:30:32 +00:00
name = "termcolor"
2020-11-19 20:00:56 +00:00
version = "1.1.2"
2019-01-14 13:27:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 20:00:56 +00:00
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
2019-01-14 13:27:08 +00:00
dependencies = [
2020-07-10 16:30:32 +00:00
"winapi-util",
2019-01-14 13:27:08 +00:00
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "test_utils"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
2018-09-18 22:10:19 +00:00
dependencies = [
"dissimilar",
2020-05-24 13:42:11 +00:00
"rustc-hash",
2020-01-30 17:14:20 +00:00
"serde_json",
"stdx",
2020-04-24 21:40:41 +00:00
"text-size",
2018-09-18 22:10:19 +00:00
]
[[package]]
2020-04-24 21:40:41 +00:00
name = "text-size"
2021-01-13 17:10:46 +00:00
version = "1.1.0"
2020-04-25 09:52:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-13 17:10:46 +00:00
checksum = "288cb548dbe72b652243ea797201f3d481a0609a967980fcc5b2315ea811560a"
2018-09-18 22:10:19 +00:00
2020-08-12 15:03:06 +00:00
[[package]]
name = "text_edit"
version = "0.0.0"
dependencies = [
"text-size",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "thread_local"
version = "1.1.0"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb9bc092d0d51e76b2b19d9d85534ffc9ec2db959a2523cdae0697e2972cd447"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"lazy_static",
2018-12-18 09:45:20 +00:00
]
[[package]]
name = "threadpool"
2020-05-12 20:49:42 +00:00
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-12 20:49:42 +00:00
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
dependencies = [
2020-01-30 17:14:20 +00:00
"num_cpus",
]
2020-06-22 11:18:10 +00:00
[[package]]
name = "time"
2020-08-27 16:55:42 +00:00
version = "0.1.44"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-27 16:55:42 +00:00
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2020-06-22 11:18:10 +00:00
dependencies = [
"libc",
2020-08-27 16:55:42 +00:00
"wasi",
"winapi 0.3.9",
2020-06-22 11:18:10 +00:00
]
2020-06-21 15:53:52 +00:00
[[package]]
name = "tinyvec"
2020-11-24 14:13:26 +00:00
version = "1.1.0"
2020-06-21 15:53:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-24 14:13:26 +00:00
checksum = "ccf8dbc19eb42fba10e8feaaec282fb50e2c14b2726d6301dbfeed0f73306a6f"
2020-11-17 14:39:25 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
2020-06-21 15:53:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-17 14:39:25 +00:00
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
2020-06-21 15:53:52 +00:00
2020-08-12 14:52:28 +00:00
[[package]]
name = "toolchain"
version = "0.0.0"
dependencies = [
"home",
]
2020-06-21 15:53:52 +00:00
2020-06-22 11:18:10 +00:00
[[package]]
name = "tracing"
2020-11-24 14:13:26 +00:00
version = "0.1.22"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-24 14:13:26 +00:00
checksum = "9f47026cdc4080c07e49b37087de021820269d996f581aac150ef9e5583eefe3"
2020-06-22 11:18:10 +00:00
dependencies = [
2020-11-24 14:13:26 +00:00
"cfg-if 1.0.0",
2020-09-30 13:49:40 +00:00
"pin-project-lite",
2020-06-22 11:18:10 +00:00
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2020-08-18 21:52:29 +00:00
version = "0.1.11"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-18 21:52:29 +00:00
checksum = "80e0ccfc3378da0cce270c946b676a376943f5cd16aeba64568e7939806f4ada"
2020-06-22 11:18:10 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2020-09-30 13:49:40 +00:00
version = "0.1.17"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-30 13:49:40 +00:00
checksum = "f50de3927f93d202783f4513cda820ab47ef17f624b03c096e86ef00c67e6b5f"
2020-06-22 11:18:10 +00:00
dependencies = [
"lazy_static",
]
[[package]]
name = "tracing-log"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e0f8c7178e13481ff6765bd169b33e8d554c5d2bbede5e32c356194be02b9b9"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-serde"
2020-09-14 12:43:26 +00:00
version = "0.1.2"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-14 12:43:26 +00:00
checksum = "fb65ea441fbb84f9f6748fd496cf7f63ec9af5bca94dd86456978d055e8eb28b"
2020-06-22 11:18:10 +00:00
dependencies = [
"serde",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2020-11-05 03:01:19 +00:00
version = "0.2.15"
2020-06-22 11:18:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-05 03:01:19 +00:00
checksum = "a1fa8f0c8f4c594e4fc9debc1990deab13238077271ba84dd853d54902ee3401"
2020-06-22 11:18:10 +00:00
dependencies = [
"ansi_term",
"chrono",
"lazy_static",
"matchers",
"regex",
"serde",
"serde_json",
"sharded-slab",
"smallvec",
2020-08-13 08:04:55 +00:00
"thread_local",
"tracing",
2020-06-22 11:18:10 +00:00
"tracing-core",
"tracing-log",
"tracing-serde",
]
2020-07-10 16:30:32 +00:00
[[package]]
name = "tracing-tree"
version = "0.1.7"
2020-07-10 16:30:32 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "023e80cdb7c8468b7aade1d756afa2acbe2ae0a6142a25ec664b5239d6ef2794"
2020-07-10 16:30:32 +00:00
dependencies = [
2020-07-19 17:09:01 +00:00
"ansi_term",
2020-07-10 16:30:32 +00:00
"atty",
"chrono",
"termcolor",
"tracing",
"tracing-log",
2020-07-10 16:30:32 +00:00
"tracing-subscriber",
]
[[package]]
name = "triomphe"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e9d872053cf9e5a833d8c1dd772cdc38ab66a908129d6f73c049c986161d07c"
dependencies = [
"memoffset 0.5.6",
"serde",
"stable_deref_trait",
]
2020-08-12 14:46:20 +00:00
[[package]]
name = "tt"
version = "0.0.0"
dependencies = [
"smol_str",
"stdx",
]
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
[[package]]
name = "ungrammar"
2021-01-18 15:58:43 +00:00
version = "1.9.2"
2020-12-23 10:22:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-18 15:58:43 +00:00
checksum = "58a02e2041a872d56354e843e8e86e6b946fc8e7dc32982fcdc335e29eb4cc8b"
2020-06-09 03:43:57 +00:00
[[package]]
2020-06-15 02:47:33 +00:00
name = "unicase"
version = "2.6.0"
2020-06-09 03:43:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 02:47:33 +00:00
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
2020-06-09 03:43:57 +00:00
dependencies = [
2020-06-15 02:47:33 +00:00
"version_check",
2020-06-09 03:43:57 +00:00
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "unicode-bidi"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"matches",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "unicode-normalization"
2020-11-19 20:00:56 +00:00
version = "0.1.16"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-19 20:00:56 +00:00
checksum = "a13e63ab62dbe32aeee58d1c5408d35c36c392bba5d9d3142287219721afe606"
2019-01-23 11:48:57 +00:00
dependencies = [
2020-06-21 15:53:52 +00:00
"tinyvec",
2019-01-23 11:48:57 +00:00
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "unicode-segmentation"
2020-11-30 13:44:03 +00:00
version = "1.7.1"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-30 13:44:03 +00:00
checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796"
2018-09-18 22:10:19 +00:00
2019-08-15 12:58:08 +00:00
[[package]]
name = "unicode-xid"
2020-06-27 07:09:47 +00:00
version = "0.2.1"
2019-08-15 12:58:08 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-27 07:09:47 +00:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2019-08-15 12:58:08 +00:00
2018-09-18 22:10:19 +00:00
[[package]]
2019-08-17 18:34:31 +00:00
name = "url"
2020-11-11 16:17:48 +00:00
version = "2.2.0"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-11 16:17:48 +00:00
checksum = "5909f2b0817350449ed73e8bcd81c8c3c8d9a7a5d8acba4b27db277f1868976e"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-11-11 16:17:48 +00:00
"form_urlencoded",
2020-01-30 17:14:20 +00:00
"idna",
"matches",
"percent-encoding",
"serde",
2018-09-18 22:10:19 +00:00
]
2020-06-09 03:43:57 +00:00
[[package]]
2020-06-15 02:47:33 +00:00
name = "version_check"
version = "0.9.2"
2020-06-09 03:43:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 02:47:33 +00:00
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
2020-06-09 03:43:57 +00:00
2020-06-15 11:29:07 +00:00
[[package]]
name = "vfs"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
2020-06-11 09:04:09 +00:00
dependencies = [
2020-07-07 20:53:12 +00:00
"fst",
2020-06-11 09:04:09 +00:00
"paths",
"rustc-hash",
]
[[package]]
name = "vfs-notify"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
2020-06-15 11:29:07 +00:00
dependencies = [
2020-10-13 13:57:01 +00:00
"crossbeam-channel 0.5.0",
2020-06-15 11:29:07 +00:00
"jod-thread",
2020-06-11 09:04:09 +00:00
"log",
"notify",
2020-06-15 11:29:07 +00:00
"paths",
"rustc-hash",
2020-06-11 09:04:09 +00:00
"vfs",
2020-06-15 11:29:07 +00:00
"walkdir",
]
2018-09-18 22:10:19 +00:00
[[package]]
name = "walkdir"
2020-01-12 01:16:35 +00:00
version = "2.3.1"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"same-file",
2020-06-27 07:09:47 +00:00
"winapi 0.3.9",
2020-01-30 17:14:20 +00:00
"winapi-util",
2018-09-18 22:10:19 +00:00
]
2020-08-27 16:55:42 +00:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2019-01-06 14:05:12 +00:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2019-01-06 14:05:12 +00:00
2018-09-18 22:10:19 +00:00
[[package]]
name = "winapi"
2020-06-27 07:09:47 +00:00
version = "0.3.9"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-27 07:09:47 +00:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-09-18 22:10:19 +00:00
]
2019-01-06 14:05:12 +00:00
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2019-01-06 14:05:12 +00:00
2018-09-18 22:10:19 +00:00
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-09-18 22:10:19 +00:00
[[package]]
name = "winapi-util"
2020-04-22 14:34:53 +00:00
version = "0.1.5"
2018-09-18 22:10:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-22 14:34:53 +00:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2018-09-18 22:10:19 +00:00
dependencies = [
2020-06-27 07:09:47 +00:00
"winapi 0.3.9",
2018-09-18 22:10:19 +00:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2018-09-18 22:10:19 +00:00
2020-08-01 02:09:52 +00:00
[[package]]
name = "write-json"
2020-08-01 11:47:19 +00:00
version = "0.1.2"
2020-08-01 02:09:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-01 11:47:19 +00:00
checksum = "06069a848f95fceae3e5e03c0ddc8cb78452b56654ee0c8e68f938cf790fb9e3"
2020-08-01 02:09:52 +00:00
2019-01-06 14:05:12 +00:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-30 17:14:20 +00:00
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
2019-01-06 14:05:12 +00:00
dependencies = [
2020-01-30 17:14:20 +00:00
"winapi 0.2.8",
"winapi-build",
2019-01-06 14:05:12 +00:00
]
2020-10-16 17:46:03 +00:00
[[package]]
name = "xshell"
2020-12-19 19:04:31 +00:00
version = "0.1.8"
2020-10-16 17:46:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-19 19:04:31 +00:00
checksum = "ed373ede30cea03e8c0af22f48ee1ba80efbf06fec8b4746977e6ee703878de0"
2020-10-16 17:46:03 +00:00
dependencies = [
"xshell-macros",
]
[[package]]
name = "xshell-macros"
2020-12-19 19:04:31 +00:00
version = "0.1.8"
2020-10-16 17:46:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-19 19:04:31 +00:00
checksum = "7f6af9f8119104697b0105989a73c578ce33f922d9d6f3dae0e8ae3d538db321"
2020-10-16 17:46:03 +00:00
2019-10-17 16:36:55 +00:00
[[package]]
name = "xtask"
version = "0.1.0"
dependencies = [
2020-01-30 17:14:20 +00:00
"anyhow",
"flate2",
2020-01-30 17:14:20 +00:00
"pico-args",
"proc-macro2",
"quote",
"ungrammar",
2020-01-30 17:14:20 +00:00
"walkdir",
2020-08-01 02:09:52 +00:00
"write-json",
2020-10-16 17:46:03 +00:00
"xshell",
2019-10-17 16:36:55 +00:00
]