this repo has no description
1opam-version: "2.0"
2maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
3authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
4homepage: "https://github.com/mirage/ke"
5bug-reports: "https://github.com/mirage/ke/issues"
6dev-repo: "git+https://github.com/mirage/ke.git"
7doc: "https://mirage.github.io/ke/"
8license: "MIT"
9synopsis: "Queue implementation"
10description: """Queue implementation in OCaml (functional and imperative queue)"""
11
12build: [
13 [ "dune" "subst" ] {dev}
14 [ "dune" "build" "-p" name "-j" jobs ]
15 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
16]
17
18depends: [
19 "ocaml" {>= "4.03.0"}
20 "dune" {>= "1.5"}
21 "fmt" {>= "0.8.5"}
22 "alcotest" {with-test}
23 "bigstringaf"
24]
25url {
26 src: "https://github.com/mirage/ke/releases/download/v0.2/ke-v0.2.tbz"
27 checksum: [
28 "sha256=e30a31f55c81f2daec50fc3dc0e11a3bb1bf37141f086862947d8ba07c787db7"
29 "md5=52fe2b8cf16b420425447203dd336d04"
30 ]
31}