-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "biodivine-hctl-model-checker"
version = "0.3.1"
authors = ["Ondřej Huvar <[email protected]>", "Samuel Pastva <[email protected]>"]
edition = "2021"
description = "Library for symbolic HCTL model checking on partially defined Boolean networks."
documentation = "https://docs.rs/biodivine-hctl-model-checker/latest/"
homepage = "https://github.com/sybila/biodivine-hctl-model-checker"
repository = "https://github.com/sybila/biodivine-hctl-model-checker"
readme = "README.md"
keywords = ["hctl", "model-checking", "boolean-network", "symbolic", "systems-biology"]
categories = ["science", "simulation"]
license = "MIT"
exclude = ["benchmark_models", ".github", ".githooks"]
[profile.test]
opt-level = 3 # to be able to run non-trivial tests
[[bin]]
name = "hctl-model-checker"
path = "src/main.rs"
[[bin]]
name = "convert-aeon-to-bnet"
path = "src/bin/convert_aeon_to_bnet.rs"
[dependencies]
biodivine-lib-bdd = ">=0.5.22, <1.0.0"
biodivine-lib-param-bn = ">=0.5.13, <1.0.0"
clap = { version = "4.1.4", features = ["derive"] }
rand = "0.8.5"
termcolor = "1.1.2"
zip = "0.6.3"