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.

Adding server crate

+10 -1
+1 -1
Cargo.toml
··· 1 1 [workspace] 2 - members = ["managrove-core"] 2 + members = ["managrove-core", "server"] 3 3 resolver = "3"
+6
server/Cargo.toml
··· 1 + [package] 2 + name = "server" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [dependencies]
+3
server/src/main.rs
··· 1 + fn main() { 2 + println!("Hello, world!"); 3 + }