summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 97dafb192077cd0c6e4239dd7843d0a143cab713 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "batacli"
version = "0.1.0"
edition = "2021"

[dependencies]
rayon = "1.11.0"
resvg = "0.44.0"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.133"
tiny-skia = "0.11.4"
usvg = "0.44.0"

[profile.release]
lto = "fat"
codegen-units = 1
strip = "symbols"

[features]
default = ["overalloc"]

# Potentially over-allocate xcursor vectors to gain performance
overalloc = []