[package] name = "qr2cairo" version = "0.1.0" authors = ["Willem Penninckx "] description = "Vector drawing of QR code using Cairo" readme = "README.md" edition = "2018" license = "MPL-2.0" keywords = [ "qr", "vector", "qrcode", "cairo" ] categories = [ "graphics", "visualization" ] repository = "https://codeberg.org/willempx/qr2cairo" [dependencies] # For dependencies on 0.x we don't really know which versions are compatible with which ones. # If we make it too narrow, `qr2cairo` does not build when people use another # crate that requires a newer version of `cairo-rs`. cairo-rs = { version = ">= 0.1.2, < 1.0.0", default-features = false } qrcode = { version = ">= 0.4.0, < 1.0.0", default-features = false } [dev-dependencies] # For the inside-the-docs example cairo-rs = { version = ">= 0.1.2, < 1.0.0", features = ["pdf"] }