this repo has no description
at main 947 B 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: [ 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 "bigstringaf" 23] 24url { 25 src: "https://github.com/mirage/ke/releases/download/v0.1/ke-v0.1.tbz" 26 checksum: [ 27 "sha256=fdc420a153a45bde14c0906c2cf05cbfb16cf42325597a298a811f013424846b" 28 "md5=868a790888e1bfcc4f93e4e332d49bf7" 29 ] 30}