16 lines
363 B
TOML
16 lines
363 B
TOML
[package]
|
|
name = "auth"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
jsonwebtoken = "9.3"
|
|
argon2 = "0.5"
|
|
rand_core = { version = "0.6", features = ["std"] }
|
|
serde = { workspace = true }
|
|
tracing = { workspace = true }
|
|
chrono = { workspace = true }
|
|
uuid = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
axum = { workspace = true }
|
|
db = { path = "../db" }
|