[package] name = "starbox" version = "0.3.1" authors = ["Jake Ledoux (contactjakeledoux@gmail.com)"] edition = "2018" description = "StarBox is a tiny pixel-art storage format." readme = "README.md" repository = "https://github.com/jakeledoux/starbox/" license-file = "LICENSE" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "starbox" path = "src/create.rs" required-features = ["cli", "qr"] [features] qr = ["qrcode"] cli = ["clap"] [dependencies] bincode = "1.3.3" bytes = { version = "1.0.1", features = ["serde"]} clap = { version = "3.0.0-beta.2", optional = true } exoquant = "0.2.0" flate2 = { version = "1.0.20", features = ["zlib-ng-compat"], default-features = false } image = "0.23.14" qrcode = { version = "0.12.0", optional = true } serde = { version = "1.0.127", features = ["derive"]}