this repo has no description
1opam-version: "2.0" 2maintainer: "rudi.grinberg@gmail.com" 3authors: ["Rudi Grinberg"] 4license: "MIT" 5 6homepage: "https://github.com/rgrinberg/opium" 7bug-reports: "https://github.com/rgrinberg/opium/issues" 8dev-repo: "git+https://github.com/rgrinberg/opium.git" 9synopsis: "Sinatra like web toolkit based on Lwt + Cohttp" 10description: """ 11Opium_kernel is the Unix indpendent core of Opium. Useful for extremely portable environments such as mirage. 12""" 13 14build: [ 15 ["dune" "subst"] {dev} 16 ["dune" "build" "-p" name "-j" jobs] 17 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 18] 19 20depends: [ 21 "ocaml" {>= "4.04.1"} 22 "dune" 23 "hmap" 24 "cohttp" {>= "0.99.0"} 25 "cohttp-lwt" {>= "0.99.0"} 26 "ezjsonm" {>= "0.4.0" & < "1.2.0"} 27 "base64" {>= "2.0.0" & < "3.0.0"} 28 "lwt" 29 "fieldslib" {>= "v0.9.0"} 30 "sexplib" {>= "v0.9.0"} 31 "ppx_fields_conv" {>= "v0.9.0"} 32 "ppx_sexp_conv" {>= "v0.9.0"} 33 "re" {>= "1.3.0"} 34 "uri" {<"2.0.0"} 35 "alcotest" {with-test} 36 "cow" {with-test & >= "0.10.0"} 37] 38url { 39 src: 40 "https://github.com/rgrinberg/opium/releases/download/v0.17.0/opium-v0.17.0.tbz" 41 checksum: [ 42 "sha256=b276cd222d959f5337ff8487d09ba6adf3b4d0746bed690d0d8ac71faae4789f" 43 "md5=c5b1d4e885f6b7d9a0c44d59f59242fc" 44 ] 45}