[package]
edition = "2021"
rust-version = "1.80"
name = "justjp2"
version = "0.1.1"
authors = ["Ki Hyun Park <justkihyun1998@gmail.com>"]
build = false
exclude = [
"vendor/",
"tests/fixtures/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust JPEG 2000 (JP2/J2K) encoder and decoder"
homepage = "https://github.com/kihyun1998/justjp2"
documentation = "https://docs.rs/justjp2"
readme = "README.md"
keywords = [
"jpeg2000",
"jp2",
"j2k",
"image",
"codec",
]
categories = [
"multimedia::images",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kihyun1998/justjp2"
[lib]
name = "justjp2"
path = "src/lib.rs"
[[test]]
name = "phase0_error"
path = "tests/phase0_error.rs"
[[test]]
name = "phase0_stream"
path = "tests/phase0_stream.rs"
[[test]]
name = "phase0_types"
path = "tests/phase0_types.rs"
[[test]]
name = "phase10_jp2"
path = "tests/phase10_jp2.rs"
[[test]]
name = "phase11_api"
path = "tests/phase11_api.rs"
[[test]]
name = "phase11_compat"
path = "tests/phase11_compat.rs"
[[test]]
name = "phase12_htj2k"
path = "tests/phase12_htj2k.rs"
[[test]]
name = "phase12_roi"
path = "tests/phase12_roi.rs"
[[test]]
name = "phase12_simd"
path = "tests/phase12_simd.rs"
[[test]]
name = "phase12_threads"
path = "tests/phase12_threads.rs"
[[test]]
name = "phase1_bio"
path = "tests/phase1_bio.rs"
[[test]]
name = "phase1_tgt"
path = "tests/phase1_tgt.rs"
[[test]]
name = "phase2_mqc"
path = "tests/phase2_mqc.rs"
[[test]]
name = "phase3_t1"
path = "tests/phase3_t1.rs"
[[test]]
name = "phase4_dwt"
path = "tests/phase4_dwt.rs"
[[test]]
name = "phase5_mct"
path = "tests/phase5_mct.rs"
[[test]]
name = "phase6_quantize"
path = "tests/phase6_quantize.rs"
[[test]]
name = "phase7_pi"
path = "tests/phase7_pi.rs"
[[test]]
name = "phase7_t2"
path = "tests/phase7_t2.rs"
[[test]]
name = "phase8_tcd"
path = "tests/phase8_tcd.rs"
[[test]]
name = "phase9_j2k"
path = "tests/phase9_j2k.rs"
[dependencies.bitflags]
version = "2"
[dependencies.rayon]
version = "1"