19 lines
319 B
TOML
19 lines
319 B
TOML
[package]
|
|
name = "offline-web"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "example"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.8.3", features = ["macros"] }
|
|
blake2 = "0.10.6"
|
|
rand = "0.9.0"
|
|
serde = { version = "1.0.219", features = ["derive", "rc"] }
|
|
tokio = "1.44.1"
|