[package] name = "adf-bdd-bin" version = "0.3.0" authors = ["Stefan Ellmauthaler "] edition = "2021" homepage = "https://ellmau.github.io/adf-obdd" repository = "https://github.com/ellmau/adf-obdd" license = "MIT" exclude = ["res/", "./flake*", "*.nix", ".envrc", "_config.yml", "tarpaulin-report.*", "*~"] 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.3.0", path="../lib", 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" strum = { version = "0.24" } crossbeam-channel = "0.5" [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"] adhoccountmodels = ["adf_bdd/adhoccountmodels"] benchmark = ["adf_bdd/benchmark"]