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.0/shuttle-0.9.0.tbz" 40 checksum: [ 41 "sha256=fd61626c46dcbd63449746b55e1b0821119e5215c6b32330f9671fbb306812ef" 42 "sha512=f06946e9271acd8df613385f7b94facb3d807b031c7eb21fac30886db0f45d8615b6eb71132455008b746513de3590d77890518e0c1a2672f1434cd9c1d97f67" 43 ] 44} 45x-commit-hash: "bfc5f14556548fdccc628778afdcaeb06d491a92"