qrcode-rust/Cargo.toml

25 lines
540 B
TOML
Raw Normal View History

2014-08-18 14:25:40 -05:00
[package]
name = "qrcode"
2014-11-28 15:52:55 -06:00
description = "QR code encoder in Rust"
license = "MIT / Apache-2.0"
2016-07-24 05:01:00 -05:00
version = "0.2.1"
2014-08-18 14:25:40 -05:00
authors = ["kennytm <kennytm@gmail.com>"]
2014-11-28 15:52:55 -06:00
keywords = ["qrcode"]
2014-11-28 16:00:46 -06:00
repository = "https://github.com/kennytm/qrcode-rust"
readme = "README.md"
documentation = "http://kennytm.github.io/qrcode-rust/"
exclude = [
2016-07-24 05:01:00 -05:00
".travis.yml", ".gitignore", "update_doc.sh", "test-data"
]
2015-04-05 03:18:28 -05:00
[dependencies]
2016-07-24 05:01:00 -05:00
num-traits = "0.1.33"
image = { version = "0.12.1", optional = true }
2015-04-05 03:18:28 -05:00
[features]
2016-06-07 11:31:11 -05:00
default = ["image"]
bench = []
2015-04-26 10:47:27 -05:00
[[bin]]
name = "qrencode"