png is a bitmap format? who knew!
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3ce512b --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "pngenc" +version = "0.1.0" +edition = "2021" +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] +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 |