14 lines
316 B
TOML
14 lines
316 B
TOML
[package]
|
|
name = "dfguide-registrar"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
bcrypt = "0.16"
|
|
dialoguer = "0.12"
|
|
dotenvy = "0.15"
|
|
sqlx = { version = "0.8", features = ["postgres", "runtime-tokio-rustls"] }
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
validator = "0.20"
|