qrcode-rust/Cargo.toml

28 lines
568 B
TOML

[package]
name = "qrcode"
description = "QR code encoder in Rust"
license = "MIT / Apache-2.0"
version = "0.2.1"
authors = ["kennytm <kennytm@gmail.com>"]
keywords = ["qrcode"]
repository = "https://github.com/kennytm/qrcode-rust"
readme = "README.md"
documentation = "http://docs.rs/qrcode"
exclude = [
".travis.yml", ".gitignore", "test-data"
]
[badges]
travis-ci = { repository = "kennytm/qrcode-rust" }
[dependencies]
num-traits = "0.1.33"
image = { version = "0.12.2", optional = true }
[features]
default = ["image"]
bench = []
[[bin]]
name = "qrencode"