Files
notfiles/crates/notsecrets/Cargo.toml
Joseph O'Brien d34a4f9363
Some checks failed
Public Repo Readiness / Check Public Repo Readiness (push) Has been cancelled
chore(repo): add git-cliff config, sort deps, add rust-version
- Add cliff.toml with GitHub remote wiring, issue link parsers, and
  clean group names (no sort prefixes)
- Add rust-version = "1.87.0" and codegen-units = 1 to workspace
- Sort workspace.dependencies alphabetically; add notstrap path entry
- Add CLAUDE.md preflight block; reformat workspace table to 100-col
- Delete stale brainstorm artifacts and root HANDOFF.md
2026-07-14 10:14:43 -04:00

33 lines
829 B
TOML

[package]
name = "notsecrets"
version = "0.1.0"
edition = "2024"
license.workspace = true
[dependencies]
anyhow = { workspace = true }
base64 = "0.22"
bech32 = "0.11"
chacha20poly1305 = "0.10"
curve25519-dalek = "4"
ed25519-dalek = "2"
hkdf = "0.12"
hmac = "0.12"
notcore = { workspace = true }
rand = "0.8"
rpassword = { workspace = true }
scrypt = "0.11"
serde = { workspace = true }
sha2 = "0.10"
thiserror = { workspace = true }
toml = { workspace = true }
x25519-dalek = { version = "2", features = ["static_secrets"] }
yubikey = { version = "0.8", optional = true }
[features]
default = []
yubikey = ["dep:yubikey"]
[dev-dependencies]
tempfile = { workspace = true }