this repo has no description
1opam-version: "2.0" 2synopsis: "Async library for HTTP/1.1 servers" 3description: 4 "Shuttle_http is a low level library for implementing HTTP/1.1 web services in OCaml." 5maintainer: ["Anurag Soni <anurag@sonianurag.com>"] 6authors: ["Anurag Soni"] 7license: "MIT" 8tags: ["http-server" "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 "ppx_jane" {with-test} 16 "core_unix" {with-test} 17 "odoc" {with-doc} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test & os != "macos"} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/anuragsoni/shuttle.git" 34available: [ arch = "x86_64" | arch = "arm64" ] 35url { 36 src: 37 "https://github.com/anuragsoni/shuttle/releases/download/0.8.1/shuttle-0.8.1.tbz" 38 checksum: [ 39 "sha256=169edfba7a08ae202a3b8a6622cb5c6a22f627d4f09856acb0a4e0885a1ccf17" 40 "sha512=9bf8344563e7ac9ee031086fdf1e19502934073dd186869574c29a95403333264cf12a60ee8bbdc36c32800acf080126dcfe54871e601f04096ffe523352937e" 41 ] 42} 43x-commit-hash: "9aa5dba3844cb7baf71ee65b4fec84ff4488b024"