yggdrasil/Cargo.toml
alemi 3553c7080a
fix: hash pwds
very basic but better than plaintext
2023-11-20 03:01:27 +01:00

24 lines
708 B
TOML

[package]
name = "yggdrasil-clone"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1.24.2", features = ["full"] }
sea-orm = { version = "0.10", features = [ "sqlx-postgres", "sqlx-sqlite", "runtime-tokio-rustls", "macros" ] }
axum = "0.6.2"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing-subscriber = "0.3"
rand = { version = "0.8", features = ["getrandom"]}
uuid = "1"
chrono = "0.4"
tracing = "0.1"
jwt = "0.16"
sha2 = "0.10"
hmac = "0.12"
sha256 = "1.4.0"