-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (50 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
57 lines (50 loc) · 1.21 KB
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
[package]
name = "locknote"
version = "1.2.1"
edition = "2021"
description = "Self-contained encrypted notepad for Windows"
authors = ["Chris Tardy"]
license = "MIT"
homepage = "https://uitguard.com"
repository = "https://github.com/ctardy/LockNote"
[features]
default = ["public"]
public = []
[dependencies]
# Crypto
aes = "0.8"
cbc = { version = "0.1", features = ["alloc"] }
hmac = "0.12"
sha2 = "0.10"
argon2 = "0.5"
rand = "0.9"
zeroize = { version = "1", features = ["derive"] }
# GUI (native Windows)
native-windows-gui = "1.0"
native-windows-derive = "1.0"
# System
clipboard-win = "5"
ureq = "3"
serde_json = "1"
winreg = "0.55"
zip = { version = "2", default-features = false, features = ["deflate"] }
# Windows API
[target.'cfg(windows)'.dependencies]
windows = { version = "0.61", features = [
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_System_LibraryLoader",
"Win32_System_Threading",
"Win32_Security",
"Win32_UI_Shell",
"Win32_UI_Controls",
"Win32_Graphics_Gdi",
] }
[build-dependencies]
winres = "0.1"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"