Extension-only patch: fixes vault create/attach in the browser extension, where chrome.runtime.sendMessage silently dropped ArrayBuffer payloads (carrier JPEG → 0 bytes → opaque "no SOF marker found in JPEG"). See CHANGELOG for the full set. - Version bumps: extension 0.7.0→0.8.2 (it had no changes in 0.8.0/0.8.1); relicario-core/-cli/-wasm 0.8.1→0.8.2 for unified-tag consistency. The Rust core/CLI are functionally unchanged from v0.8.1. relicario-server stays 0.1.1 (independent version line; no functional change). - CHANGELOG.md: v0.8.2 section. STATUS.md / ROADMAP.md: v0.8.2 landed, v0.9.0 flagged as ready to kick off. Verify: cargo build/test/clippy -D warnings all green (35 test binaries); extension 435/435 vitest, build:all clean. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Pe8qw5KePDqAEBsAxnVQuJ
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "relicario-core"
|
|
version = "0.8.2"
|
|
edition = "2021"
|
|
description = "Core library for relicario password manager"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
thiserror = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
argon2 = "0.5"
|
|
chacha20poly1305 = "0.10"
|
|
rand = "0.8"
|
|
sha2 = "0.10"
|
|
sha1 = "0.10"
|
|
hmac = "0.12"
|
|
ed25519-dalek = { version = "2", features = ["rand_core"] }
|
|
x25519-dalek = { version = "2", features = ["static_secrets"] }
|
|
ssh-key = { version = "0.6", features = ["ed25519", "std"] }
|
|
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"
|
|
zstd = { version = "0.13", default-features = false }
|
|
tar = { version = "0.4", default-features = false }
|
|
base64 = "0.22"
|
|
csv = "1"
|
|
qrcode = { version = "0.14", default-features = false, features = ["svg"] }
|
|
|
|
[dev-dependencies]
|