offline-web/Cargo.toml

18 lines
264 B
TOML
Raw Normal View History

2025-03-28 17:46:09 -04:00
[package]
name = "offline-web"
version = "0.1.0"
edition = "2021"
2025-03-29 20:32:25 -04:00
[lib]
path = "src/lib.rs"
[[bin]]
name = "example"
path = "src/main.rs"
2025-03-28 17:46:09 -04:00
[dependencies]
2025-03-29 16:06:11 -04:00
axum = "0.8.3"
rand = "0.9.0"
2025-03-29 16:06:11 -04:00
serde = { version = "1.0.219", features = ["derive", "rc"] }
2025-03-29 20:32:25 -04:00
tokio = "1.44.1"