mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-12-15 14:27:50 +02:00
6d19292f16
I've taken some work by @fw-immunant and others on the new organization of the course and condensed it into a form amenable to a text editor and some computational analysis. You can see the inputs in `course.py` but the interesting bits are the output: `outline.md` and `slides.md`. The idea is to break the course into more, smaller segments with exercises at the ends and breaks in between. So `outline.md` lists the segments, their duration, and sums those durations up per-day. It shows we're about an hour too long right now! There are more details of the segments in `slides.md`, or you can see mostly the same stuff in `course.py`. This now contains all of the content from the v1 course, ensuring both that we've covered everything and that we'll have somewhere to redirect every page. Fixes #1082. Fixes #1465. --------- Co-authored-by: Nicole LeGare <dlegare.1001@gmail.com> Co-authored-by: Martin Geisler <mgeisler@google.com>
23 lines
511 B
TOML
23 lines
511 B
TOML
[package]
|
|
name = "mdbook-course"
|
|
version = "0.1.0"
|
|
authors = ["Dustin Mitchell <djmitche@google.com>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
publish = false
|
|
repository = "https://github.com/google/comprehensive-rust"
|
|
description = "An mdbook preprocessor for comprehensive-rust."
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.68"
|
|
clap = "4.4.4"
|
|
lazy_static = "1.4"
|
|
log = "0.4.17"
|
|
matter = "0.1.0-alpha4"
|
|
mdbook = "0.4.25"
|
|
pretty_env_logger = "0.5.0"
|
|
regex = "1.10"
|
|
serde = "1.0.192"
|
|
serde_json = "1.0.107"
|
|
serde_yaml = "0.9"
|