mirror of
https://github.com/bend-n/fimg.git
synced 2024-12-22 10:28:21 -06:00
24 lines
505 B
TOML
24 lines
505 B
TOML
[package]
|
|
name = "fimg"
|
|
version = "0.1.0"
|
|
authors = ["bend-n <bend.n@outlook.com>"]
|
|
license = "MIT"
|
|
edition = "2021"
|
|
description = "fast image operations"
|
|
repository = "https://github.com/bend-n/fimg"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
png = { version = "0.17", features = ["unstable"], optional = true }
|
|
|
|
[features]
|
|
save = ["png"]
|
|
default = ["save"]
|
|
|
|
[profile.release]
|
|
debug = 2
|
|
opt-level = 3
|
|
lto = "thin"
|
|
incremental = true
|