Init package
This commit is contained in:
commit
66b3a99814
17 changed files with 2526 additions and 0 deletions
37
Cargo.toml
Normal file
37
Cargo.toml
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
[package]
|
||||
name = "minauthator"
|
||||
description = "Identity provider and OAuth2 server for an small-scale organization."
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
# commons utils
|
||||
anyhow = "1.0"
|
||||
fully_pub = "0.1"
|
||||
argon2 = "0.5"
|
||||
strum_macros = "0.26"
|
||||
uuid = { version = "1.8", features = ["serde", "v4"] }
|
||||
argh = "0.1" # for CLI
|
||||
|
||||
# logging
|
||||
log = "0.4"
|
||||
env_logger = "0.11"
|
||||
|
||||
# serialization
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
toml = "0.8"
|
||||
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
|
||||
# DB
|
||||
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio", "chrono", "uuid"] }
|
||||
redis = { version = "0.27.3", default-features = false, features = ["acl"] }
|
||||
|
||||
# web
|
||||
axum = { version = "0.7.7", features = ["json"] }
|
||||
axum-template = { version = "2.4.0", features = ["minijinja"] }
|
||||
minijinja = { version = "2.1", features = ["builtins"] }
|
||||
|
||||
# Auth utils
|
||||
totp-rs = "5.6"
|
||||
Loading…
Add table
Add a link
Reference in a new issue