aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorEmil Lauridsen <[email protected]>2019-12-27 10:10:07 +0000
committerEmil Lauridsen <[email protected]>2019-12-27 10:10:07 +0000
commit428a6ff5b8bad2c80a3522599195bf2a393f744e (patch)
tree9707dd343b8f00f01041a7995536aac84b137291 /Cargo.lock
parent0cdbd0814958e174c5481d6bf16bd2a7e53ec981 (diff)
Move cargo watch functionality to separate crate
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock17
1 files changed, 15 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 08e4b7106..7d2911076 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -898,6 +898,20 @@ dependencies = [
898] 898]
899 899
900[[package]] 900[[package]]
901name = "ra_cargo_watch"
902version = "0.1.0"
903dependencies = [
904 "cargo_metadata 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
905 "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
906 "insta 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
907 "jod-thread 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
908 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
909 "lsp-types 0.67.1 (registry+https://github.com/rust-lang/crates.io-index)",
910 "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
911 "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
912]
913
914[[package]]
901name = "ra_cfg" 915name = "ra_cfg"
902version = "0.1.0" 916version = "0.1.0"
903dependencies = [ 917dependencies = [
@@ -1051,15 +1065,14 @@ dependencies = [
1051name = "ra_lsp_server" 1065name = "ra_lsp_server"
1052version = "0.1.0" 1066version = "0.1.0"
1053dependencies = [ 1067dependencies = [
1054 "cargo_metadata 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
1055 "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1068 "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
1056 "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 1069 "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
1057 "insta 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)",
1058 "jod-thread 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", 1070 "jod-thread 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
1059 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", 1071 "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
1060 "lsp-server 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 1072 "lsp-server 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
1061 "lsp-types 0.67.1 (registry+https://github.com/rust-lang/crates.io-index)", 1073 "lsp-types 0.67.1 (registry+https://github.com/rust-lang/crates.io-index)",
1062 "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", 1074 "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
1075 "ra_cargo_watch 0.1.0",
1063 "ra_ide 0.1.0", 1076 "ra_ide 0.1.0",
1064 "ra_prof 0.1.0", 1077 "ra_prof 0.1.0",
1065 "ra_project_model 0.1.0", 1078 "ra_project_model 0.1.0",