My personal site cherry.computer
htmx tailwind axum askama
at main 23 lines 603 B view raw
1[package] 2name = "myivo-server" 3version = "0.1.0" 4edition = "2024" 5 6[lints.clippy] 7pedantic = "warn" 8 9[dependencies] 10anyhow = "1.0.57" 11askama = "0.14.0" 12axum = "0.8.1" 13jsonwebtoken = "9.3.1" 14rand = "0.9.2" 15reqwest = { version = "0.12.23", features = ["json"] } 16scraper = "0.24.0" 17serde = { version = "1.0.219", features = ["derive"] } 18strum = { version = "0.27.2", features = ["derive"] } 19tokio = { version = "1.18.2", features = ["full"] } 20tower = "0.5.2" 21tower-http = { version = "0.6.2", features = ["compression-full", "fs", "trace", "set-header"] } 22tracing = "0.1.34" 23tracing-subscriber = "0.3.11"