-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (36 loc) · 1000 Bytes
/
Cargo.toml
File metadata and controls
43 lines (36 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "spectre-rs"
version = "0.1.0"
edition = "2024"
authors = ["Abdulrhman Alkhodiry"]
license = "GPL-3.0-or-later"
description = "A Rust implementation of the Spectre password manager (derivative of Maarten Billemont's original work)"
homepage = "https://spectre.app"
[[bin]]
name = "spectre-cli"
path = "src/bin/main.rs"
[lib]
name = "spectre"
path = "src/lib.rs"
[dependencies]
# Cryptography
scrypt = "0.11"
hmac = "0.12"
sha2 = "0.10"
aes = "0.8"
cbc = "0.1"
rand = "0.8"
getrandom = { version = "0.2", features = ["js"] }
# CLI
clap = { version = "4.5", features = ["derive", "env"], optional = true }
rpassword = { version = "7.3", optional = true }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Utilities
thiserror = "1.0"
chrono = { version = "0.4", features = ["serde", "clock", "wasmbind"], default-features = false }
dirs = { version = "5.0", optional = true }
[features]
default = ["cli"]
cli = ["clap", "rpassword", "dirs"]