this repo has no description
1opam-version: "2.0" 2synopsis: "Simple http server" 3description: "Simple http server built on httpaf and lwt" 4maintainer: "Shawn McGinty <loltempast@gmail.com>" 5authors: [ "Shawn McGinty <loltempast@gmail.com>" ] 6license: "MIT" 7homepage: "https://github.com/shawn-mcginty/naboris" 8bug-reports: "https://github.com/shawn-mcginty/naboris/issues" 9dev-repo: "git+https://github.com/shawn-mcginty/naboris.git" 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13] 14depends: [ 15 "ocaml" {>= "4.07"} 16 "base64" {>= "3.4.0"} 17 "dune" {>= "1.6"} 18 "digestif" {>= "0.8.0"} 19 "reason" {>= "3.4.0"} 20 "httpaf" {>= "0.6.0"} 21 "httpaf-lwt-unix" {>= "0.6.0"} 22 "lwt" {>= "5.1.1"} 23 "lwt_ppx" {>= "2.0.1"} 24 "uri" {>= "2.2.0"} 25 "re" 26] 27depopts: [ 28 "conf-libev" 29] 30url { 31 src: "https://github.com/shawn-mcginty/naboris/archive/0.1.3.tar.gz" 32 checksum: [ 33 "md5=f7d1c959627f93fdcf9fd0c346edb9c9" 34 "sha512=344a03d18170368a3fedcc595f6cc103fe47449a77a9923ab58a7d20d8d291edfda624d27bbfd8dc05d9af33a797064efcbeb52a4f9ea57fa862ebd39b97cfa1" 35 ] 36}