From af9fb7edbb84f3927247e328bff6b9bc6ece58c7 Mon Sep 17 00:00:00 2001 From: minatorak Date: Thu, 3 Oct 2024 21:15:09 +0700 Subject: [PATCH 1/5] Add tool bisect document --- src/official.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/official.md b/src/official.md index 16547f4..c289723 100644 --- a/src/official.md +++ b/src/official.md @@ -39,3 +39,4 @@ Other: * [Rust RFCs](https://rust-lang.github.io/rfcs/) - list of Requests For Comments for changes to Rust * [The Chalk Book](https://rust-lang.github.io/chalk/book/) - Rust's new trait system implementation * [The `bindgen` User Guide](https://rust-lang.github.io/rust-bindgen/) - automatically generates Rust FFI bindings to C and C++ libraries +* [cargo-bisect-rustc](https://rust-lang.github.io/cargo-bisect-rustc/) - tool for automatically downloads rustc artifacts and tests until it finds the regression \ No newline at end of file From 71765fdd6f860361c7b2cf8265fe37afb029331d Mon Sep 17 00:00:00 2001 From: minatorak Date: Thu, 3 Oct 2024 21:50:23 +0700 Subject: [PATCH 2/5] Add link const generics --- src/official.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/official.md b/src/official.md index c289723..294d66e 100644 --- a/src/official.md +++ b/src/official.md @@ -27,6 +27,7 @@ Working groups: * [The Rust Language Design Team](https://lang-team.rust-lang.org/design_notes.html) - information related to the work of the lang team * [The Types Team](https://rust-lang.github.io/types-team/) - traits implementation improvements * [wg-async](https://rust-lang.github.io/wg-async/) - foundations of async I/O +* [Const Generics Project Group](https://rust-lang.github.io/project-const-generics/index.html) - implements and designs the const_generics feature Other: * [Asynchronous Programming in Rust](https://rust-lang.github.io/async-book/) - non-blocking coroutines @@ -39,4 +40,4 @@ Other: * [Rust RFCs](https://rust-lang.github.io/rfcs/) - list of Requests For Comments for changes to Rust * [The Chalk Book](https://rust-lang.github.io/chalk/book/) - Rust's new trait system implementation * [The `bindgen` User Guide](https://rust-lang.github.io/rust-bindgen/) - automatically generates Rust FFI bindings to C and C++ libraries -* [cargo-bisect-rustc](https://rust-lang.github.io/cargo-bisect-rustc/) - tool for automatically downloads rustc artifacts and tests until it finds the regression \ No newline at end of file +* [cargo bisect rustc](https://rust-lang.github.io/cargo-bisect-rustc/) - tool for automatically downloads rustc artifacts and tests until it finds the regression \ No newline at end of file From 343bb83978e0349f094711f9329b3ab586a0ec8b Mon Sep 17 00:00:00 2001 From: minatorak Date: Mon, 7 Oct 2024 18:10:53 +0700 Subject: [PATCH 3/5] reslove alphabetical order and name --- src/official.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/official.md b/src/official.md index 294d66e..4574020 100644 --- a/src/official.md +++ b/src/official.md @@ -23,14 +23,15 @@ Advanced: Working groups: * [_Compiler team working groups_](https://rust-lang.github.io/compiler-team/working-groups/) - a list of working groups +* [Const Generics Project Group](https://rust-lang.github.io/project-const-generics/index.html) - implements and designs the const_generics feature * [Standard library developers Guide](https://std-dev-guide.rust-lang.org/about.html) * [The Rust Language Design Team](https://lang-team.rust-lang.org/design_notes.html) - information related to the work of the lang team * [The Types Team](https://rust-lang.github.io/types-team/) - traits implementation improvements * [wg-async](https://rust-lang.github.io/wg-async/) - foundations of async I/O -* [Const Generics Project Group](https://rust-lang.github.io/project-const-generics/index.html) - implements and designs the const_generics feature Other: * [Asynchronous Programming in Rust](https://rust-lang.github.io/async-book/) - non-blocking coroutines +* [cargo-bisect-rustc](https://rust-lang.github.io/cargo-bisect-rustc/) - tool for automatically downloads rustc artifacts and tests until it finds the regression * [Clippy Documentation](https://doc.rust-lang.org/nightly/clippy/development/infrastructure/book.html) - code lints for programmers * [Criterion.rs](https://bheisler.github.io/criterion.rs/book/getting_started.html) - statistics-driven micro-benchmarking * [Error Codes Index](https://doc.rust-lang.org/stable/error_codes/error-index.html) - list of all error codes emitted from the Rust compiler @@ -39,5 +40,4 @@ Other: * [Rust API Guidelines](https://rust-lang.github.io/api-guidelines/) - how to design and present APIs * [Rust RFCs](https://rust-lang.github.io/rfcs/) - list of Requests For Comments for changes to Rust * [The Chalk Book](https://rust-lang.github.io/chalk/book/) - Rust's new trait system implementation -* [The `bindgen` User Guide](https://rust-lang.github.io/rust-bindgen/) - automatically generates Rust FFI bindings to C and C++ libraries -* [cargo bisect rustc](https://rust-lang.github.io/cargo-bisect-rustc/) - tool for automatically downloads rustc artifacts and tests until it finds the regression \ No newline at end of file +* [The `bindgen` User Guide](https://rust-lang.github.io/rust-bindgen/) - automatically generates Rust FFI bindings to C and C++ libraries \ No newline at end of file From 17838900789d168c57b6f18a45a0bd3364a6bbe0 Mon Sep 17 00:00:00 2001 From: Glyn Normington Date: Mon, 7 Oct 2024 16:53:42 +0100 Subject: [PATCH 4/5] Improve style --- src/official.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/official.md b/src/official.md index 4574020..f6900dd 100644 --- a/src/official.md +++ b/src/official.md @@ -23,7 +23,7 @@ Advanced: Working groups: * [_Compiler team working groups_](https://rust-lang.github.io/compiler-team/working-groups/) - a list of working groups -* [Const Generics Project Group](https://rust-lang.github.io/project-const-generics/index.html) - implements and designs the const_generics feature +* [Const Generics Project Group](https://rust-lang.github.io/project-const-generics/index.html) - design and implementation of the const generics feature * [Standard library developers Guide](https://std-dev-guide.rust-lang.org/about.html) * [The Rust Language Design Team](https://lang-team.rust-lang.org/design_notes.html) - information related to the work of the lang team * [The Types Team](https://rust-lang.github.io/types-team/) - traits implementation improvements From e785d576f8b1ee972f67be7bb0c0818d2d25953a Mon Sep 17 00:00:00 2001 From: Glyn Normington Date: Mon, 7 Oct 2024 16:53:57 +0100 Subject: [PATCH 5/5] Improve English --- src/official.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/official.md b/src/official.md index f6900dd..ac91615 100644 --- a/src/official.md +++ b/src/official.md @@ -31,7 +31,7 @@ Working groups: Other: * [Asynchronous Programming in Rust](https://rust-lang.github.io/async-book/) - non-blocking coroutines -* [cargo-bisect-rustc](https://rust-lang.github.io/cargo-bisect-rustc/) - tool for automatically downloads rustc artifacts and tests until it finds the regression +* [cargo-bisect-rustc](https://rust-lang.github.io/cargo-bisect-rustc/) - tool for automatically downloading and bisecting rustc artifacts and tests until it finds a given regression * [Clippy Documentation](https://doc.rust-lang.org/nightly/clippy/development/infrastructure/book.html) - code lints for programmers * [Criterion.rs](https://bheisler.github.io/criterion.rs/book/getting_started.html) - statistics-driven micro-benchmarking * [Error Codes Index](https://doc.rust-lang.org/stable/error_codes/error-index.html) - list of all error codes emitted from the Rust compiler