mirror of
https://github.com/Noratrieb/oh-oh.git
synced 2026-01-14 09:05:01 +01:00
28 lines
866 B
TOML
28 lines
866 B
TOML
[package]
|
|
name = "idp"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
argon2 = "0.5.3"
|
|
askama = "0.14.0"
|
|
axum = { version = "0.8.4", features = ["macros"] }
|
|
axum-extra = { version = "0.10.1", features = ["cookie"] }
|
|
base32 = "0.5.1"
|
|
base64 = "0.22.1"
|
|
color-eyre = "0.6.5"
|
|
hex = "0.4.3"
|
|
hmac = "0.12.1"
|
|
jiff = "0.2.15"
|
|
password-hash = { version = "0.5.0" }
|
|
rand_core = { version = "0.6.0", features = ["getrandom"] }
|
|
rsa = { version = "0.9.8", features = ["sha2"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
sha1 = "0.10.6"
|
|
sqlx = { version = "0.8.6", features = ["runtime-tokio", "migrate", "macros", "sqlite"] }
|
|
time = "0.3.41"
|
|
tokio = { version = "1.46.1", features = ["full"] }
|
|
tracing = { version = "0.1.41", features = ["attributes"] }
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
url = "2.5.4"
|