Skip to content

Commit 757e593

Browse files
committed
rename ra_ide_api -> ra_ide
1 parent d9a36a7 commit 757e593

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+48
-48
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion

crates/ra_batch/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ crossbeam-channel = "0.4.0"
1515
ra_vfs = "0.5.0"
1616
ra_vfs_glob = { path = "../ra_vfs_glob" }
1717
ra_db = { path = "../ra_db" }
18-
ra_ide_api = { path = "../ra_ide_api" }
18+
ra_ide = { path = "../ra_ide" }
1919
ra_hir = { path = "../ra_hir" }
2020
ra_project_model = { path = "../ra_project_model" }

crates/ra_batch/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use rustc_hash::FxHashMap;
66

77
use crossbeam_channel::{unbounded, Receiver};
88
use ra_db::{CrateGraph, FileId, SourceRootId};
9-
use ra_ide_api::{AnalysisChange, AnalysisHost, FeatureFlags};
9+
use ra_ide::{AnalysisChange, AnalysisHost, FeatureFlags};
1010
use ra_project_model::{get_rustc_cfg_options, PackageRoot, ProjectWorkspace};
1111
use ra_vfs::{RootEntry, Vfs, VfsChange, VfsTask, Watch};
1212
use ra_vfs_glob::RustPackageFilterBuilder;

crates/ra_cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pico-args = "0.3.0"
1010
flexi_logger = "0.14.0"
1111

1212
ra_syntax = { path = "../ra_syntax" }
13-
ra_ide_api = { path = "../ra_ide_api" }
13+
ra_ide = { path = "../ra_ide" }
1414
ra_batch = { path = "../ra_batch" }
1515
ra_hir = { path = "../ra_hir" }
1616
ra_db = { path = "../ra_db" }

crates/ra_cli/src/analysis_bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use ra_db::{
1010
salsa::{Database, Durability},
1111
FileId, SourceDatabaseExt,
1212
};
13-
use ra_ide_api::{Analysis, AnalysisChange, AnalysisHost, FilePosition, LineCol};
13+
use ra_ide::{Analysis, AnalysisChange, AnalysisHost, FilePosition, LineCol};
1414

1515
use crate::Result;
1616

crates/ra_cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::{error::Error, fmt::Write, io::Read};
99

1010
use flexi_logger::Logger;
1111
use pico_args::Arguments;
12-
use ra_ide_api::{file_structure, Analysis};
12+
use ra_ide::{file_structure, Analysis};
1313
use ra_prof::profile;
1414
use ra_syntax::{AstNode, SourceFile};
1515

crates/ra_db/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! ra_db defines basic database traits. The concrete DB is defined by ra_ide_api.
1+
//! ra_db defines basic database traits. The concrete DB is defined by ra_ide.
22
mod cancellation;
33
mod input;
44
pub mod fixture;

crates/ra_ide_api/Cargo.toml renamed to crates/ra_ide/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
edition = "2018"
3-
name = "ra_ide_api"
3+
name = "ra_ide"
44
version = "0.1.0"
55
authors = ["rust-analyzer developers"]
66

@@ -32,7 +32,7 @@ ra_prof = { path = "../ra_prof" }
3232
test_utils = { path = "../test_utils" }
3333
ra_assists = { path = "../ra_assists" }
3434

35-
# ra_ide_api should depend only on the top-level `hir` package. if you need
35+
# ra_ide should depend only on the top-level `hir` package. if you need
3636
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
3737
hir = { path = "../ra_hir", package = "ra_hir" }
3838

File renamed without changes.

0 commit comments

Comments
 (0)