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 & < "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.6.0/routes-0.6.0.tbz" 32 checksum: [ 33 "sha256=ca9e19a6cc3c7b0a107ba65ef698080aab0e3f8193b4a98e4b8695b2a7dfd27b" 34 "sha512=a40e78e065dd2857d9df250951e240ba3dd6ed147e60ef5590a7dd3af5bc4a9bc2126b7e44ce381e93e4c318fb2e1a30657b2e2d509d89fffcbcd31731896c2a" 35 ] 36}