fast image operations
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml23
1 files changed, 23 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..1c85e52
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,23 @@
+[package]
+name = "fimg"
+version = "0.1.0"
+authors = ["bend-n <[email protected]>"]
+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