[package]
edition = "2021"
rust-version = "1.96"
name = "j2k-transcode"
version = "0.6.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JPEG to J2K and HTJ2K transcode primitives for j2k"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/frames-sg/j2k"
[package.metadata.docs.rs]
all-features = true
targets = []
[lib]
name = "j2k_transcode"
path = "src/lib.rs"
[[example]]
name = "jpeg_to_htj2k"
path = "examples/jpeg_to_htj2k.rs"
[[test]]
name = "bench_harness"
path = "tests/bench_harness.rs"
[[test]]
name = "corpus_validation"
path = "tests/corpus_validation.rs"
[[test]]
name = "dct53_1d"
path = "tests/dct53_1d.rs"
[[test]]
name = "dct53_2d"
path = "tests/dct53_2d.rs"
[[test]]
name = "dct53_multilevel"
path = "tests/dct53_multilevel.rs"
[[test]]
name = "dct97_2d"
path = "tests/dct97_2d.rs"
[[test]]
name = "error_metrics"
path = "tests/error_metrics.rs"
[[test]]
name = "jpeg_to_htj2k"
path = "tests/jpeg_to_htj2k.rs"
[[test]]
name = "resident_handoff"
path = "tests/resident_handoff.rs"
[[bench]]
name = "dct53"
path = "benches/dct53.rs"
harness = false
[dependencies.j2k]
version = "=0.6.2"
[dependencies.j2k-core]
version = "=0.6.2"
[dependencies.j2k-jpeg]
version = "=0.6.2"
[dependencies.j2k-native]
version = "=0.6.2"
[dependencies.rayon]
version = "1"
[dev-dependencies.criterion]
version = "0.8"
default-features = false
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "forbid"