From a1c187eef3ba08076aedb5154929f7eda8d1b424 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Wed, 12 Aug 2020 18:26:51 +0200 Subject: Rename ra_syntax -> syntax --- crates/ra_db/Cargo.toml | 2 +- crates/ra_db/src/input.rs | 2 +- crates/ra_db/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'crates/ra_db') diff --git a/crates/ra_db/Cargo.toml b/crates/ra_db/Cargo.toml index 47a0f6248..156ea1ee4 100644 --- a/crates/ra_db/Cargo.toml +++ b/crates/ra_db/Cargo.toml @@ -12,7 +12,7 @@ doctest = false salsa = "0.15.2" rustc-hash = "1.1.0" -ra_syntax = { path = "../ra_syntax" } +syntax = { path = "../syntax" } ra_cfg = { path = "../ra_cfg" } profile = { path = "../profile" } tt = { path = "../tt" } diff --git a/crates/ra_db/src/input.rs b/crates/ra_db/src/input.rs index 02a1abee0..12a863499 100644 --- a/crates/ra_db/src/input.rs +++ b/crates/ra_db/src/input.rs @@ -9,8 +9,8 @@ use std::{fmt, iter::FromIterator, ops, str::FromStr, sync::Arc}; use ra_cfg::CfgOptions; -use ra_syntax::SmolStr; use rustc_hash::{FxHashMap, FxHashSet}; +use syntax::SmolStr; use tt::TokenExpander; use vfs::file_set::FileSet; diff --git a/crates/ra_db/src/lib.rs b/crates/ra_db/src/lib.rs index 795d7d2b6..73ac243d6 100644 --- a/crates/ra_db/src/lib.rs +++ b/crates/ra_db/src/lib.rs @@ -5,8 +5,8 @@ pub mod fixture; use std::{panic, sync::Arc}; -use ra_syntax::{ast, Parse, SourceFile, TextRange, TextSize}; use rustc_hash::FxHashSet; +use syntax::{ast, Parse, SourceFile, TextRange, TextSize}; pub use crate::{ cancellation::Canceled, -- cgit v1.2.3