mirror of
https://github.com/ellmau/adf-obdd.git
synced 2025-12-19 09:29:36 +01:00
* Bump serde from 1.0.141 to 1.0.144 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.141 to 1.0.144. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.141...v1.0.144) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump clap from 3.2.16 to 3.2.19 Bumps [clap](https://github.com/clap-rs/clap) from 3.2.16 to 3.2.19. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/v3.2.19/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/v3.2.16...v3.2.19) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump serde_json from 1.0.82 to 1.0.85 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.82 to 1.0.85. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.82...v1.0.85) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
1.5 KiB
TOML
41 lines
1.5 KiB
TOML
[package]
|
|
name = "adf-bdd-bin"
|
|
version = "0.3.0"
|
|
authors = ["Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>"]
|
|
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.1", path="../lib", default-features = false }
|
|
clap = {version = "3.2.19", 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", "frontend"]
|
|
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"]
|
|
frontend = ["adf_bdd/frontend"] |