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"]
10depends: [
11 "ocaml" {>= "4.05.0"}
12 "dune"
13 "bisect_ppx" {dev & >= "2.0.0"}
14 "alcotest" {with-test}
15]
16build: [
17 ["dune" "subst"] {dev}
18 ["dune" "build" "-p" name "-j" jobs]
19 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
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.7.2/routes-0.7.2.tbz"
32 checksum: [
33 "sha256=ff8f47367ea43879dca1f297944aeea049e31804838b41d5d01cb34b184417a2"
34 "sha512=dfa07568ba424c043a5cf9d9dc30b4e78f8f8f4549bcde082b8d5cf33885d93ab443eaefb9127b50b33e3a521dad37e2f38f5c9663fe58c6115013ca32c22f5c"
35 ]
36}