# 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 = "2018" name = "qr_code" version = "2.0.0" authors = [ "kennytm ", "Riccardo Casatta ", ] exclude = [ ".github", ".gitignore", ".idea", ] description = "QR code encoder in Rust, support structured append (data in multiple qrcodes)" documentation = "http://docs.rs/qr_code" readme = "README.md" keywords = ["qrcode"] license = "MIT OR Apache-2.0" repository = "https://github.com/RCasatta/qr_code" [package.metadata.docs.rs] features = [ "bmp", "decode", ] rustdoc-args = [ "--cfg", "docsrs", ] [[example]] name = "encode_string" [[example]] name = "encode_bmp" required-features = ["bmp"] [[example]] name = "decode_bmp" required-features = [ "bmp", "decode", ] [dependencies.arbitrary] version = "0.4.7" features = ["derive"] optional = true default-features = false [dependencies.bmp-monochrome] version = "1.0.0" optional = true default-features = false [dependencies.g2p] version = "0.4" optional = true default-features = false [dev-dependencies.hex] version = "0.4.2" [dev-dependencies.rand] version = "0.7.3" [features] bmp = ["bmp-monochrome"] decode = ["g2p"] fuzz = ["arbitrary"]