chore(harmony): Use Cargo workspaces for core harmony and client specific implementation

This commit is contained in:
jeangab
2024-09-06 12:17:23 -04:00
parent aa28ab37b8
commit cc01ec5fe5
41 changed files with 783 additions and 142 deletions

14
harmony-rs/fqm/src/lib.rs Normal file
View File

@@ -0,0 +1,14 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}