labelo/p710bt/Cargo.toml

26 lines
695 B
TOML

[package]
name = "labelo_p710bt"
version = "0.1.0"
edition = "2021"
description = "a print driver for the P-Touch P710BT Label Printer"
license = "Apache-2.0 OR MIT"
documentation = "https://docs.rs/labelo_p710bt"
repository = "https://git.emunest.net/reivilibre/labelo"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rusb = { version = "0.9.2", optional = true }
bitflags = "2.3.3"
eyre = "0.6.8"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
num-traits = "0.2.15"
num-derive = "0.3.3"
image = { version = "0.24.6", features = ["png"] }
[features]
usb = ["rusb"]
default = ["usb"]