this repo has no description
1opam-version: "2.0" 2synopsis: "Async library for HTTP/1.1 servers and clients" 3description: 4 "Shuttle_http is a low level library for implementing HTTP/1.1 web services and clients in OCaml." 5maintainer: ["Anurag Soni <anurag@sonianurag.com>"] 6authors: ["Anurag Soni"] 7license: "MIT" 8tags: ["http-server" "http-client" "http" "http1.1" "async"] 9homepage: "https://github.com/anuragsoni/shuttle_http" 10bug-reports: "https://github.com/anuragsoni/shuttle_http/issues" 11depends: [ 12 "dune" {>= "2.8"} 13 "async" {>= "v0.16.0" & < "v0.17.0"} 14 "async_ssl" {>= "v0.16.0"} 15 "core" {>= "v0.16.0"} 16 "jane_rope" {>= "v0.16.0"} 17 "ocaml" {>= "4.14.0"} 18 "ppx_jane" {>= "v0.16.0"} 19 "re2" {>= "v0.16.0"} 20 "core_unix" {with-test} 21 "odoc" {with-doc} 22] 23dev-repo: "git+https://github.com/anuragsoni/shuttle_http.git" 24build: [ 25 ["dune" "subst"] {dev} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 "@runtest" {with-test & os != "macos"} 35 "@doc" {with-doc} 36 ] 37] 38available: [ arch = "x86_64" | arch = "arm64" ] 39url { 40 src: 41 "https://github.com/anuragsoni/shuttle_http/releases/download/0.10.0/shuttle_http-0.10.0.tbz" 42 checksum: [ 43 "sha256=c89bfa5ca3c099e41e62c231eb6d6de096aef20f462d22c09a64908cd15fd5d2" 44 "sha512=6e4bdec3fa61c0526c3943748ce199abfb6b9a02905fdf079391a0ee6c1738fc006c33fa6f04a8ebfa4ce20b7604a729ada6b4d740182982e7623acba7726b2b" 45 ] 46} 47x-commit-hash: "10ca7aadb695b389fb8304aecce0753ece8102a4"