this repo has no description
1opam-version: "2.0" 2synopsis: "Parser for HTTP 1.1" 3maintainer: ["Anurag Soni <anurag@sonianurag.com>"] 4authors: ["Anurag Soni"] 5license: "MIT" 6homepage: "https://github.com/anuragsoni/h1" 7doc: "https://anuragsoni.github.io/h1" 8bug-reports: "https://github.com/anuragsoni/h1/issues" 9depends: [ 10 "dune" {>= "2.8"} 11 "ocaml" {>= "4.11.0"} 12 "cohttp" {>= "4.0.0" & < "6.0.0~~"} 13 "base_bigstring" 14 "base" {with-test} 15 "alcotest" {with-test} 16 "ppx_sexp_conv" {with-test} 17 "ppx_compare" {with-test} 18 "ppx_here" {with-test} 19 "base_quickcheck" {with-test} 20 "ppx_assert" {with-test} 21 "odoc" {with-doc} 22] 23conflicts: [ 24 "cohttp" {with-test & >= "5.0.0"} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test & cohttp:version < "5.0.0"} 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://github.com/anuragsoni/h1.git" 41x-commit-hash: "d659ad37f1222523725e8f37f6250de549f64112" 42url { 43 src: 44 "https://github.com/anuragsoni/h1/releases/download/0.0.2/h1-0.0.2.tbz" 45 checksum: [ 46 "sha256=6de8da90c7442c69d3ff2d82c393804dae4e90fe3abd963a896e825669c95dfd" 47 "sha512=496184c91b228dd19fa2074ca091b887b0d148af4207ebedfbad8b95582a600f13ba61c2c68bd316a5f74e69c1b964f5c690f5b212b29b80235e23958969c12e" 48 ] 49}