mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-08-21 11:00:26 +00:00
rename
This commit is contained in:
parent
e482812423
commit
2d41bc3e6c
8 changed files with 9 additions and 9 deletions
|
@ -14,4 +14,4 @@ libsyntax2 = { path = "../libsyntax2" }
|
||||||
libeditor = { path = "../libeditor" }
|
libeditor = { path = "../libeditor" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_eq_text = { path = "../assert_eq_text" }
|
test_utils = { path = "../test_utils" }
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
extern crate libanalysis;
|
extern crate libanalysis;
|
||||||
extern crate assert_eq_text;
|
extern crate test_utils;
|
||||||
|
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
use libanalysis::{WorldState, FileId};
|
use libanalysis::{WorldState, FileId};
|
||||||
use assert_eq_text::assert_eq_dbg;
|
use test_utils::assert_eq_dbg;
|
||||||
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
|
@ -11,4 +11,4 @@ superslice = "0.1.0"
|
||||||
libsyntax2 = { path = "../libsyntax2" }
|
libsyntax2 = { path = "../libsyntax2" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_eq_text = { path = "../assert_eq_text" }
|
test_utils = { path = "../test_utils" }
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
extern crate libeditor;
|
extern crate libeditor;
|
||||||
extern crate libsyntax2;
|
extern crate libsyntax2;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate assert_eq_text;
|
extern crate test_utils;
|
||||||
|
|
||||||
use assert_eq_text::{assert_eq_dbg};
|
use test_utils::{assert_eq_dbg};
|
||||||
use libsyntax2::{File, TextUnit, TextRange};
|
use libsyntax2::{File, TextUnit, TextRange};
|
||||||
use libeditor::{
|
use libeditor::{
|
||||||
ActionResult,
|
ActionResult,
|
||||||
|
|
|
@ -13,5 +13,5 @@ parking_lot = "0.6.0"
|
||||||
smol_str = "0.1.0"
|
smol_str = "0.1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_eq_text = { path = "../assert_eq_text" }
|
test_utils = { path = "../test_utils" }
|
||||||
walkdir = "2.2.0"
|
walkdir = "2.2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
extern crate libsyntax2;
|
extern crate libsyntax2;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate assert_eq_text;
|
extern crate test_utils;
|
||||||
extern crate walkdir;
|
extern crate walkdir;
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "assert_eq_text"
|
name = "test_utils"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
|
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue