removing seemingly unused dev deps.

This commit is contained in:
Giles Cope 2021-09-11 16:26:36 +01:00
parent 4ccd90af81
commit 15312aab58
No known key found for this signature in database
GPG Key ID: 631F6352D4A949EF
6 changed files with 0 additions and 12 deletions

5
Cargo.lock generated
View File

@ -526,7 +526,6 @@ dependencies = [
"profile",
"rustc-hash",
"syntax",
"test_utils",
"tracing",
"tt",
]
@ -895,7 +894,6 @@ dependencies = [
"cov-mark",
"expect-test",
"parser",
"profile",
"rustc-hash",
"smallvec",
"stdx",
@ -1140,7 +1138,6 @@ dependencies = [
name = "proc_macro_srv"
version = "0.0.0"
dependencies = [
"cargo_metadata",
"expect-test",
"libloading",
"mbe",
@ -1149,8 +1146,6 @@ dependencies = [
"paths",
"proc_macro_api",
"proc_macro_test",
"test_utils",
"toolchain",
"tt",
]

View File

@ -25,5 +25,4 @@ mbe = { path = "../mbe", version = "0.0.0" }
limit = { path = "../limit", version = "0.0.0" }
[dev-dependencies]
test_utils = { path = "../test_utils" }
expect-test = "1.1"

View File

@ -40,4 +40,3 @@ tracing-subscriber = { version = "0.2", default-features = false, features = [
"registry",
] }
tracing-tree = { version = "0.1.10" }
once_cell = { version = "1.5.0", features = ["unstable"] }

View File

@ -21,5 +21,4 @@ tt = { path = "../tt", version = "0.0.0" }
stdx = { path = "../stdx", version = "0.0.0" }
[dev-dependencies]
profile = { path = "../profile" }
test_utils = { path = "../test_utils" }

View File

@ -25,9 +25,6 @@ paths = { path = "../paths", version = "0.0.0" }
proc_macro_api = { path = "../proc_macro_api", version = "0.0.0" }
[dev-dependencies]
test_utils = { path = "../test_utils" }
toolchain = { path = "../toolchain" }
cargo_metadata = "0.14"
expect-test = "1.1.0"
# used as proc macro test targets

View File

@ -73,7 +73,6 @@ xshell = "0.1"
test_utils = { path = "../test_utils" }
sourcegen = { path = "../sourcegen" }
mbe = { path = "../mbe" }
tt = { path = "../tt" }
[features]
jemalloc = ["jemallocator", "profile/jemalloc"]