Bump core/cli/wasm 0.7.0 -> 0.8.0; finalize CHANGELOG v0.8.0 header. Git-native multi-user org vaults (core org module + ECIES X25519 wrap, server signature-verifying pre-receive hook, CLI admin + item CRUD); 332/0 workspace tests. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01RXpTHcQzw1n8qjYwZqruzQ
42 lines
1.0 KiB
TOML
42 lines
1.0 KiB
TOML
[package]
|
|
name = "relicario-cli"
|
|
version = "0.8.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"] }
|
|
ssh-key = { version = "0.6", features = ["ed25519", "std"] }
|
|
regex = "1"
|
|
tempfile = "3"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2"
|
|
predicates = "3"
|
|
serde_json = "1"
|
|
ed25519-dalek = "2"
|