Initial Rust files added.

Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
Louis Hollingworth 2026-08-10 21:53:29 +01:00
parent 507ee95be6
commit 6aaaae0f57
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
4 changed files with 15 additions and 1 deletions

5
.gitignore vendored
View file

@ -89,3 +89,8 @@ Network Trash Folder
Temporary Items
.apdisk
# Added by cargo
/target

6
Cargo.toml Normal file
View file

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

View file

@ -1,2 +1,2 @@
# election-watch
# Election Watch

3
src/main.rs Normal file
View file

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