Init Cargo

This commit is contained in:
Luke Harding 2024-05-02 19:04:52 -04:00
parent 3972325e79
commit 97711358eb
3 changed files with 17 additions and 0 deletions

7
server/Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "personal-tracker-server"
version = "0.1.0"

7
server/Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "personal-tracker-server"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-only"
[dependencies]

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

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