You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-11-06 09:29:26 +02:00
Bumps the patch group with 8 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.98` | `1.0.99` | | [clap](https://github.com/clap-rs/clap) | `4.5.42` | `4.5.46` | | [regex](https://github.com/rust-lang/regex) | `1.11.1` | `1.11.2` | | [serde_json](https://github.com/serde-rs/json) | `1.0.142` | `1.0.143` | | [tokio](https://github.com/tokio-rs/tokio) | `1.47.0` | `1.47.1` | | [tokio-websockets](https://github.com/Gelbpunkt/tokio-websockets) | `0.12.0` | `0.12.1` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.22` | `0.12.23` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.12` | `2.0.16` | Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
exerciser
This is an mdBook renderer to generate templates for exercises from the Markdown
source. Given a Markdown file example.md with one or more sections like:
<!-- File src/main.rs -->
```rust,compile_fail
{{#include example/src/main.rs:main}}
fn some_more_code() {
// TODO: Write some Rust code here.
}
```
and mdbook configuration in book.toml like:
[output.exerciser]
output-directory = "comprehensive-rust-exercises"
It will create a file
book/exerciser/comprehensive-rust-exercises/example/src/main.rs with the
appropriate contents.