Skip to content

Commit 018a6ca

Browse files
bors[bot]matklad
andauthored
Merge #5750
5750: Rename ra_ide -> ide r=matklad a=matklad bors r+ πŸ€– Co-authored-by: Aleksey Kladov <[email protected]>
2 parents 00fb411 + 6bc2633 commit 018a6ca

File tree

113 files changed

+246
-348
lines changed

Some content is hidden

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

113 files changed

+246
-348
lines changed

β€ŽCargo.lock

Lines changed: 35 additions & 35 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/base_db/src/lib.rs

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

β€Žcrates/expect/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[package]
22
name = "expect"
3-
version = "0.1.0"
3+
version = "0.0.0"
4+
license = "MIT OR Apache-2.0"
45
authors = ["rust-analyzer developers"]
56
edition = "2018"
6-
license = "MIT OR Apache-2.0"
77

88
[lib]
99
doctest = false
1010

1111
[dependencies]
1212
once_cell = "1"
1313
difference = "2"
14+
1415
stdx = { path = "../stdx" }

β€Žcrates/flycheck/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
2-
edition = "2018"
32
name = "flycheck"
4-
version = "0.1.0"
5-
authors = ["rust-analyzer developers"]
3+
version = "0.0.0"
64
license = "MIT OR Apache-2.0"
5+
authors = ["rust-analyzer developers"]
6+
edition = "2018"
77

88
[lib]
99
doctest = false
@@ -14,4 +14,5 @@ log = "0.4.8"
1414
cargo_metadata = "0.11.1"
1515
serde_json = "1.0.48"
1616
jod-thread = "0.1.1"
17+
1718
toolchain = { path = "../toolchain" }

β€Žcrates/ra_ide/Cargo.toml renamed to β€Žcrates/ide/Cargo.toml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
[package]
2-
edition = "2018"
3-
name = "ra_ide"
4-
version = "0.1.0"
5-
authors = ["rust-analyzer developers"]
2+
name = "ide"
3+
version = "0.0.0"
64
license = "MIT OR Apache-2.0"
5+
authors = ["rust-analyzer developers"]
6+
edition = "2018"
77

88
[lib]
99
doctest = false
1010

11-
[features]
12-
wasm = []
13-
1411
[dependencies]
1512
either = "1.5.3"
1613
indexmap = "1.3.2"
@@ -20,7 +17,6 @@ rustc-hash = "1.1.0"
2017
oorandom = "11.1.2"
2118

2219
stdx = { path = "../stdx" }
23-
2420
syntax = { path = "../syntax" }
2521
text_edit = { path = "../text_edit" }
2622
base_db = { path = "../base_db" }
@@ -31,7 +27,7 @@ test_utils = { path = "../test_utils" }
3127
assists = { path = "../assists" }
3228
ssr = { path = "../ssr" }
3329

34-
# ra_ide should depend only on the top-level `hir` package. if you need
30+
# ide should depend only on the top-level `hir` package. if you need
3531
# something from some `hir_xxx` subpackage, reexport the API via `hir`.
3632
hir = { path = "../hir" }
3733

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
Β (0)