aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock28
1 files changed, 20 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 54ad92bb1..739edb932 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1125,12 +1125,6 @@ dependencies = [
1125] 1125]
1126 1126
1127[[package]] 1127[[package]]
1128name = "pico-args"
1129version = "0.4.0"
1130source = "registry+https://github.com/rust-lang/crates.io-index"
1131checksum = "d70072c20945e1ab871c472a285fc772aefd4f5407723c206242f2c6f94595d6"
1132
1133[[package]]
1134name = "pin-project-lite" 1128name = "pin-project-lite"
1135version = "0.2.5" 1129version = "0.2.5"
1136source = "registry+https://github.com/rust-lang/crates.io-index" 1130source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1349,7 +1343,6 @@ dependencies = [
1349 "mimalloc", 1343 "mimalloc",
1350 "oorandom", 1344 "oorandom",
1351 "parking_lot", 1345 "parking_lot",
1352 "pico-args",
1353 "proc_macro_srv", 1346 "proc_macro_srv",
1354 "profile", 1347 "profile",
1355 "project_model", 1348 "project_model",
@@ -1371,6 +1364,7 @@ dependencies = [
1371 "vfs", 1364 "vfs",
1372 "vfs-notify", 1365 "vfs-notify",
1373 "winapi", 1366 "winapi",
1367 "xflags",
1374] 1368]
1375 1369
1376[[package]] 1370[[package]]
@@ -1923,6 +1917,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1923checksum = "06069a848f95fceae3e5e03c0ddc8cb78452b56654ee0c8e68f938cf790fb9e3" 1917checksum = "06069a848f95fceae3e5e03c0ddc8cb78452b56654ee0c8e68f938cf790fb9e3"
1924 1918
1925[[package]] 1919[[package]]
1920name = "xflags"
1921version = "0.1.3"
1922source = "registry+https://github.com/rust-lang/crates.io-index"
1923checksum = "ddb4b07c0db813f8e2b5e1b2189ef56fcddb27a6f9ef71314dbf8cc50096a5db"
1924dependencies = [
1925 "xflags-macros",
1926]
1927
1928[[package]]
1929name = "xflags-macros"
1930version = "0.1.3"
1931source = "registry+https://github.com/rust-lang/crates.io-index"
1932checksum = "f8e168a99d6ce9d5dd0d0913f1bded279377843952dd8ff83f81b862a1dad0e1"
1933dependencies = [
1934 "proc-macro2",
1935]
1936
1937[[package]]
1926name = "xshell" 1938name = "xshell"
1927version = "0.1.9" 1939version = "0.1.9"
1928source = "registry+https://github.com/rust-lang/crates.io-index" 1940source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1943,11 +1955,11 @@ version = "0.1.0"
1943dependencies = [ 1955dependencies = [
1944 "anyhow", 1956 "anyhow",
1945 "flate2", 1957 "flate2",
1946 "pico-args",
1947 "proc-macro2", 1958 "proc-macro2",
1948 "quote", 1959 "quote",
1949 "ungrammar", 1960 "ungrammar",
1950 "walkdir", 1961 "walkdir",
1951 "write-json", 1962 "write-json",
1963 "xflags",
1952 "xshell", 1964 "xshell",
1953] 1965]