[package]
edition = "2021"
rust-version = "1.56.0"
name = "justbig2"
version = "0.1.2"
authors = ["Ki Hyun Park <justkihyun1998@gmail.com>"]
build = false
exclude = [
"vendor/",
"benches/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust JBIG2 image decoder with no_std support"
readme = "README.md"
keywords = [
"jbig2",
"image",
"decoder",
"pdf",
"codec",
]
categories = [
"encoding",
"no-std",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kihyun1998/justbig2"
[features]
default = ["std"]
std = []
[lib]
name = "justbig2"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]