[package]
edition = "2024"
name = "nl-compiler"
version = "0.1.13"
build = false
include = [
"Cargo.toml",
"clippy.toml",
"LICENSE-MIT",
"LICENSE-APACHE",
"README.md",
"src/**/*.rs",
"tests/**/*.rs",
"examples/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AIG and Verilog frontend compilers"
homepage = "https://matth2k.github.io/safety-net/"
documentation = "https://matth2k.github.io/safety-net/"
readme = "README.md"
keywords = [
"data-structures",
"eda",
"netlist",
"circuits",
"hardware",
]
categories = [
"data-structures",
"compilers",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/matth2k/nl-compiler"
[features]
default = []
serde = ["safety-net/serde"]
[lib]
name = "nl_compiler"
path = "src/lib.rs"
[[example]]
name = "aig"
path = "examples/aig.rs"
[[example]]
name = "roundtrip"
path = "examples/roundtrip.rs"
[[test]]
name = "verilog"
path = "tests/verilog.rs"
[dependencies.flussab]
version = "0.3.1"
[dependencies.flussab-aiger]
version = "0.1.1"
[dependencies.safety-net]
version = "0.5.3"
features = ["graph"]
[dependencies.sv-parser]
version = "0.13.3"
[dependencies.thiserror]
version = "2.0.16"
[dev-dependencies.clap]
version = "4.5.31"
features = ["derive"]
[dev-dependencies.lipsum]
version = "0.9.1"
[dev-dependencies.petgraph]
version = "0.8.2"
[dev-dependencies.rand]
version = "0.8.5"
[dev-dependencies.serde]
version = "1.0.219"
features = ["derive"]