-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
71 lines (55 loc) · 1.74 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
[package]
name = "ftlman"
version = "0.4.1"
edition = "2021"
[dependencies]
env_logger = "0.11"
log = "0.4"
clap = { version = "4", features = ["derive"] }
eframe = { version = "0.29", features = ["persistence"] }
ureq = "2"
egui_dnd = "0.10"
dirs = "5"
anyhow = "1.0"
regex = "1"
lazy_static = "1"
once_cell = "1"
parking_lot = "0.12"
poll-promise = { version = "0.3" }
# For BPS patches
crc32fast = "1"
# Used to read/write SIL archives and mod files/dirs
silpkg = "0.1"
zip = "2"
walkdir = "2"
# Used in cache.rs
tempfile = "3"
# Used for persisting state and deserializing mod metadata
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
quick-xml = { version = "0.37", features = ["serialize"] }
# Localisation
fluent = "0.16"
# Used for dependency checking
semver = { version = "1", features = ["serde"] }
# This dependency could be removed but it's pretty small.
open = "5.3.1"
egui_extras = { version = "0.29.1", features = ["syntect"] }
# For loading system fonts on Linux
[target.'cfg(target_os = "linux")'.dependencies]
yeslogic-fontconfig-sys = "6"
# For loading system fonts and system language detection on Windows
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["dwrite", "winnls", "winbase", "errhandlingapi", "std"] }
[patch.crates-io]
egui = { git = "https://github.com/afishhh/egui", branch = "cache_galley_lines" }
egui_extras = { git = "https://github.com/afishhh/egui", branch = "cache_galley_lines" }
eframe = { git = "https://github.com/afishhh/egui", branch = "cache_galley_lines" }
# Speeds up testing considerably
[profile.dev]
opt-level = 2
[profile.release]
strip = "debuginfo"
lto = "thin"
[workspace]
members = ["compare_with_slipstream/normalize_xml", "windows_gui_wrapper"]