2023-08-11 20:45:35 +00:00
|
|
|
[package]
|
|
|
|
name = "baseauth"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tokio = { version = "1.29", features = ["macros", "rt-multi-thread", "sync"] }
|
|
|
|
anyhow = "1.0"
|
|
|
|
actix-web = "4"
|
2023-08-12 11:50:20 +00:00
|
|
|
serde = { version = "1.0.183", features = ["derive"] }
|
2023-08-12 14:55:13 +00:00
|
|
|
sqlite = "0.31.0"
|
|
|
|
libinjection = "0.3.2"
|
2023-08-12 16:35:41 +00:00
|
|
|
sha2 = "0.10.2"
|
|
|
|
pbkdf2 = { version = "0.12", features = ["simple"] }
|
|
|
|
env_logger = "0.10"
|
|
|
|
log = "0.4"
|
2023-08-13 11:03:36 +00:00
|
|
|
clap = { version = "4.3.21", features = ["derive"] }
|