this repo has no description
1opam-version: "2.0" 2synopsis: "Minimalist framework to build extensible HTTP servers and clients" 3description: 4 "Rock is a Unix indpendent API to build extensible HTTP servers and clients. It provides building blocks such as middlewares and handlers (a.k.a controllers)." 5maintainer: ["Rudi Grinberg <me@rgrinberg.com>"] 6authors: ["Rudi Grinberg" "Anurag Soni" "Thibaut Mattio"] 7license: "MIT" 8homepage: "https://github.com/rgrinberg/opium" 9doc: "https://rgrinberg.github.io/opium/" 10bug-reports: "https://github.com/rgrinberg/opium/issues" 11depends: [ 12 "dune" {>= "2.0"} 13 "ocaml" {>= "4.08"} 14 "lwt" {>= "5.3.0"} 15 "bigstringaf" {>= "0.5.0"} 16 "hmap" 17 "httpaf" {>= "0.6.0"} 18 "lwt" 19 "sexplib0" 20 "odoc" {with-doc} 21] 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35] 36dev-repo: "git+https://github.com/rgrinberg/opium.git" 37x-commit-hash: "5e3d601a3ef7b9fdbcc7ea93fd698b6adc2a45c5" 38url { 39 src: 40 "https://github.com/rgrinberg/opium/releases/download/0.20.0/opium-0.20.0.tbz" 41 checksum: [ 42 "sha256=326b91866de90baf535f8b7d4b2ff23e39d952e573c04b3c13f1054b59ff2fb6" 43 "sha512=59b83e7c8fe5f7ae328fb7f2343fe5b8fb735e8f6ee263cfd6c75bb179688ef7cf2b4586b35a2231ed3f3c1ada543021b7a4759326ae095eb77a5f38b9fa3a8a" 44 ] 45}