-
Notifications
You must be signed in to change notification settings - Fork 0
/
combinat.opam
37 lines (37 loc) · 1 KB
/
combinat.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
29
30
31
32
33
34
35
36
37
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Fast combinatorics for OCaml"
description: """
combinat provides fast iterators over combinatorial objects such as
permutations, combinations, and integer partitions."""
maintainer: ["Jack Feser <[email protected]>"]
authors: ["Jack Feser <[email protected]>"]
license: "MIT"
homepage: "https://github.com/jfeser/combinat"
doc: "https://jfeser.github.io/combinat/combinat/index.html"
bug-reports: "https://github.com/jfeser/combinat/issues"
depends: [
"ocaml" {>= "4.08"}
"dune" {>= "2.7"}
"core" {with-test & >= "v0.15"}
"expect_test_helpers_core" {with-test & >= "v0.15"}
"ppx_jane" {with-test & >= "v0.15"}
"core_bench" {with-test & >= "v0.15"}
"core_unix" {with-test & >= "v0.15"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/jfeser/combinat.git"