smart-package-tracker 0.4.0

Generate package tracking IDs, render them as Code 128 barcodes (PNG and SVG), and read them back out of images
Documentation
# Configuration for `cargo deny check`, which enforces the licensing posture
# described in README.md: permissive only, no copyleft in the dependency graph.

[licenses]
version = 2
# Every crate in the default graph must be one of these.
allow = [
    "0BSD",
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Unicode-3.0",
    "Zlib",
]
confidence-threshold = 0.9

[bans]
# `image` pulls in a dozen codec crates, one of which (mp4parse) is MPL-2.0,
# to do what the `png` crate alone does here. Keep it out.
deny = [{ name = "image" }]
multiple-versions = "warn"

[advisories]
version = 2
yanked = "deny"

[sources]
unknown-registry = "deny"
unknown-git = "deny"