forked from AbleOS/ableos
43 lines
950 B
TOML
43 lines
950 B
TOML
|
[package]
|
||
|
name = "qrcode"
|
||
|
description = "QR code encoder in Rust"
|
||
|
license = "MIT OR Apache-2.0"
|
||
|
version = "0.12.0"
|
||
|
edition = "2018"
|
||
|
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" }
|
||
|
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" }
|
||
|
|
||
|
[dependencies]
|
||
|
# checked_int_cast = "1"
|
||
|
|
||
|
|
||
|
[features]
|
||
|
default = []
|
||
|
bench = []
|
||
|
svg = []
|
||
|
|
||
|
[[bin]]
|
||
|
name = "qrencode"
|
||
|
|
||
|
[[example]]
|
||
|
name = "encode_image"
|
||
|
required-features = ["image"]
|
||
|
|
||
|
[[example]]
|
||
|
name = "encode_string"
|
||
|
|
||
|
[[example]]
|
||
|
name = "encode_svg"
|
||
|
required-features = ["svg"]
|