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"
|
2016-06-07 11:30:47 -05:00
|
|
|
license = "MIT / Apache-2.0"
|
2018-10-13 13:37:49 -05:00
|
|
|
version = "0.9.0"
|
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"
|
2017-01-12 21:27:57 -06:00
|
|
|
documentation = "http://docs.rs/qrcode"
|
2015-07-04 14:54:00 -05:00
|
|
|
exclude = [
|
2017-01-26 11:03:48 -06:00
|
|
|
".travis.yml", ".gitignore", "test-data/**"
|
2015-07-04 14:54:00 -05:00
|
|
|
]
|
2015-04-05 03:18:28 -05:00
|
|
|
|
2017-01-26 11:02:34 -06:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "kennytm/qrcode-rust" }
|
2017-11-02 17:15:01 -05:00
|
|
|
coveralls = { repository = "kennytm/qrcode-rust" }
|
|
|
|
is-it-maintained-issue-resolution = { repository = "kennytm/qrcode-rust" }
|
|
|
|
is-it-maintained-open-issues = { repository = "kennytm/qrcode-rust" }
|
|
|
|
maintenance = { status = "passively-maintained" }
|
2017-01-26 11:02:34 -06:00
|
|
|
|
2015-04-05 03:18:28 -05:00
|
|
|
[dependencies]
|
2018-11-07 08:05:06 -06:00
|
|
|
image = { version = "0.20", default-features = false, optional = true }
|
2017-11-07 02:23:50 -06:00
|
|
|
checked_int_cast = "1"
|
2015-04-05 03:18:28 -05:00
|
|
|
|
2018-11-07 08:15:43 -06:00
|
|
|
[dev-dependencies]
|
|
|
|
image = "0.20"
|
|
|
|
|
2015-07-04 14:40:04 -05:00
|
|
|
[features]
|
2017-05-22 16:49:51 -05:00
|
|
|
default = ["image", "svg"]
|
2015-07-04 14:40:04 -05:00
|
|
|
bench = []
|
2017-05-22 16:49:51 -05:00
|
|
|
svg = []
|
2015-07-04 14:40:04 -05:00
|
|
|
|
2015-04-26 10:47:27 -05:00
|
|
|
[[bin]]
|
|
|
|
name = "qrencode"
|
2017-05-22 17:25:32 -05:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "encode_image"
|
|
|
|
required-features = ["image"]
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "encode_string"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "encode_svg"
|
|
|
|
required-features = ["svg"]
|