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