simple-web-app

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

Cargo.toml (423B)


      1 [package]
      2 name = "simple-web-app"
      3 version = "0.1.0"
      4 edition = "2021"
      5 
      6 [dependencies]
      7 axum = "0.8"
      8 axum-extra = { version = "0.10", features = ["cookie"] }
      9 askama = "0.12"
     10 tokio = { version = "1", features = ["macros", "rt-multi-thread", "net"] }
     11 serde = { version = "1", features = ["derive"] }
     12 tokio-stream = { version = "0.1", features = ["sync"] }
     13 rusqlite = "0.31"
     14 argon2 = "0.5"
     15 rand = "0.8"
     16 crossbeam-channel = "0.5"