summaryrefslogtreecommitdiff
path: root/examples/wasm-tiny-png/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wasm-tiny-png/Cargo.toml')
-rw-r--r--examples/wasm-tiny-png/Cargo.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/wasm-tiny-png/Cargo.toml b/examples/wasm-tiny-png/Cargo.toml
new file mode 100644
index 0000000..cbbfd03
--- /dev/null
+++ b/examples/wasm-tiny-png/Cargo.toml
@@ -0,0 +1,14 @@
+[package]
+name = "wasm-tiny-png"
+version = "0.1.0"
+edition = "2021"
+
+[lib]
+crate-type = ["cdylib"]
+
+[dependencies]
+tiny-png = { path = "../..", default-features = false }
+
+[profile.release]
+opt-level = "z"
+lto = true