summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 618f9953bb091c6a41066b498f201ddcb8a722ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "iec16022"
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"]