using rust instead lmao

This commit is contained in:
saji 2024-11-14 13:50:29 -06:00
parent fccac81377
commit 93a1d09d61
5 changed files with 1688 additions and 3 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

1675
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

9
Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "meshcoverage"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.21", features = ["derive"] }
meshtastic = "0.1.6"
serde = { version = "1.0.215", features = ["derive"] }

3
go.mod
View file

@ -1,3 +0,0 @@
module git.saji.dev/saji/meshcoverage
go 1.23.2

3
src/main.rs Normal file
View file

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