diff options
| author | Weihang Lo <me@weihanglo.tw> | 2024-05-23 16:48:52 -0400 |
|---|---|---|
| committer | Weihang Lo <me@weihanglo.tw> | 2024-06-04 20:23:13 -0400 |
| commit | 8a0f1957982a6042ec550147243f811f25889d9c (patch) | |
| tree | e05544184cf279c7ba7609bf550676a022b0522c /src | |
| parent | a330e49593ee890f9197727a3a558b6e6b37f843 (diff) | |
| download | rust-8a0f1957982a6042ec550147243f811f25889d9c.tar.gz rust-8a0f1957982a6042ec550147243f811f25889d9c.zip | |
docs: add README.md for build_helper
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/build_helper/README.md | 1 | ||||
| -rw-r--r-- | src/tools/build_helper/src/lib.rs | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/build_helper/README.md b/src/tools/build_helper/README.md new file mode 100644 index 00000000000..f81b631c3fd --- /dev/null +++ b/src/tools/build_helper/README.md @@ -0,0 +1 @@ +Types and functions shared across tools in this workspace. diff --git a/src/tools/build_helper/src/lib.rs b/src/tools/build_helper/src/lib.rs index 2abda5d3ebf..d831cfa0d79 100644 --- a/src/tools/build_helper/src/lib.rs +++ b/src/tools/build_helper/src/lib.rs @@ -1,3 +1,5 @@ +//! Types and functions shared across tools in this workspace. + pub mod ci; pub mod git; pub mod metrics; |
