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] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.05"} 17 "dune" { >= "1.8" } 18 "alcotest" {with-test} 19 "mdx" { with-test & < "2.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.0/routes-0.5.0.tbz" 32 checksum: [ 33 "sha256=d209a537921c30769b8c1875d473357a88918a3289ba00bcb77d4442990ade73" 34 "sha512=3ebade912f1589c97ee88c1b1a7c8e3c38b2ac41e4e3805b34e0843460ed14779f5e584ae885638976a6d4b4d5849ccb41c6712b238990a9f358ed669971e839" 35 ] 36}