this repo has no description
1opam-version: "2.0" 2maintainer: "Anurag Soni <anurag@sonianurag.com>" 3authors: [ "Anurag Soni <anurag@sonianurag.com>" ] 4license: "BSD-3-Clause" 5homepage: "https://github.com/anuragsoni/routes" 6bug-reports: "https://github.com/anuragsoni/routes/issues" 7dev-repo: "git+https://github.com/anuragsoni/routes.git" 8doc: "https://anuragsoni.github.io/routes/" 9tags: [ "router" "http" ] 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.05"} 17 "dune" { >= "1.7" } 18 "alcotest" {with-test} 19 "mdx" { with-test & < "1.5.0" } 20] 21synopsis: "Typed routing for OCaml applications" 22description: """ 23routes provides combinators for adding typed routing 24to OCaml applications. The core library will be independent 25of any particular web framework or runtime. It does 26path based dispatch from a target url to a user 27provided handler. 28""" 29url { 30 src: 31 "https://github.com/anuragsoni/routes/releases/download/0.5.2/routes-0.5.2.tbz" 32 checksum: [ 33 "sha256=9ace01e90e633b4e228b8b05dddd06957281e602fcf17b226ae8683050097da3" 34 "sha512=b4c26b59a73fdc7436aa485a7d38ee2e989dc9d3b5a653e502e954a68c15e93f8486e22721e3a84f6730e1f8574e7a2314cfc2baf769e0f2586503067f9602cf" 35 ] 36}