mirror of
https://github.com/ellmau/adf-obdd.git
synced 2025-12-19 09:29:36 +01:00
* Bump clap from 3.1.18 to 3.2.2 Bumps [clap](https://github.com/clap-rs/clap) from 3.1.18 to 3.2.2. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v3.1.18...clap_complete-v3.2.2) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update version to 3.2.12 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>
35 lines
1.2 KiB
TOML
35 lines
1.2 KiB
TOML
[package]
|
|
name = "adf_bdd-solver"
|
|
version = "0.2.4"
|
|
authors = ["Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
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
|
|
|
|
[[bin]]
|
|
name = "adf-bdd"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
adf_bdd = { version="0.2.4", default-features = false }
|
|
clap = {version = "3.2.12", features = [ "derive", "cargo", "env" ]}
|
|
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", "variablelist", "adf_bdd/default" ]
|
|
adhoccounting = ["adf_bdd/adhoccounting"] # count models ad-hoc - disable if counting is not needed
|
|
importexport = ["adf_bdd/importexport"]
|
|
variablelist = [ "HashSet", "adf_bdd/variablelist" ]
|
|
HashSet = ["adf_bdd/HashSet"]
|