summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorTobias Wiese <tobias@tobiaswiese.com>2026-01-27 00:31:06 +0100
committerTobias Wiese <tobias@tobiaswiese.com>2026-01-27 01:11:06 +0100
commit31f39660aa62d8e451f43bc32c994eba6e61e972 (patch)
tree79355039a5c10d8d243e668b565583ef6233980b /Cargo.toml
parent45d7335d8e18410728a0384fd6456c609aec3be8 (diff)
svg: convert data matrix to svgHEADv0.2.0master
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"]