1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-14 22:15:54 +02:00
comprehensive-rust/Cargo.toml
Dustin J. Mitchell 9d9b4170e4
Replace GUI exercise with Logger (#1682)
This should be a bit simpler, and notably
* does not require trait objects, which per #1516 should be moved later
in the course
 * does not require a lot of futzing with string formatting

But all that hard work developing the GUI exercise is not for naught: it
remains in the "Modules" segment, where students will get a chance to
read some Rust code and reorganize it a little bit.

Fixes #1617.

R=mgeisler as the original author of the GUI exercise.
2024-01-18 19:15:19 +00:00

31 lines
716 B
TOML

[workspace]
members = [
"mdbook-exerciser",
"mdbook-course",
"src/types-and-values",
"src/control-flow-basics",
"src/tuples-and-arrays",
"src/references",
"src/user-defined-types",
"src/pattern-matching",
"src/methods-and-traits",
"src/generics",
"src/std-types",
"src/std-traits",
"src/iterators",
"src/modules",
"src/testing",
"src/memory-management",
"src/smart-pointers",
"src/borrowing",
"src/slices-and-lifetimes",
"src/error-handling",
"src/unsafe-rust",
"src/exercises",
"src/bare-metal/useful-crates/allocator-example",
"src/bare-metal/useful-crates/zerocopy-example",
"src/exercises/concurrency/chat-async",
"third_party/cxx/blobstore",
]
resolver = "2"