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" 10doc: "https://anuragsoni.github.io/shuttle/" 11bug-reports: "https://github.com/anuragsoni/shuttle/issues" 12depends: [ 13 "dune" {>= "2.8"} 14 "shuttle" {= version} 15 "shuttle_ssl" {= version} 16 "re2" {>= "v0.15.0"} 17 "ppx_jane" {with-test} 18 "core_unix" {with-test} 19 "odoc" {with-doc} 20] 21dev-repo: "git+https://github.com/anuragsoni/shuttle.git" 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test & os != "macos"} 33 "@doc" {with-doc} 34 ] 35] 36available: [ arch = "x86_64" | arch = "arm64" ] 37url { 38 src: 39 "https://github.com/anuragsoni/shuttle/releases/download/0.9.1/shuttle-0.9.1.tbz" 40 checksum: [ 41 "sha256=d89447a79fc5edce56f56fe5ce69329471d03340b2976554f0e11d6d9525cf7b" 42 "sha512=5d687d027a6dfeeee39060cb8e9df68869a2a7fb45209221c501bf45b710cf44ea551eebc8e9b480a9f0252f923dc9e6eefa312fa659f45ec7045de9d7a426a3" 43 ] 44} 45x-commit-hash: "f85e199f30fe441bc51e43eb09d9e01dcb3ef64b"