feat(rust): add initial rust template

This commit is contained in:
Reed Krantz
2026-01-12 15:31:13 -06:00
parent 14fb214dad
commit 6c51c7cba0
9 changed files with 817 additions and 0 deletions

12
rust/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "rust"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { version = "*", features = ["full"] }
serde = { version = "*", features = ["derive"] }
thiserror = "*"
clap = { version = "*", features = ["derive"] }
tracing = "*"
tracing-subscriber = "*"