-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (37 loc) · 879 Bytes
/
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
[package]
name = "vault_gui"
version = "0.2.1"
edition = "2021"
authors = ["Xanthus58 <[email protected]>"]
description = "A gui frontend to manage a mock bank database"
repository = "https://github.com/Xanthus58/vault_gui"
license = "MIT"
readme = "README.md"
keywords = ["bank", "gui"]
[dependencies]
#gui frontend
eframe = "0.22.0"
egui-notify = "0.9.0"
#misc
tokio = { version = "1.32.0", features = ["full"] } #Allows for aync/threading
regex = "1.9.5" #Uses this to check ip validity
config = "0.13.3" #Used for config file
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
panic = "unwind"
codegen-units = 16
lto = true
incremental = false
strip = "debuginfo"
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = true
codegen-units = 256