aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-11-28 00:25:20 +0000
committerAleksey Kladov <[email protected]>2018-11-28 00:25:20 +0000
commit11168c464cd962af3336a2cc68295496066edd6c (patch)
tree2c3b0bceea0dcf092ae8bf9d16c1508295606b09 /Cargo.lock
parentb2de95879a8d48cc4077895376b0aaed1e972169 (diff)
move db basics to ra_db
This should allow to move hir to a separate crate
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock16
1 files changed, 16 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b4d466fb6..5113317b0 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -607,6 +607,7 @@ dependencies = [
607 "id-arena 1.0.2 (git+https://github.com/fitzgen/id-arena/?rev=43ecd67)", 607 "id-arena 1.0.2 (git+https://github.com/fitzgen/id-arena/?rev=43ecd67)",
608 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", 608 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
609 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", 609 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
610 "ra_db 0.1.0",
610 "ra_editor 0.1.0", 611 "ra_editor 0.1.0",
611 "ra_syntax 0.1.0", 612 "ra_syntax 0.1.0",
612 "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", 613 "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -629,6 +630,21 @@ dependencies = [
629] 630]
630 631
631[[package]] 632[[package]]
633name = "ra_db"
634version = "0.1.0"
635dependencies = [
636 "id-arena 1.0.2 (git+https://github.com/fitzgen/id-arena/?rev=43ecd67)",
637 "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
638 "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
639 "ra_editor 0.1.0",
640 "ra_syntax 0.1.0",
641 "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
642 "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
643 "salsa 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
644 "test_utils 0.1.0",
645]
646
647[[package]]
632name = "ra_editor" 648name = "ra_editor"
633version = "0.1.0" 649version = "0.1.0"
634dependencies = [ 650dependencies = [