[package]
edition = "2021"
name = "gateconvert"
version = "0.1.2"
authors = ["Mateusz Szpakowski"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The library to convert Gate circuit from/to foreign logic format."
documentation = "https://docs.rs/gateconvert"
readme = "README.md"
keywords = [
"gate",
"logic",
"circuit",
]
categories = [
"science",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/matszpk/gateconvert"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "gateconvert"
path = "src/lib.rs"
[[test]]
name = "aiger"
path = "tests/aiger.rs"
[[test]]
name = "blif"
path = "tests/blif.rs"
[[test]]
name = "btor2"
path = "tests/btor2.rs"
[[test]]
name = "cnf"
path = "tests/cnf.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "verilog"
path = "tests/verilog.rs"
[[test]]
name = "vhdl"
path = "tests/vhdl.rs"
[dependencies.cnfgen2]
version = "0.2.0"
[dependencies.flussab]
version = "0.3.1"
[dependencies.flussab-aiger]
version = "0.1"
[dependencies.flussab-cnf]
version = "0.3"
[dependencies.gategen2]
version = "0.1.0"
[dependencies.gateutil]
version = "0.1.0"
[dependencies.static_init]
version = "1.0"
[dependencies.thiserror]
version = "1.0"