-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
33 lines (29 loc) · 1.06 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-lib-bdd"
version = "0.5.22"
authors = ["Samuel Pastva <[email protected]>"]
edition = "2021"
description = "A simple thread-safe implementation of basic binary decision diagrams."
homepage = "https://github.com/sybila/biodivine-lib-bdd"
repository = "https://github.com/sybila/biodivine-lib-bdd"
readme = "README.md"
keywords = ["bdd", "boolean-expression", "symbolic"]
categories = ["data-structures", "mathematics", "science"]
license = "MIT"
# Don't publish the test data with the package.
exclude = [ "res/test_expressions/*", "res/test_results/*" ]
[badges]
travis-ci = { repository = "sybila/biodivine-lib-bdd" }
codecov = { repository = "sybila/biodivine-lib-bdd" }
maintenance = { status = "actively-developed" }
[dependencies]
fxhash = "0.2.1"
rand = "0.8.5"
num-bigint = "0.4.6"
serde = { version = "1.0", optional = true, features = ["derive"] }
# Enable rich docs for some online docs autogen services.
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "./res/docs-head.html"]
[features]
default = []
serde = ["dep:serde"]