diff options
Diffstat (limited to 'docs/user/manual.adoc')
-rw-r--r-- | docs/user/manual.adoc | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc index bebcee023..144130b51 100644 --- a/docs/user/manual.adoc +++ b/docs/user/manual.adoc | |||
@@ -273,9 +273,19 @@ However, if you use some other build system, you'll have to describe the structu | |||
273 | [source,TypeScript] | 273 | [source,TypeScript] |
274 | ---- | 274 | ---- |
275 | interface JsonProject { | 275 | interface JsonProject { |
276 | /// The set of crates comprising the current project. | 276 | /// Path to the directory with *source code* of sysroot crates. |
277 | /// Must include all transitive dependencies as well as sysroot crate (libstd, libcore and such). | 277 | /// |
278 | crates: Crate[]; | 278 | /// It should point to the directory where std, core, and friends can be found: |
279 | /// https://github.com/rust-lang/rust/tree/master/library. | ||
280 | /// | ||
281 | /// If provided, rust-analyzer automatically adds dependencies on sysroot | ||
282 | /// crates. Conversely, if you omit this path, you can specify sysroot | ||
283 | /// dependencies yourself and, for example, have several different "sysroots" in | ||
284 | /// one graph of crates. | ||
285 | sysroot_src?: string; | ||
286 | /// The set of crates comprising the current project. | ||
287 | /// Must include all transitive dependencies as well as sysroot crate (libstd, libcore and such). | ||
288 | crates: Crate[]; | ||
279 | } | 289 | } |
280 | 290 | ||
281 | interface Crate { | 291 | interface Crate { |