-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
37 lines (32 loc) · 1.17 KB
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
[package]
name = "elenchus-solver"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "Forward-pass inference interpreter for elenchus: 3-valued Kleene evaluation of the Impossible/CNF clause IR into CONFLICT / WARNING / CONSISTENT results."
readme = "README.md"
keywords = ["logic", "inference", "verification", "kleene", "no-std"]
categories = ["mathematics", "no-std", "development-tools"]
# A library, not a shipped binary — excluded from cargo-dist releases.
[package.metadata.dist]
dist = false
[dependencies]
elenchus-compiler = { workspace = true }
[dev-dependencies]
insta = { workspace = true }
proptest = { workspace = true }
serde_json = { workspace = true }
criterion = { workspace = true }
[features]
default = ["std"]
# Propagates std to the compiler (enables FileResolver-based verification).
std = ["elenchus-compiler/std"]
# Wall-clock benchmarks: informational, run locally (or via the `benchmark` PR
# label) — never a CI gate; the honest cross-hardware gates are the counter
# tests in tests/perf_gates.rs.
[[bench]]
name = "sat"
harness = false