-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split lib and bin into two directories * modified workflow, readmes, documentation, ... * excluded flake.lock from the package * SET new patch version
- Loading branch information
Showing
10 changed files
with
969 additions
and
210 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,15 @@ | ||
[package] | ||
name = "adf_bdd" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Stefan Ellmauthaler <[email protected]>"] | ||
edition = "2021" | ||
repository = "https://github.com/ellmau/adf-obdd/" | ||
license = "GPL-3.0-only" | ||
exclude = ["res/", "./flake*", "*.nix", ".envrc", "_config.yml"] | ||
exclude = ["res/", "./flake*", "flake.lock", "*.nix", ".envrc", "_config.yml"] | ||
|
||
description = "Solver for ADFs grounded, complete, and stable semantics by utilising OBDDs - ordered binary decision diagrams" | ||
description = "Library to solve grounded, complete, and stable ADF-semantics by utilising OBDDs - ordered binary decision diagrams" | ||
build = "build.rs" | ||
|
||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[[bin]] | ||
name="adf_bdd" | ||
[lib] | ||
name="adf_bdd" | ||
path = "src/lib.rs" | ||
|
@@ -26,10 +22,7 @@ edition = "2021" # The edition of the target. | |
crate-type = ["lib"] # The crate types to generate. | ||
|
||
[dependencies] | ||
clap = "2.33.*" | ||
structopt = "0.3.25" | ||
log = { version = "0.4", features = [ "max_level_trace", "release_max_level_info" ] } | ||
env_logger = "0.9" | ||
log = { version = "0.4"} | ||
nom = "7.1.0" | ||
lexical-sort = "0.3.1" | ||
serde = { version = "1.0", features = ["derive","rc"] } | ||
|
@@ -38,14 +31,13 @@ biodivine-lib-bdd = "0.3.0" | |
derivative = "2.2.0" | ||
|
||
[dev-dependencies] | ||
test-log = "0.2.*" | ||
test-log = "0.2" | ||
env_logger = "0.9" | ||
quickcheck = "1" | ||
quickcheck_macros = "1" | ||
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 = [] | ||
importexport = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.