-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (32 loc) · 847 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
[package]
name = "paradoxmerger"
version = "0.4.0"
authors = ["Parker Okonek <parkerokonek@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
unidiff = "0.3"
toml = "0.5"
zip = "0.6.3"
clap = {version = "4", optional = true}
serde = {version = "1.0", features = ["derive"]}
regex = "1"
encoding = "0.2"
diff_match_patch = "0.1"
lazy_static = "1.4"
directories = "4.0"
linked-hash-map = "0.5"
serde_json = "1.0"
vgtk = {version = "0.3", optional = true}
pretty_env_logger = {version = "0.4", optional = true}
fxhash = "0.2"
async-std = "1.6"
[features]
command-line = ["clap"]
gui-interface= ["vgtk","pretty_env_logger"]
[[bin]]
name = "merger-cli"
required-features = ["command-line"]
[[bin]]
name = "merger-gui"
required-features = ["gui-interface"]