7902864a32
- Cookbook Cargo.toml: 0.1.0 → 0.2.5 - All 61 in-house crate Cargo.toml versions: 0.2.4 → 0.2.5 - os-release.in: fix URLs from github.com to gitea.redbearos.org - sync-versions.sh --check passes with zero drift The OS version is derived from the git branch name at build time. Building on branch 0.2.5 produces os-release with VERSION_ID=0.2.5.
18 lines
492 B
TOML
18 lines
492 B
TOML
[package]
|
|
name = "redbear-authd"
|
|
version = "0.2.5"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "redbear-authd"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
redbear-login-protocol = { path = "../../redbear-login-protocol/source" }
|
|
rust-argon2 = "3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
# Pure-Rust SHA-256/SHA-512 crypt verifier for /etc/shadow entries.
|
|
# Free/open-source (`MIT OR Apache-2.0` upstream; acceptable under the project's free-software policy).
|
|
sha-crypt = "0.6.0-rc.4"
|