- 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
27 lines
601 B
TOML
27 lines
601 B
TOML
[package]
|
|
name = "notstrap"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license.workspace = true
|
|
description = "New-machine bootstrap orchestrator"
|
|
|
|
[[bin]]
|
|
name = "notstrap"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "notstrap"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
notcore = { workspace = true }
|
|
notfiles = { workspace = true }
|
|
notsecrets = { workspace = true }
|
|
nothooks = { workspace = true }
|
|
notnet = { workspace = true }
|
|
clap = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
which = { workspace = true }
|
|
serde = { workspace = true }
|
|
toml = { workspace = true }
|