-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (41 loc) · 1.11 KB
/
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
42
43
44
[package]
name = "logic-rs"
version = "0.1.0"
description = "a parser of relational predicate logic and truth tree solver"
authors = ["Pedro Fanha <ixjf@outlook.com>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/ixjf/logic-rs"
readme = "README.md"
keywords = [
"logic",
"rust",
"parser",
"formulas",
"relational",
"predicate",
"first",
"order",
"first-order",
"truth-tree",
"consistency",
"formal-validity",
"validity",
"contingency",
"contradiction",
"tautology",
"pest",
"wasm"]
homepage = "https://ixjf.github.io/logic-rs/"
categories = ["Parser implementations", "Science"]
[dependencies]
pest = "2.0"
pest_derive = "2.0"
id_tree = { git = "https://github.com/ixjf/id-tree" }
serde = { version = "1.0", optional = true, features = ["derive"] }
snowflake = { version = "1.3.0" }
[features]
serde_support = ["serde", "snowflake/serde_support", "id_tree/serde_support"]
[badges]
travis-ci = { repository = "ixjf/logic-rs", branch = "master" }
codecov = { repository = "ixjf/logic-rs", branch = "master", service = "github" }