foras 0.4.0

foras is a First-Order Reasoner which uses the principles of predicate logic to derive new facts, verify statements, and prove theorems from an existing knowledge base.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "foras"
version = "0.4.0"
authors = ["CryptoPatrick <cryptopatrick@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "foras is a First-Order Reasoner which uses the principles of predicate logic to derive new facts, verify statements, and prove theorems from an existing knowledge base."
homepage = "https://github.com/cryptopatrick/foras"
documentation = "https://docs.rs/foras"
readme = "README.md"
keywords = [
    "ai",
    "reasoner",
    "inference",
]
license = "MIT"
repository = "https://github.com/cryptopatrick/foras"

[lib]
name = "foras"
path = "src/lib.rs"

[[bin]]
name = "foras"
path = "src/main.rs"

[[bin]]
name = "parse_only"
path = "src/bin/parse_only.rs"

[[bin]]
name = "regression"
path = "src/bin/regression.rs"

[[bin]]
name = "regression_parallel"
path = "src/bin/regression_parallel.rs"

[[bin]]
name = "regression_worker"
path = "src/bin/regression_worker.rs"

[[bin]]
name = "test_minimal"
path = "src/bin/test_minimal.rs"

[[bin]]
name = "test_one_case"
path = "src/bin/test_one_case.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "group_theory_commutator"
path = "examples/group_theory_commutator.rs"

[[example]]
name = "pigeonhole_principle"
path = "examples/pigeonhole_principle.rs"

[[example]]
name = "propositional_logic_answer"
path = "examples/propositional_logic_answer.rs"

[[example]]
name = "robbins_algebra"
path = "examples/robbins_algebra.rs"

[[example]]
name = "zebra_puzzle"
path = "examples/zebra_puzzle.rs"

[[test]]
name = "tests"
path = "tests/test.rs"

[[test]]
name = "smoke_tests"
path = "tests/smoke_tests.rs"

[dependencies.num_cpus]
version = "1.16"

[dependencies.scryer-prolog]
version = "0.10.0"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sysinfo]
version = "0.30"

[dependencies.wait-timeout]
version = "0.2"