-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathurn.opam
32 lines (32 loc) · 841 Bytes
/
urn.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: "20231124"
synopsis: "Urn data structure for fast pure functional random sampling"
description:
"An implementation of the urn data structure described in https://dl.acm.org/doi/pdf/10.1145/3122955.3122959."
maintainer: ["[email protected]"]
authors: ["Justin Frank"]
license: "MIT"
homepage: "https://github.com/laelath/ocaml-urn"
doc: "https://laelath.github.io/ocaml-urn/urn/Urn/index.html"
bug-reports: "https://github.com/laelath/ocaml-urn/issues"
depends: [
"ocaml" {>= "4.12"}
"dune" {>= "3.11"}
"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/laelath/ocaml-urn.git"