Remove the cargo.toml workspace and define common as a library

This commit is contained in:
Grégory Burri 2019-08-15 13:44:08 +02:00
parent 33493c8991
commit a372187c8d
9 changed files with 120 additions and 83 deletions

6
common/src/lib.rs Normal file
View file

@ -0,0 +1,6 @@
mod recipes {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}

View file

@ -1,3 +0,0 @@
fn main() {
println!("Hello, world!");
}