From 189521a4db6e51e954f118367e07bb1cc6d2f40d Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Tue, 25 Aug 2020 18:34:00 +0200 Subject: Add sysroot shortcut to rust-project.json --- docs/user/manual.adoc | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'docs/user') 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 [source,TypeScript] ---- interface JsonProject { - /// The set of crates comprising the current project. - /// Must include all transitive dependencies as well as sysroot crate (libstd, libcore and such). - crates: Crate[]; + /// Path to the directory with *source code* of sysroot crates. + /// + /// It should point to the directory where std, core, and friends can be found: + /// https://github.com/rust-lang/rust/tree/master/library. + /// + /// If provided, rust-analyzer automatically adds dependencies on sysroot + /// crates. Conversely, if you omit this path, you can specify sysroot + /// dependencies yourself and, for example, have several different "sysroots" in + /// one graph of crates. + sysroot_src?: string; + /// The set of crates comprising the current project. + /// Must include all transitive dependencies as well as sysroot crate (libstd, libcore and such). + crates: Crate[]; } interface Crate { -- cgit v1.2.3