use cargo workspace feature (#340)

For now, everything has been moved as it is in the "cli"
workspace. The next step is to separate the "lib" from the "cli".
This commit is contained in:
Clément DOUIN
2022-03-16 09:57:24 +01:00
parent ac8628c08c
commit b2cffd22f1
67 changed files with 226 additions and 252 deletions
+8
View File
@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
let result = 2 + 2;
assert_eq!(result, 4);
}
}