mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-12-26 19:23:22 +02:00
1b3984df20
After #1528 and #1532, we now have actual slides which showcase the crates in action. So we can reclaim a few minutes by removing the slide which mentions Mockall and GoogleTest slide. The slide mentioned [proptest](https://docs.rs/proptest) and [rstest](https://docs.rs/rstest) as well. While I'm sure the libraries are useful, we don't have them imported into AOSP and I've never personally used them. We should therefore not advertise them yet at this point since they won't be useful to Android engineers. Of course we can mention things that are not in AOSP (or in Chromium), but I think we should do it in the speaker notes at most.
33 lines
785 B
TOML
33 lines
785 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/exercises",
|
|
"src/exercises/concurrency/chat-async",
|
|
"src/generics",
|
|
"src/iterators",
|
|
"src/memory-management",
|
|
"src/methods-and-traits",
|
|
"src/modules",
|
|
"src/pattern-matching",
|
|
"src/references",
|
|
"src/slices-and-lifetimes",
|
|
"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"
|