summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index c2fd8ba..618f995 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,8 +1,16 @@
[package]
name = "iec16022"
-version = "0.1.0"
+version = "0.2.0"
edition = "2024"
license = "GPL-3.0-or-later"
+[[example]]
+name = "dmtx_svg"
+required-features = ["svg"]
+
[dependencies]
libc = "0.2"
+svg = { version = "0.16", optional = true }
+
+[features]
+svg = ["dep:svg"]