diff options
author | Aleksey Kladov <[email protected]> | 2019-10-26 15:20:44 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-10-26 15:20:44 +0100 |
commit | e3a253d80f124f12b5ec3707216590eb5c0dccff (patch) | |
tree | 5df27b2a9194bf769ea0d9ecd8d0b16f5712decd /xtask | |
parent | 37770a3adfcfa2d1948e3d95a7ef2ebc0f7ea2d6 (diff) |
document tasks module
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/src/main.rs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 06aa3c8ec..34eb63eb3 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs | |||
@@ -1,5 +1,12 @@ | |||
1 | //! FIXME: write short doc here | 1 | //! See https://github.com/matklad/cargo-xtask/. |
2 | 2 | //! | |
3 | //! This binary defines various auxiliary build commands, which are not | ||
4 | //! expressible with just `cargo`. Notably, it provides `cargo xtask codegen` | ||
5 | //! for code genetaiont and `cargo xtask install` for installation of | ||
6 | //! rust-analyzer server and client. | ||
7 | //! | ||
8 | //! This binary is integrated into the `cargo` command line by using an alias in | ||
9 | //! `.cargo/config`. | ||
3 | mod help; | 10 | mod help; |
4 | 11 | ||
5 | use core::fmt::Write; | 12 | use core::fmt::Write; |