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.9"}
14 "ocaml" {>= "4.08.0"}
15 "base" {with-test}
16 "stdio" {with-test}
17 "ppx_expect" {with-test}
18 "ppx_sexp_conv" {with-test}
19 "ppx_sexp_value" {with-test}
20 "ppx_custom_printf" {with-test}
21 "mdx" {with-test}
22 "odoc" {with-doc}
23]
24build: [
25 ["dune" "subst"] {dev}
26 [
27 "dune"
28 "build"
29 "-p"
30 name
31 "-j"
32 jobs
33 "--promote-install-files=false"
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38 ["dune" "install" "-p" name "--create-install-files" name]
39]
40dev-repo: "git+https://github.com/anuragsoni/routes.git"
41url {
42 src:
43 "https://github.com/anuragsoni/routes/releases/download/2.0.0/routes-2.0.0.tbz"
44 checksum: [
45 "sha256=3b629d698c2b00e504c13b4cd783548063719dcf01580c9c3f5104b81eb0d688"
46 "sha512=428f88812f76c4d99198cea42c5d60a7924fd71acf87def6278544c391b9586a10ce2e34485b83b249f639c15776f30d0efd5bb145775eb49118ea8662005eb3"
47 ]
48}
49x-commit-hash: "1293a809e1e0f1104e99584de6c74dd022dda9ab"