Rolls up four weeks of post-v0.5.0 work into one tag: - Phase 2B polish foundation + form layout (2026-05-02,5da1e52) - v0.5.1 Stream A — 3-column vault layout + toast + bottom sheet (2026-05-03,c16adc4) - v0.5.1 Stream B — left-nav settings (2026-05-03,bd6a301) - v0.5.1 Stream C — Recovery QR + setup wizard Style C (2026-05-03,934dfe0) - 1C-γ — Document item type + attachments + device registration + trash + history - Plan B refactor (Cycles 1+2) — commands/ split, prompt_or_flag, core/WASM seam - Vault-tab management surfaces revamp (2026-05-24..30) — settings split, devices fingerprint, trash countdown, history polish - Doc-structure redesign (2026-05-30) — DESIGN/CRYPTO/docs/FORMATS rename + scope headers + Next: footers - Lock-screen logo for parity with popup unlock - 17 stale tests updated to match post-Stream-B / post-revamp components Versions: relicario-{core,cli,wasm} → 0.6.0; extension/package.json → 0.6.0. relicario-server stays at 0.1.0 (separate cadence). Suite status at tag time: 371/371 extension + 281 Rust tests green. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
39 lines
943 B
TOML
39 lines
943 B
TOML
[package]
|
|
name = "relicario-cli"
|
|
version = "0.6.0"
|
|
edition = "2021"
|
|
description = "CLI for relicario password manager"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[[bin]]
|
|
name = "relicario"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
relicario-core = { path = "../relicario-core" }
|
|
clap = { version = "4", features = ["derive"] }
|
|
anyhow = "1"
|
|
rpassword = "7"
|
|
arboard = "3"
|
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
|
dirs = "5"
|
|
hex = "0.4"
|
|
rand = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
zeroize = "1"
|
|
url = "2"
|
|
data-encoding = "2"
|
|
tar = { version = "0.4", default-features = false }
|
|
clap_complete = "4"
|
|
image = { version = "0.25", default-features = false, features = ["jpeg", "png"] }
|
|
rqrr = "0.7"
|
|
reqwest = { version = "0.12", features = ["blocking", "json"] }
|
|
qrcode = { version = "0.14", features = ["svg"] }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2"
|
|
predicates = "3"
|
|
tempfile = "3"
|
|
serde_json = "1"
|