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"} 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 "alcotest" {with-test} 35] 36url { 37 src: 38 "https://github.com/rgrinberg/opium/releases/download/v0.17.1/opium-v0.17.1.tbz" 39 checksum: [ 40 "sha256=9ea075db6b2eedf54e8d420b155b740c3aae80f1cf015ed8141bb1c97eae6ad4" 41 "md5=37bc9bffd5fad51a343b7ff202df637b" 42 ] 43}