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
[package] name = "pngenc" version = "0.1.1" edition = "2024" description = "portable network graphics (PNG) encoding" authors = ["bend-n <[email protected]>"] license = "MIT" repository = "https://github.com/bend-n/pngenc" exclude = [".gitignore", "benches"] keywords = ["image", "format", "encoding"] categories = ["multimedia::images", "graphics", "encoding"] [dependencies] array_chunks = "1.0.0" atools = "0.1.1" crc32fast = { version = "1.4", features = ["nightly"] } simd-adler32 = "0.3.7" [dev-dependencies] png = "0.17" [profile.release] debug = 2 opt-level = 3 lto = "thin" incremental = true