-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
95 lines (82 loc) · 1.87 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[package]
name = "beans-rs"
version = "1.6.0"
edition = "2021"
authors = [
"Kate Ward <kate@dariox.club>"
]
description = "Installer for Open Fortress"
repository = "https://github.com/ktwrd/beans-rs"
license = "GPL-3.0"
[dependencies]
async-recursion = "1.1.1"
async-stream = "0.3.5"
const_format = "0.2.32"
futures = "0.3.30"
futures-util = "0.3.30"
indicatif = "0.17.8"
rand = "0.8.5"
serde = { version = "1.0.202", features = ["derive"] }
serde_json = "1.0.117"
sysinfo = "0.30.12"
tar = "0.4.40"
tokio-util = { version= "0.7.11", features = ["io"] }
zstd = "0.13.1"
thiserror = "1.0.61"
include-flate = "0.3.0"
simple-home-dir = "0.3.4"
clap = { version = "4.5.4", features = ["cargo"] }
bitflags = "2.5.0"
log = "0.4.21"
lazy_static = "1.4.0"
thread-id = "4.2.1"
colored = "2.1.0"
sentry-log = "0.34.0"
chrono = "0.4.38"
fltk = { version = "1.4.32" }
fltk-theme = "0.7.2"
dark-light = "1.1.1"
image = { version = "0.25.1", features = ["png"] }
[build-dependencies]
fl2rust = "0.5.19"
[target.'cfg(target_os = "windows")'.dependencies]
winconsole = { version = "0.11.1", features = ["window"] }
winreg = "0.52.0"
dunce = "1.0.4"
[dependencies.sentry]
version = "0.34.0"
default-features = false
features = [
"backtrace",
"contexts",
"debug-images",
"panic",
"reqwest",
"rustls"
]
[dependencies.tokio]
version = "1.37.0"
features = [
"macros",
"rt-multi-thread"
]
[dependencies.reqwest]
version = "0.12.4"
features = [
"multipart",
"stream",
"json",
"rustls-tls",
"charset",
"http2",
"macos-system-configuration"
]
default-features = false
[target.'cfg(target_os = "windows")'.build-dependencies]
winres = "0.1.12"
[profile.release]
opt-level = 1
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = false