feat: Initialize Rust project structure

- Set up basic Cargo project with tracker-rs name
- Initialize source directory with main.rs template
- Establish foundation for Rust rewrite of system tracker
This commit is contained in:
m1ngsama 2025-11-27 09:00:00 +08:00
parent 7c6fe4f625
commit 77355ed667
2 changed files with 9 additions and 0 deletions

6
Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "tracker-rs"
version = "0.1.0"
edition = "2024"
[dependencies]

3
src/main.rs Normal file
View file

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