-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbimap.opam
32 lines (32 loc) · 838 Bytes
/
bimap.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "20201231"
synopsis: "An OCaml library implementing bi-directional maps and multi-maps"
description:
"Bi-directional maps permit clients to not only obtain a value provided a key, but to obtain a key provided a value"
maintainer: ["papatangonyc@gmail.com"]
authors: ["papatangonyc@gmail.com"]
license: "GPLv3"
homepage: "https://github.com/pat227/bimap"
bug-reports: "https://github.com/pat227/bimap/issues"
depends: [
"ocaml" {>= "4.06.0"}
"core" {>= "v0.11.3"}
"dune" {>= "2.0"}
"ounit2" {with-test & >= "2.2.2"}
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/pat227/bimap.git"