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