2014-11-21 22:45:45 +00:00
|
|
|
[submodule "src/rust-installer"]
|
2017-05-08 22:01:13 +00:00
|
|
|
path = src/tools/rust-installer
|
2015-12-25 18:51:04 +00:00
|
|
|
url = https://github.com/rust-lang/rust-installer.git
|
2017-03-03 01:15:41 +00:00
|
|
|
[submodule "src/doc/nomicon"]
|
|
|
|
path = src/doc/nomicon
|
2019-10-30 13:37:05 +00:00
|
|
|
url = https://github.com/rust-lang/nomicon.git
|
2017-02-15 22:55:26 +00:00
|
|
|
[submodule "src/tools/cargo"]
|
2017-04-20 21:32:54 +00:00
|
|
|
path = src/tools/cargo
|
2017-04-29 23:11:58 +00:00
|
|
|
url = https://github.com/rust-lang/cargo.git
|
2017-12-28 17:20:19 +00:00
|
|
|
[submodule "src/doc/reference"]
|
2017-03-02 23:47:06 +00:00
|
|
|
path = src/doc/reference
|
2019-10-30 13:37:05 +00:00
|
|
|
url = https://github.com/rust-lang/reference.git
|
2017-12-28 17:20:19 +00:00
|
|
|
[submodule "src/doc/book"]
|
2017-03-07 19:43:27 +00:00
|
|
|
path = src/doc/book
|
2017-04-06 13:48:56 +00:00
|
|
|
url = https://github.com/rust-lang/book.git
|
2017-04-20 21:32:54 +00:00
|
|
|
[submodule "src/tools/rls"]
|
|
|
|
path = src/tools/rls
|
2020-01-25 08:58:10 +00:00
|
|
|
url = https://github.com/rust-lang/rls.git
|
2017-09-01 05:13:15 +00:00
|
|
|
[submodule "src/tools/rustfmt"]
|
|
|
|
path = src/tools/rustfmt
|
2020-01-25 08:58:10 +00:00
|
|
|
url = https://github.com/rust-lang/rustfmt.git
|
2017-08-28 14:54:50 +00:00
|
|
|
[submodule "src/tools/miri"]
|
|
|
|
path = src/tools/miri
|
2019-02-17 11:39:40 +00:00
|
|
|
url = https://github.com/rust-lang/miri.git
|
2017-12-02 02:29:12 +00:00
|
|
|
[submodule "src/doc/rust-by-example"]
|
|
|
|
path = src/doc/rust-by-example
|
2018-09-05 07:45:55 +00:00
|
|
|
url = https://github.com/rust-lang/rust-by-example.git
|
2020-06-12 02:31:49 +00:00
|
|
|
[submodule "library/stdarch"]
|
|
|
|
path = library/stdarch
|
2019-07-15 11:53:44 +00:00
|
|
|
url = https://github.com/rust-lang/stdarch.git
|
2020-03-10 20:22:25 +00:00
|
|
|
[submodule "src/doc/rustc-dev-guide"]
|
|
|
|
path = src/doc/rustc-dev-guide
|
|
|
|
url = https://github.com/rust-lang/rustc-dev-guide.git
|
2018-11-30 14:36:49 +00:00
|
|
|
[submodule "src/doc/edition-guide"]
|
|
|
|
path = src/doc/edition-guide
|
2019-10-30 13:37:05 +00:00
|
|
|
url = https://github.com/rust-lang/edition-guide.git
|
2019-01-16 17:59:03 +00:00
|
|
|
[submodule "src/llvm-project"]
|
|
|
|
path = src/llvm-project
|
|
|
|
url = https://github.com/rust-lang/llvm-project.git
|
2019-12-31 14:46:46 +00:00
|
|
|
branch = rustc/10.0-2020-05-05
|
2019-01-19 03:52:39 +00:00
|
|
|
[submodule "src/doc/embedded-book"]
|
|
|
|
path = src/doc/embedded-book
|
2019-02-17 11:39:40 +00:00
|
|
|
url = https://github.com/rust-embedded/book.git
|
Add rust-analyzer submodule
The current plan is that submodule tracks the `release` branch of
rust-analyzer, which is updated once a week.
rust-analyzer is a workspace (with a virtual manifest), the actual
binary is provide by `crates/rust-analyzer` package.
Note that we intentionally don't add rust-analyzer to `Kind::Test`,
for two reasons.
*First*, at the moment rust-analyzer's test suite does a couple of
things which might not work in the context of rust repository. For
example, it shells out directly to `rustup` and `rustfmt`. So, making
this work requires non-trivial efforts.
*Second*, it seems unlikely that running tests in rust-lang/rust repo
would provide any additional guarantees. rust-analyzer builds with
stable and does not depend on the specifics of the compiler, so
changes to compiler can't break ra, unless they break stability
guarantee. Additionally, rust-analyzer itself is gated on bors, so we
are pretty confident that test suite passes.
2020-06-04 11:11:15 +00:00
|
|
|
[submodule "src/tools/rust-analyzer"]
|
|
|
|
path = src/tools/rust-analyzer
|
|
|
|
url = https://github.com/rust-analyzer/rust-analyzer.git
|