-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (28 loc) · 1 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
[package]
name = "tavern_card_tools"
version = "0.1.4"
edition = "2021"
authors = ["Barafu Albino <[email protected]>"]
[profile.release]
strip = true #Remove extra symbols
opt-level = "s" #Optimize for size
lto = true #Enable linker optimizations
codegen-units=1 #Maximise optimizations
[dependencies]
anyhow = "1.0.86"
base64 = "0.22.1"
bytes = { version = "1.6.0", features = ["serde"] }
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.9", features = ["derive", "unicode"] }
env_logger = "0.11.3"
image = {version = "0.25.1", features = ["png", "bmp", "gif", "hdr", "ico", "jpeg", "webp"], default-features = false}
log = { version = "0.4.22", features = ["serde"] }
png = "0.17.13"
reqwest = { version = "0.12.5", features = ["blocking"] }
serde = { version = "1.0.204", features = ["derive"] }
serde-transcode = "1.1.1"
serde_json = "1.0.120"
serde_path_to_error = "0.1.16"
soup = "0.5.1"
test-context = "0.3.0"
textwrap = { version = "0.16.1", features = ["terminal_size"] }