You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-10-09 02:42:04 +02:00
Bumps the patch group with 10 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.99` | `1.0.100` | | [clap](https://github.com/clap-rs/clap) | `4.5.47` | `4.5.48` | | [regex](https://github.com/rust-lang/regex) | `1.11.2` | `1.11.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.219` | `1.0.228` | | [serde_json](https://github.com/serde-rs/json) | `1.0.143` | `1.0.145` | | [zerocopy](https://github.com/google/zerocopy) | `0.8.26` | `0.8.27` | | [tokio-websockets](https://github.com/Gelbpunkt/tokio-websockets) | `0.12.1` | `0.12.3` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.16` | `2.0.17` | | [cxx](https://github.com/dtolnay/cxx) | `1.0.175` | `1.0.180` | | [cxx-build](https://github.com/dtolnay/cxx) | `1.0.175` | `1.0.186` | 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.