Resolves conflicts from merging origin/main (idfoto→relicario rename): - Kept Plan 1A's typed-item vault.rs, lib.rs, integration.rs over main's old entry-based versions - Took main's relicario_dir() fix in CLI main.rs (sed had missed idfoto_dir) - Kept Plan 1A's UnsupportedFormatVersion error variant in crypto.rs - Kept Plan 1A's opaque Decrypt message (audit M4) in error.rs - Deleted entry.rs (replaced by item.rs + typed modules in Plan 1A) - Resolved Cargo.toml description to main's "relicario password manager" Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
872 B
TOML
29 lines
872 B
TOML
[package]
|
|
name = "relicario-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Core library for relicario password manager"
|
|
|
|
[dependencies]
|
|
thiserror = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
argon2 = "0.5"
|
|
chacha20poly1305 = "0.10"
|
|
rand = "0.8"
|
|
sha2 = "0.10"
|
|
ed25519-dalek = { version = "2", features = ["rand_core"] }
|
|
image = { version = "0.25", default-features = false, features = ["jpeg"] }
|
|
|
|
# Typed-item additions
|
|
zeroize = { version = "1", features = ["zeroize_derive", "serde"] }
|
|
zxcvbn = { version = "3", default-features = false }
|
|
bip39 = { version = "2", default-features = false, features = ["std"] }
|
|
unicode-normalization = "0.1"
|
|
chrono = { version = "0.4", default-features = false, features = ["serde", "clock", "wasmbind"] }
|
|
hex = "0.4"
|
|
url = { version = "2", features = ["serde"] }
|
|
getrandom = "0.2"
|
|
|
|
[dev-dependencies]
|