The only API change affecting us is that PasswordHash moved to password_hash::phc; use the argon2 crate's top-level re-export instead. Existing argon2id hashes in password files still verify. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Kmrgkpp9YBJ6AMaWYPPZuD
17 lines
273 B
TOML
17 lines
273 B
TOML
[package]
|
|
name = "server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
common = { workspace = true }
|
|
argon2 = "0.6.0"
|
|
env_logger = "0.11.8"
|
|
log = "0.4.29"
|
|
signal-hook = "0.4"
|
|
|
|
[[bin]]
|
|
name = "saslauthd"
|
|
path = "src/main.rs"
|