Initial commit

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-06-04 22:50:18 +01:00
commit ec7055d5ff
22 changed files with 5558 additions and 0 deletions

31
Cargo.toml Normal file
View File

@@ -0,0 +1,31 @@
[package]
name = "glyph"
version = "0.1.0"
edition = "2024"
description = "An Authelia user file database manager"
authors = [
"Nikolaos Karaolidis <nick@karaolidis.com>",
]
[profile.release]
panic = 'abort'
strip = true
lto = true
codegen-units = 1
[dependencies]
argon2 = "0.5.3"
async-session = "3.0.0"
axum = { version = "0.8.4", features = ["macros"] }
axum-extra = { version = "0.10.1", features = ["typed-header"] }
clap = { version = "4.5.39", features = ["derive"] }
log = "0.4.27"
log4rs = "1.3.0"
non-empty-string = { version = "0.2.6", features = ["serde"] }
openidconnect = { version = "4.0.0", features = ["reqwest"] }
passwords = "3.1.16"
redis = { version = "0.31.0", features = ["tokio-comp"] }
serde = "1.0.219"
serde_json = "1.0.140"
serde_yaml = "0.9.34"
tokio = { version = "1.45.1", features = ["rt-multi-thread", "process"] }