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" {with-test}
24]
25url {
26 src: "https://github.com/mirage/ke/releases/download/v0.3/ke-v0.3.tbz"
27 checksum: [
28 "sha256=d0a6d4b1614cca016088482dd3b13d9d746d6d5ade5128f6e030bcdd7fc43baf"
29 "sha512=2f1b9edd5a6bf195266710d206f7062892a5244a84c378eb5423400b27af6ef662b2e18298829a8d86b17e6ed13afd8189fe02a0372579e6302895120c4e8e65"
30 ]
31}