Create project
This commit is contained in:
commit
0c9f5e91a3
9 changed files with 55 additions and 0 deletions
6
cove-core/Cargo.toml
Normal file
6
cove-core/Cargo.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "cove-core"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
8
cove-core/src/lib.rs
Normal file
8
cove-core/src/lib.rs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
#[test]
|
||||
fn it_works() {
|
||||
let result = 2 + 2;
|
||||
assert_eq!(result, 4);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue