# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.67.1" name = "qrcode-rs" version = "0.1.6" authors = ["houseme "] build = false exclude = [ "tests/*", ".gitignore", ] autobins = false autoexamples = false autotests = false autobenches = false description = "QR code encoder in Rust,Generate QR Code matrices and images in RAW, PNG and SVG formats." homepage = "https://houseme.github.io/qrcode-rs" documentation = "https://docs.rs/qrcode-rs/" readme = "README.md" keywords = [ "qrcode", "generate", "encoder", "image", "barcode", ] categories = [ "encoding", "multimedia::images", "multimedia::encoding", ] license = "MIT OR Apache-2.0" repository = "https://github.com/houseme/qrcode-rs" [profile.release] opt-level = 3 debug = 0 [lib] name = "qrcode_rs" path = "src/lib.rs" [[bin]] name = "qrencodes" path = "src/bin/qrencodes.rs" [[example]] name = "encode_image" path = "examples/encode_image.rs" required-features = ["image"] [[example]] name = "encode_string" path = "examples/encode_string.rs" [[example]] name = "encode_svg" path = "examples/encode_svg.rs" required-features = ["svg"] [[example]] name = "encode_unicode" path = "examples/encode_unicode.rs" [dependencies.image] version = "0.25" optional = true default-features = false [dev-dependencies.image] version = "0.25" [features] bench = [] default = [ "image", "svg", ] svg = []