this repo has no description
1opam-version: "2.0"
2maintainer: "David Kaloper Meršinjak <dk505@cam.ac.uk>"
3authors: ["David Kaloper Meršinjak <dk505@cam.ac.uk>"]
4homepage: "https://github.com/pqwy/psq"
5doc: "https://pqwy.github.io/psq/doc"
6license: "ISC"
7dev-repo: "git+https://github.com/pqwy/psq.git"
8bug-reports: "https://github.com/pqwy/psq/issues"
9synopsis: "Functional Priority Search Queues"
10build: [ [ "dune" "subst" ] {dev}
11 [ "dune" "build" "-p" name "-j" jobs ]
12 [ "dune" "runtest" "-p" name ] {with-test & ocaml:version >= "4.07.0"} ]
13depends: [
14 "ocaml" {>="4.03.0"}
15 "dune" {>= "1.7"}
16 "seq"
17 "qcheck-core" {with-test}
18 "qcheck-alcotest" {with-test}
19 "alcotest" {with-test}
20]
21description: """
22Typical applications are searches, schedulers and caches. If you ever scratched
23your head because that A* didn't look quite right, a PSQ is what you needed.
24"""
25url {
26 src: "https://github.com/pqwy/psq/releases/download/v0.2.0/psq-v0.2.0.tbz"
27 checksum: [
28 "sha256=d3cefdf6ab17e6025e7246765acbe86109156ab024bf9bd98353e713f0c494c8"
29 "md5=b94fb15f8878172bf58446b7d0fb7c1e"
30 ]
31}