-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
94 lines (83 loc) · 2.43 KB
/
Cargo.toml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[package]
name = "vault"
version = "1.0.0-beta4"
edition = "2021"
authors = [
"Dominik Wilkowski <[email protected]>",
"Joshua Padman <[email protected]>",
]
license = "GPL-3.0-or-later"
description = "A password manager GUI for your offline passwords"
homepage = "https://github.com/dominikwilkowski/vault"
repository = "https://github.com/dominikwilkowski/vault"
documentation = "https://docs.rs/vault/"
keywords = ["macos", "linux", "windows", "vault", "passwords"]
categories = ["cryptography", "database", "gui"]
build = "build.rs"
rust-version = "1.80"
[target.'cfg(windows)'.build-dependencies]
embed-resource = "2.4.2"
[dependencies]
anyhow = "1.0"
base64 = "0.22"
chrono = "0.4"
crypto-common = "0.1"
im = "15.1"
thiserror = "1.0"
toml = "0.8"
url-escape = "0.1"
webbrowser = "1.0"
zeroize = "1.7"
sha2 = "0.10"
dirs = "5.0"
[dependencies.rand]
version = "0.8"
features = ["getrandom"]
[dependencies.image]
version = "0.25"
default-features = false
[dependencies.aes-gcm-siv]
version = "0.11"
features = ["std"]
[dependencies.argon2]
version = "0.5"
features = ["std", "zeroize"]
[dependencies.floem]
features = ["editor", "rfd-async-std"]
git = "https://github.com/lapce/floem.git"
rev = "259b23dc0accd5c46c03116d6ac47453769f1f42"
[dependencies.parking_lot]
version = "0.12"
features = ["deadlock_detection", "hardware-lock-elision"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies]
[package.metadata.bundle]
name = "Vault"
identifier = "com.rustyvault.passwordmanager"
icon = [
"assets/16x16.png",
"assets/[email protected]",
"assets/32x32.png",
"assets/[email protected]",
"assets/64x64.png",
# "assets/[email protected]", # I don't know why but this line causes: "error: Failed to create app icon. Caused by: No matching IconType"
"assets/128x128.png",
"assets/[email protected]",
"assets/256x256.png",
"assets/[email protected]",
"assets/512x512.png",
"assets/[email protected]",
]
version = "1.0.0"
copyright = "Copyright (c) Dominik Wilkowski, Joshua Padman 2024. All rights reserved."
category = "public.app-category.productivity"
short_description = "A password manager GUI written in rust"
long_description = """
Discover this open source multi-platform password manager, crafted in Rust for
top performance. It stays on your computer, featuring a heavily encrypted
database that's easily accessible and boasts a user-friendly interface.
"""
osx_url_schemes = ["com.rustyvault.passwordmanager"]
osx_minimum_system_version = "11"