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] 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://github.com/rgrinberg/opium.git" 36x-commit-hash: "980105d5925a742fbf7e46ba68acf8e1c43f6ea2" 37url { 38 src: 39 "https://github.com/rgrinberg/opium/releases/download/0.19.0/opium-testing-0.19.0.tbz" 40 checksum: [ 41 "sha256=483f6c60c5e31c2b9fc836a9da14a8693a38b725aa164732bdb2be71fe5754d5" 42 "sha512=b19588173126bc8bd5823f1a6e94a1c3c2ce1abcf1defb3ff8ce0a613e22492160feaeb4e22d01044cac409077b863d1ebd1445e103f6602f45e56f51bb567a0" 43 ] 44}