-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
60 lines (55 loc) · 1.38 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
[package]
name = "sf-scrapbook-helper"
version = "0.2.5"
edition = "2021"
[dependencies]
ahash = "0.8"
async-compression = { version = "0.4", features = ["zlib"] }
chrono = "0.4"
clap = { version = "4.5.20", features = ["derive"] }
clap-num = "1.1.1"
fastrand = "2.1"
iced = { version = "0.12", default-features = false, features = [
"tokio",
"lazy",
"image",
"advanced",
] }
iced_aw = { version = "0.9", default-features = false, features = [
"number_input",
"icons",
"drop_down",
] }
image = { version = "0.25", default-features = false, features = [
"ico",
"webp",
] }
indicatif = "0.17.8"
log = "0.4.22"
log4rs = { version = "1.3.0" }
nohash-hasher = "0.2"
num-format = "0.4.4"
open = "5.3"
reqwest = { version = "0.12", features = ["gzip", "deflate", "brotli"] }
semver = "1.0.23"
serde = "1.0"
serde_json = "1.0"
sf-api = { git = "https://github.com/the-marenga/sf-api", rev = "7d34674" }
titlecase = "3.3"
tokio = { version = "1.41", default-features = false, features = ["fs"] }
toml = "0.8"
[profile.release]
strip = true
lto = true
opt-level = 3
codegen-units = 1
panic = "abort"
[profile.dev]
opt-level = 1
# Async decompression and iced can become very slow on low opt-levels.
# This adds a bit of compile overhead, but that time gets easily recouped
# from the async decomp, etc speedups
[profile.dev.package."*"]
opt-level = 2
[build-dependencies]
winres = "0.1"