- New crates/notnet: TailscaleOptions, ensure_connected(), auth key chain (TS_AUTHKEY env → YubiKey PIV 9d → interactive prompt), install via apt/brew/pacman or official install.sh, peer reachability verification - notsecrets: YubikeySource implementing IdentitySource, reads age key from PIV slot 9c; gated behind optional `yubikey` feature - notstrap: Tailscale step inserted between prerequisites and clone; BootstrapOptions.tailscale controls override/skip; NotstrapConfig gains optional [tailscale] section; dotfiles_repo is now Option<String> (Tailscale gitea_url takes precedence); identity chain adds YubikeySource before Bitwarden - Updated workspace Cargo.toml: notnet added to members and workspace deps - Integration tests: tailscale: Some(None) to skip Tailscale in all test opts
34 lines
872 B
TOML
34 lines
872 B
TOML
[package]
|
|
name = "notsecrets"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
notcore = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
rpassword = { workspace = true }
|
|
dirs = { workspace = true }
|
|
x25519-dalek = { version = "2", features = ["static_secrets"] }
|
|
ed25519-dalek = "2"
|
|
rsa = { version = "0.9", features = ["sha2"] }
|
|
sha2 = "0.10"
|
|
hkdf = "0.12"
|
|
chacha20poly1305 = "0.10"
|
|
scrypt = "0.11"
|
|
bech32 = "0.11"
|
|
base64 = "0.22"
|
|
hmac = "0.12"
|
|
rand = "0.8"
|
|
zeroize = "1"
|
|
curve25519-dalek = "4"
|
|
yubikey = { version = "0.8", optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
yubikey = ["dep:yubikey"]
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|