-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 956 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "boolean-logic"
version = "0.1.3"
edition = "2021"
authors = ["Khaled Hosseini"]
homepage = "https://github.com/KhaledHosseini/propositional-logic"
repository = "https://github.com/KhaledHosseini/propositional-logic"
documentation = "https://docs.rs/crate/boolean-logic/"
description = "propositional logic evaluator that creates truth tables for propositional expressions"
license = "MIT"
keywords = ["boolean-logic","bool-logic", "propositional-logic", "boolean-expression", "truth-table"]
readme = "Readme.md"
exclude = [
"test.pdf","test.html","test.csv","expressions.txt"
]
[[bin]]
name = "main"
edition = "2021"
path = "src/main.rs"
[lib]
name = "boolean_logic"
[features]
default = ["csv","pdf","html"]
pdf = ["genpdf"]
csv = []
html = []
[dependencies]
genpdf = {version = "0.2.0", optional = true }
indexmap = "2.6.0"
logos = "0.14.2"
prettytable-rs = "0.10.0"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3