mirror of
https://github.com/ellmau/adf-obdd.git
synced 2025-12-19 09:29:36 +01:00
Split lib and bin into two directories * modified workflow, readmes, documentation, ... * excluded flake.lock from the package * SET new patch version
29 lines
970 B
TOML
29 lines
970 B
TOML
[package]
|
|
name = "adf_bdd"
|
|
version = "0.2.1"
|
|
authors = ["Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-only"
|
|
exclude = ["res/", "./flake*", "*.nix", ".envrc", "_config.yml"]
|
|
description = "Solver for ADFs grounded, complete, and stable semantics by utilising OBDDs - ordered binary decision diagrams"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
adf_bdd = { git = "https://github.com/ellmau/adf-obdd", branch = "main" }
|
|
clap = "2.33.*"
|
|
structopt = "0.3.25"
|
|
log = { version = "0.4", features = [ "max_level_trace", "release_max_level_info" ] }
|
|
serde = { version = "1.0", features = ["derive","rc"] }
|
|
serde_json = "1.0"
|
|
env_logger = "0.9"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0"
|
|
predicates = "2.1"
|
|
assert_fs = "1.0"
|
|
|
|
[features]
|
|
default = ["adhoccounting"]
|
|
adhoccounting = [] # count models ad-hoc - disable if counting is not needed
|
|
importexport = [] |