-
Notifications
You must be signed in to change notification settings - Fork 1
/
idds.opam
28 lines (28 loc) · 947 Bytes
/
idds.opam
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
["dune" "build" "-p" name "@doc"] {with-doc}
]
maintainer: ["Steffen Smolka <[email protected]>"]
authors: ["Steffen Smolka <[email protected]>"]
bug-reports: "https://github.com/netkat-lang/idds/issues"
homepage: "https://github.com/netkat-lang/idds"
doc: "https://netkat-lang.github.io/idds/"
license: "MIT"
version: "0.2"
dev-repo: "git+https://github.com/netkat-lang/idds.git"
synopsis: "Identity-suppressed decision diagrams (IDDs)"
description: "BDD and IDD implementation with hash-consing"
depends: [
"ocaml" {>= "4.04.0"}
"dune" {build & >= "1.10"}
"base" {>= "v0.12.0"}
"odoc" {with-doc}
"open" {> "0"}
"ppx_deriving" {>= "4.3"}
"ppx_inline_test" {with-test & >= "v0.12.0"}
"ppx_jane" {>= "v0.12.0"}
]