aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-02-06 14:01:07 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-02-06 14:01:07 +0000
commitf6cf9393a8327b4c0385bccbc5be84a79bd50057 (patch)
tree4af15c8906b85de01a15c717bc1fac388952cd3d /Cargo.lock
parent736a55c97e69f95e6ff4a0c3dafb2018e8ea05f9 (diff)
parent0c5fd8f7cbf04eda763e55bc9a38dad5f7ec917d (diff)
Merge #750
750: Move assists to a separate crate r=matklad a=matklad I am slowly coming to conclusion that ide_api_light does not make a lot of sense after all :D This PR moves assists to a separate crate, so that assists can use database (so, inspect types, do name-resolution, etc) Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock14
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 957190fdb..15cd4386c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -913,6 +913,19 @@ name = "ra_arena"
913version = "0.1.0" 913version = "0.1.0"
914 914
915[[package]] 915[[package]]
916name = "ra_assists"
917version = "0.1.0"
918dependencies = [
919 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
920 "ra_db 0.1.0",
921 "ra_hir 0.1.0",
922 "ra_ide_api_light 0.1.0",
923 "ra_syntax 0.1.0",
924 "ra_text_edit 0.1.0",
925 "test_utils 0.1.0",
926]
927
928[[package]]
916name = "ra_cli" 929name = "ra_cli"
917version = "0.1.0" 930version = "0.1.0"
918dependencies = [ 931dependencies = [
@@ -970,6 +983,7 @@ dependencies = [
970 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", 983 "join_to_string 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
971 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 984 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
972 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 985 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
986 "ra_assists 0.1.0",
973 "ra_db 0.1.0", 987 "ra_db 0.1.0",
974 "ra_hir 0.1.0", 988 "ra_hir 0.1.0",
975 "ra_ide_api_light 0.1.0", 989 "ra_ide_api_light 0.1.0",