-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 713 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (27 loc) · 713 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
[package]
name = "gateshark-tools"
version = "0.1.0"
authors = ["RoccoDev <roccodev.business@gmail.com>"]
edition = "2018"
[[bin]]
name = "cli"
path = "bin/cli/main.rs"
required-features = ["cli"]
[[bin]]
name = "gui"
path = "bin/gui/main.rs"
required-features = ["gui"]
[dependencies]
num_enum = "0.4.2"
regex = "1.3.1"
clap = {version = "2.33.0", features = ["yaml"], optional = true}
colored = {version = "1.9.0", optional = true}
orbtk = {version = "0.3.1-alpha1", optional = true}
# Current workaround until
# https://github.com/dmarcuse/rfcs/blob/master/text/0000-cargo-artifact-specific-dependencies.md
[features]
cli = ["clap", "colored"]
gui = ["orbtk"]
[profile.release]
opt-level = 'z'
lto = true