aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-02-21 10:46:17 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-02-21 10:46:17 +0000
commitd77b5857c2420666e84dcd433f254e000e2843aa (patch)
tree416e333019e349bf4ee369f2548d9e6f6a9c67e9 /Cargo.lock
parent18b0c509f77a8e06141fee6668532cced1ebf5d8 (diff)
parent46179230a05331b1debd4dfa3bb197fa38d92347 (diff)
Merge #867
867: This moves the parser to separate crate r=matklad a=matklad That makes parser independent form both the token and the tree representation. Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock8
1 files changed, 8 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 7b1412556..f09cf98c8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1072,6 +1072,13 @@ dependencies = [
1072] 1072]
1073 1073
1074[[package]] 1074[[package]]
1075name = "ra_parser"
1076version = "0.1.0"
1077dependencies = [
1078 "drop_bomb 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
1079]
1080
1081[[package]]
1075name = "ra_project_model" 1082name = "ra_project_model"
1076version = "0.1.0" 1083version = "0.1.0"
1077dependencies = [ 1084dependencies = [
@@ -1093,6 +1100,7 @@ dependencies = [
1093 "drop_bomb 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", 1100 "drop_bomb 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
1094 "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", 1101 "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
1095 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", 1102 "parking_lot 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
1103 "ra_parser 0.1.0",
1096 "ra_text_edit 0.1.0", 1104 "ra_text_edit 0.1.0",
1097 "rowan 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 1105 "rowan 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
1098 "smol_str 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", 1106 "smol_str 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",