[package]
edition = "2021"
name = "logician"
version = "0.1.0"
authors = ["Michael A. Kuykendall <michaelallenkuykendall@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe SMT solver driver with fluent Term API, multi-solver fallback, and process watchdog"
homepage = "https://github.com/Michael-A-Kuykendall/logician"
documentation = "https://docs.rs/logician"
readme = "README.md"
keywords = [
"smt",
"solver",
"z3",
"satisfiability",
"formal-verification",
]
categories = [
"development-tools",
"mathematics",
"science",
]
license = "MIT"
repository = "https://github.com/Michael-A-Kuykendall/logician"
[features]
default = []
tokio = ["dep:tokio"]
[lib]
name = "logician"
path = "src/lib.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[bench]]
name = "smts"
path = "benches/smts.rs"
harness = false
[dependencies.kill_tree]
version = "0.1"
[dependencies.lazy_static]
version = "1.4"
[dependencies.smallvec]
version = "1"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
optional = true
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.0"
[dev-dependencies.trybuild]
version = "1.0"