forked from sybila/biodivine-lib-bdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (23 loc) · 856 Bytes
/
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
[package]
name = "biodivine-lib-bdd"
version = "0.4.2"
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"
[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.3"
# Enable rich docs for some online docs autogen services.
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "./res/docs-head.html"]