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" {>= "3.1"} 13 "async" {>= "v0.17.0"} 14 "async_log" {>= "v0.17.0"} 15 "async_ssl" {>= "v0.17.0"} 16 "core" {>= "v0.17.0"} 17 "jane_rope" {>= "v0.17.0"} 18 "ocaml" {>= "5.1.0"} 19 "ppx_jane" {>= "v0.17.0"} 20 "re2" {>= "v0.17.0"} 21 "core_unix" {with-test} 22 "odoc" {with-doc} 23] 24dev-repo: "git+https://github.com/anuragsoni/shuttle_http.git" 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@runtest" {with-test & os != "macos"} 36 "@doc" {with-doc} 37 ] 38] 39available: [ arch = "x86_64" | arch = "arm64" ] 40url { 41 src: 42 "https://github.com/anuragsoni/shuttle_http/releases/download/0.12.0/shuttle_http-0.12.0.tbz" 43 checksum: [ 44 "sha256=073651dfcbe88a29856ae9568583ecece3df659aa74470ca92671e388ccc9351" 45 "sha512=78a8f4517238a7332cf5211f250aa031a3f64fcdf3617c23f072183bbbd9535e295cdef9551d24e4451ef674e0ce6845296960f66ca9c28b81430f4cf0dda563" 46 ] 47} 48x-commit-hash: "b7f2b7b1f7f018d58ae5b898293043dd77314b43"