aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/main.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-10-26 15:25:35 +0100
committerGitHub <[email protected]>2019-10-26 15:25:35 +0100
commitfa4ccc5fef4f69d2e5bc93086249ba4d2ecf9ffc (patch)
treeda319d26da81e70c6f060617fd0a36e08a996d71 /xtask/src/main.rs
parent75cd15c84fcf64b88986ae39151a420e6f3c1e39 (diff)
parente3a253d80f124f12b5ec3707216590eb5c0dccff (diff)
Merge #2074
2074: document tasks module r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'xtask/src/main.rs')
-rw-r--r--xtask/src/main.rs11
1 files changed, 9 insertions, 2 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs
index eb39bf715..04dca402c 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`.
3mod help; 10mod help;
4 11
5use core::fmt::Write; 12use core::fmt::Write;