rust workspaces

This commit is contained in:
Henri Bourcereau 2022-12-14 13:58:44 +01:00
parent 91a9ff3de2
commit 0c1408fb19
9 changed files with 52 additions and 13 deletions

9
server/Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "trictrac-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pico-args = "0.5.0"

3
server/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}