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.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.5.1/routes-0.5.1.tbz"
32 checksum: [
33 "sha256=c0e611514e2cfe8f600a2a49d04956d2e438eba984ac3beb6ed0f5a49482f970"
34 "sha512=397cc862a523debc6762a9b7fefa940582ca9a997cb46f3f067d6baf8ae4e140a6f40fa3efdb909df35a5d31b4dbd52fca6942ef32fd68c9d1c01ec5feb6256d"
35 ]
36}