[package]
edition = "2024"
name = "chipi-core"
version = "0.9.1"
authors = ["Luca Marcelli <contact@layle.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for chipi: parser, IR, and code generation backends for instruction decoder generation"
homepage = "https://github.com/ioncodes/chipi"
readme = "README.md"
keywords = [
"decoder",
"instruction-set",
"code-generation",
"dsl",
"disassembler",
]
categories = [
"development-tools",
"development-tools::build-utils",
]
license = "MIT"
repository = "https://github.com/ioncodes/chipi"
[lib]
name = "chipi_core"
path = "src/lib.rs"
[[test]]
name = "bindings_e2e_test"
path = "tests/bindings_e2e_test.rs"
[[test]]
name = "bindings_flat_dispatch_test"
path = "tests/bindings_flat_dispatch_test.rs"
[[test]]
name = "bindings_parser_test"
path = "tests/bindings_parser_test.rs"
[[test]]
name = "bindings_validate_test"
path = "tests/bindings_validate_test.rs"
[[test]]
name = "pattern_precedence_test"
path = "tests/pattern_precedence_test.rs"
[[test]]
name = "variable_length_test"
path = "tests/variable_length_test.rs"
[dependencies]