[package]
edition = "2024"
name = "sim-codec-classfile"
version = "0.1.0"
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bounded, lossless Java Virtual Machine classfile codec for SIM"
homepage = "https://github.com/sim-nest/sim-codecs"
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/sim-nest/sim-codecs"
[lib]
name = "sim_codec_classfile"
path = "src/lib.rs"
[[test]]
name = "annotations"
path = "tests/annotations.rs"
[[test]]
name = "corpus_differential"
path = "tests/corpus_differential.rs"
[[test]]
name = "edit_fidelity"
path = "tests/edit_fidelity.rs"
[[test]]
name = "index_coverage"
path = "tests/index_coverage.rs"
[[test]]
name = "instruction_decode"
path = "tests/instruction_decode.rs"
[[test]]
name = "instruction_encode"
path = "tests/instruction_encode.rs"
[[test]]
name = "opcode_fixpoint"
path = "tests/opcode_fixpoint.rs"
[[test]]
name = "recipe_conformance"
path = "tests/recipe_conformance.rs"
[[test]]
name = "structured_attributes"
path = "tests/structured_attributes.rs"
[dependencies.sim-codec]
version = "0.1.8"
[dependencies.sim-cookbook]
version = "0.2.0"
[dependencies.sim-kernel]
version = "0.2.1"
[dependencies.sim-shape]
version = "0.2.3"
[dependencies.sim-text]
version = "0.1.0"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.toml]
version = "0.8"
[build-dependencies.sim-cookbook]
version = "0.2.0"
[lints.rust]
unsafe_code = "forbid"