[package]
name = "labscript"
version = "0.1.0"
edition = "2021"
description = "Prescription PDF generator with e-signature and QR verification"
authors = ["Boris Djordjevic <boris@199biotechnologies.com>"]
repository = "https://github.com/199-biotechnologies/labscript-cli"
homepage = "https://github.com/199-biotechnologies/labscript-cli"
license-file = "LICENSE"
readme = "README.md"
[[bin]]
name = "labscript"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
genpdf = "0.2"
qrcode = "0.14"
uuid = { version = "1", features = ["v4"] }
sha2 = "0.10"
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"
[profile.release]
opt-level = 3
lto = true
strip = true