Some checks failed
Public Repo Readiness / Check Public Repo Readiness (push) Has been cancelled
- Extract FileStore port and InMemoryFileStore/FileStoreImpl/Reporter adapters - Add Reporter trait to notcore with TerminalReporter and JsonReporter - Refactor linker, package, status modules to use FileStore port - Add integration test suite with dotfiles fixtures - Add cross-crate integration tests - Remove ssh_rsa identity/recipient (unsupported) - Add rustqual.toml, .sccignore, notfiles.toml config files - Update CLAUDE.md, README.md, AGENTS.md with current architecture
35 lines
892 B
TOML
35 lines
892 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 }
|
|
serde = { workspace = true }
|
|
toml = { workspace = true }
|
|
x25519-dalek = { version = "2", features = ["static_secrets"] }
|
|
ed25519-dalek = "2"
|
|
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 }
|