miniweb/rear_auth/Cargo.toml

31 lines
638 B
TOML

[package]
name = "rear_auth"
version = "0.1.0"
edition = "2021"
publish = false
default-run = "rear_auth"
[lib]
name = "rear_auth"
path = "src/lib.rs"
[dependencies]
entity = { path = "../entity" }
rear = { path = "../rear" }
anyhow = "1.0.75"
axum = "0.7"
serde = { version = "1.0.188", features = ["derive"] }
tokio = { version = "1.32.0", features = ["full"] }
log = "0.4.20"
serde_json = "1.0.108"
sea-orm = { version = "0.12.10", features = [
"runtime-tokio-native-tls",
"sqlx-postgres",
] }
axum-login = "0.15.3"
axum-messages = "0.6.1"
async-trait = "0.1.80"
password-auth = "1.0.0"
thiserror = "1.0.61"
blake3 = "1.5.1"