Completes the extension restructure begun in v0.6.0. Phases 3 (setup wizard SW migration + step registry), 4 (vault.ts split + vault_locked lift), and 6 (get_vault_status + sidebar status indicator) all merged to main (9df2fee,3b8368d,397cc78) via three parallel worktree streams. This commit is the release-prep wrap-up: - Version bump to v0.7.0 across the three relicario crates + Cargo.lock, extension/package.json, and both extension manifests (the manifests had lagged at 0.5.0 — corrected here). - CHANGELOG.md v0.7.0 entry. - STATUS.md: extension restructure moved to shipped; Phases 3/4/6 landing section added. - ROADMAP.md: v0.7.0 row added; Up-next now command palette. - extension/ARCHITECTURE.md: all three phases integrated (new vault-* modules, setup-steps.ts, get_vault_status protocol + status indicator, vault_locked lift, git-host sync cache). - Plan completion checkboxes ticked. Task 7.1 verification: done-criteria sweep all green; 423/423 vitest; build:all clean (only the pre-existing 4MB WASM size warning). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
39 lines
943 B
TOML
39 lines
943 B
TOML
[package]
|
|
name = "relicario-cli"
|
|
version = "0.7.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"
|