A card game engine for TCGs, primarily Magic: The Gathering but with support for others
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Renaming core crate to managrove-core

+20
+6
managrove-core/Cargo.toml
··· 1 + [package] 2 + name = "managrove-core" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [dependencies]
+14
managrove-core/src/lib.rs
··· 1 + pub fn add(left: u64, right: u64) -> u64 { 2 + left + right 3 + } 4 + 5 + #[cfg(test)] 6 + mod tests { 7 + use super::*; 8 + 9 + #[test] 10 + fn it_works() { 11 + let result = add(2, 2); 12 + assert_eq!(result, 4); 13 + } 14 + }