1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-11-28 10:03:09 +02:00
comprehensive-rust/Cargo.toml
Dustin J. Mitchell face5af783
Update Concurrency course with times (#2007)
As I mentioned in #1536:

* Break into segments at approximately the places @fw-immunant put
breaks
 * Move all of the files into `src/concurrency`
 * Add timings and segment/session metadata so course outlines appear

There's room for more work here, including some additional feedback from
@fw-immunant after the session I observed, but let's do one step at a
time :)
2024-04-23 13:26:41 +00:00

33 lines
797 B
TOML

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