Compare commits

2 Commits

Author SHA1 Message Date
wesley b136ae5402 Added Cargo.lock (#2)
Added in the Cargo.lock file as this will be a binary and we need it.
This is just a barebones one for now and will be expanded upon as we add
in new crates.

Reviewed-on: #2
2026-05-31 19:37:25 -04:00
wesley b771e3c1bc Cargo Init (#1)
Ran a cargo init --bin to initialize cargo for the project.

Reviewed-on: #1
2026-05-31 19:25:10 -04:00
3 changed files with 16 additions and 0 deletions
Generated
+7
View File
@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "rstow"
version = "0.1.0"
+6
View File
@@ -0,0 +1,6 @@
[package]
name = "rstow"
version = "0.1.0"
edition = "2024"
[dependencies]
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}