init: guestbook project scaffolding

This commit is contained in:
Lewis Wynne 2026-04-09 01:03:33 +01:00
commit 6aa09e2751
3 changed files with 2484 additions and 0 deletions

2466
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

15
Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "guestbook"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.8"
tokio = { version = "1", features = ["full"] }
teloxide = { version = "0.13", features = ["macros"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
uuid = { version = "1", features = ["v4"] }
chrono = "0.4"
tracing = "0.1"
tracing-subscriber = "0.3"

3
src/main.rs Normal file
View file

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