[[bin]]
edition = "2021"
name = "main"
path = "src/main.rs"
[dependencies.genpdf]
optional = true
version = "0.2.0"
[dependencies.indexmap]
version = "2.6.0"
[dependencies.logos]
version = "0.14.2"
[dependencies.prettytable-rs]
version = "0.10.0"
[features]
csv = []
default = ["csv", "pdf", "html"]
html = []
pdf = ["genpdf"]
[lib]
name = "boolean_logic"
path = "src/lib.rs"
[package]
authors = ["Khaled Hosseini"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "propositional logic evaluator that creates truth tables for propositional expressions"
documentation = "https://docs.rs/crate/boolean-logic/"
edition = "2021"
exclude = ["test.pdf", "test.html", "test.csv", "expressions.txt"]
homepage = "https://github.com/KhaledHosseini/propositional-logic"
keywords = ["boolean-logic", "bool-logic", "propositional-logic", "boolean-expression", "truth-table"]
license = "MIT"
name = "boolean-logic"
readme = "Readme.md"
repository = "https://github.com/KhaledHosseini/propositional-logic"
version = "0.1.3"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3