@@ -70,11 +70,9 @@ proc-macro-srv = { path = "./crates/proc-macro-srv", version = "0.0.0" }
70
70
proc-macro-srv-cli = { path = " ./crates/proc-macro-srv-cli" , version = " 0.0.0" }
71
71
profile = { path = " ./crates/profile" , version = " 0.0.0" }
72
72
project-model = { path = " ./crates/project-model" , version = " 0.0.0" }
73
- sourcegen = { path = " ./crates/sourcegen" , version = " 0.0.0" }
74
73
span = { path = " ./crates/span" , version = " 0.0.0" }
75
74
stdx = { path = " ./crates/stdx" , version = " 0.0.0" }
76
75
syntax = { path = " ./crates/syntax" , version = " 0.0.0" }
77
- test-utils = { path = " ./crates/test-utils" , version = " 0.0.0" }
78
76
text-edit = { path = " ./crates/text-edit" , version = " 0.0.0" }
79
77
toolchain = { path = " ./crates/toolchain" , version = " 0.0.0" }
80
78
tt = { path = " ./crates/tt" , version = " 0.0.0" }
@@ -84,6 +82,9 @@ rustc-dependencies = { path = "./crates/rustc-dependencies", version = "0.0.0" }
84
82
85
83
# local crates that aren't published to crates.io. These should not have versions.
86
84
proc-macro-test = { path = " ./crates/proc-macro-test" }
85
+ sourcegen = { path = " ./crates/sourcegen" }
86
+ test-fixture = { path = " ./crates/test-fixture" }
87
+ test-utils = { path = " ./crates/test-utils" }
87
88
88
89
# In-tree crates that are published separately and follow semver. See lib/README.md
89
90
line-index = { version = " 0.1.1" }
@@ -94,8 +95,11 @@ lsp-server = { version = "0.7.4" }
94
95
anyhow = " 1.0.75"
95
96
bitflags = " 2.4.1"
96
97
cargo_metadata = " 0.18.1"
98
+ command-group = " 2.0.1"
99
+ crossbeam-channel = " 0.5.8"
97
100
dissimilar = " 1.0.7"
98
101
either = " 1.9.0"
102
+ expect-test = " 1.4.0"
99
103
hashbrown = { version = " 0.14" , features = [
100
104
" inline-more" ,
101
105
], default-features = false }
@@ -125,5 +129,6 @@ tracing-subscriber = { version = "0.3.18", default-features = false, features =
125
129
triomphe = { version = " 0.1.10" , default-features = false , features = [" std" ] }
126
130
xshell = " 0.2.5"
127
131
132
+
128
133
# We need to freeze the version of the crate, as the raw-api feature is considered unstable
129
134
dashmap = { version = " =5.5.3" , features = [" raw-api" ] }
0 commit comments