qrcode-rust/Cargo.toml
kennytm 1d5d6f2883 Some dependencies needed the ? operator -.-.
Removed documentation, rely on docs.rs instead.
2017-01-13 11:27:57 +08:00

25 lines
507 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"
]
[dependencies]
num-traits = "0.1.33"
image = { version = "0.12.1", optional = true }
[features]
default = ["image"]
bench = []
[[bin]]
name = "qrencode"