wip
This commit is contained in:
parent
66b3a99814
commit
98be8dd574
13 changed files with 329 additions and 46 deletions
16
Cargo.toml
16
Cargo.toml
|
|
@ -13,11 +13,14 @@ strum_macros = "0.26"
|
|||
uuid = { version = "1.8", features = ["serde", "v4"] }
|
||||
argh = "0.1" # for CLI
|
||||
|
||||
# logging
|
||||
# Async
|
||||
tokio = { version = "1.40.0", features = ["rt-multi-thread"] }
|
||||
|
||||
# Logging
|
||||
log = "0.4"
|
||||
env_logger = "0.11"
|
||||
|
||||
# serialization
|
||||
# Serialization
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
toml = "0.8"
|
||||
|
|
@ -28,10 +31,17 @@ chrono = { version = "0.4", features = ["serde"] }
|
|||
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio", "chrono", "uuid"] }
|
||||
redis = { version = "0.27.3", default-features = false, features = ["acl"] }
|
||||
|
||||
# web
|
||||
# Web
|
||||
axum = { version = "0.7.7", features = ["json"] }
|
||||
axum-template = { version = "2.4.0", features = ["minijinja"] }
|
||||
minijinja = { version = "2.1", features = ["builtins"] }
|
||||
# to make work the static assets server
|
||||
tower-http = { version = "0.6.1", features = ["fs"] }
|
||||
|
||||
# Auth utils
|
||||
totp-rs = "5.6"
|
||||
minijinja-embed = "2.3.1"
|
||||
axum-macros = "0.4.2"
|
||||
|
||||
[build-dependencies]
|
||||
minijinja-embed = "2.3.1"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue