Peter Hartley
Results
2
issues of
Peter Hartley
When used in the root of a workspace, the normal "cargo build" and "cargo test" commands (and similar) take the list of packages to build/test from the workspace.default-members key if...
In this example: ``` pub mod foo { pub struct Foo {} } pub mod bar { use crate::foo::Foo; pub struct Fnord; pub trait Bar { fn send(&self, n: Fnord);...