this repo has no description
at main 1.1 kB view raw
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: [ "dune" "build" "-p" name "-j" jobs ] 13run-test: [ "dune" "runtest" "-p" name "-j" jobs ] 14 15depends: [ 16 "ocaml" {>= "4.03.0"} 17 "dune" {>= "1.5"} 18 "fmt" {>= "0.8.5"} 19 "bigarray-compat" 20 "alcotest" {with-test} 21 "bigstringaf" {with-test} 22] 23url { 24 src: "https://github.com/mirage/ke/releases/download/v0.4/ke-v0.4.tbz" 25 checksum: [ 26 "sha256=ddf60f66569b77c35c664087beb8934b3e43df1f70bccb6d4d02d70d8cef898d" 27 "sha512=3e4b9a30d2eb8af842b7953ba04ba64aadeafad807e098c203234924301e1b020b0fdf5f4f46e688c23058dacf5de86deae2c29e6874f4672cf990564cb9b8d3" 28 ] 29}