-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 717 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (31 loc) · 717 Bytes
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
[package]
name = "bitmap-to-png"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib"]
[dependencies]
image = { version = "0.25.10", default-features = false, features = [
"bmp",
"png",
], optional = true }
oxipng = { version = "10.1.1", default-features = false, features = [
"freestanding",
], optional = true }
png = { version = "0.18.1", default-features = false, features = [
"unstable",
], optional = true }
wasm-bindgen = "0.2.125"
zune-png = { version = "0.5.2", default-features = false, features = [
# "portable-simd",
"std",
], optional = true }
[features]
default = ["png"]
[profile.release]
opt-level = 3
debug = false
strip = true
lto = true
panic = "abort"
codegen-units = 1