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