rust router skeleton code

Just a basic axum setup with modules
This commit is contained in:
Julia Lange 2025-04-17 16:08:14 -07:00
parent 1f6544a75e
commit 1d577ef396
Signed by: Julia
SSH key fingerprint: SHA256:50XUMcOFYPUs9/1j7p9SPnwASZ7QnxXm7THF7HkbqzQ
4 changed files with 653 additions and 0 deletions

10
rust/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.8.3"
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }