qrcode-rust/Cargo.toml

28 lines
566 B
TOML
Raw Normal View History

2014-08-18 19:25:40 +00:00
[package]
name = "qrcode"
2014-11-28 21:52:55 +00:00
description = "QR code encoder in Rust"
license = "MIT / Apache-2.0"
2017-05-18 13:35:01 +00:00
version = "0.3.0"
2014-08-18 19:25:40 +00:00
authors = ["kennytm <kennytm@gmail.com>"]
2014-11-28 21:52:55 +00:00
keywords = ["qrcode"]
2014-11-28 22:00:46 +00:00
repository = "https://github.com/kennytm/qrcode-rust"
readme = "README.md"
documentation = "http://docs.rs/qrcode"
exclude = [
2017-01-26 17:03:48 +00:00
".travis.yml", ".gitignore", "test-data/**"
]
2015-04-05 08:18:28 +00:00
[badges]
travis-ci = { repository = "kennytm/qrcode-rust" }
2015-04-05 08:18:28 +00:00
[dependencies]
2017-05-18 13:35:01 +00:00
num-traits = "0.1"
image = { version = "0.13", optional = true }
2015-04-05 08:18:28 +00:00
[features]
2016-06-07 16:31:11 +00:00
default = ["image"]
bench = []
2015-04-26 15:47:27 +00:00
[[bin]]
name = "qrencode"