this repo has no description
1opam-version: "2.0"
2maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
3authors: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
4license: "BSD-3-clause"
5homepage: "https://github.com/inhabitedtype/ocaml-dispatch"
6bug-reports: "https://github.com/inhabitedtype/ocaml-dispatch/issues"
7doc: "https://inhabitedtype.github.io/ocaml-dispatch/"
8depends: [
9 "ocaml" {>="4.03.0"}
10 "alcotest" {with-test & > "0.5.0"}
11 "dune" {>= "1.0"}
12 "result"
13]
14build: [
15 ["dune" "subst"] {dev}
16 ["dune" "build" "-p" name "-j" jobs]
17 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
18]
19dev-repo: "git+https://github.com/inhabitedtype/ocaml-dispatch.git"
20synopsis: "Path-based dispatching for client- and server-side applications"
21description: """
22ocaml-dispatch provides a basic mechanism for dispatching a request to a
23handler based on hierarchical path names conventionally found in URIs. It can be
24used both for dispatching requests in a server, as well as handing changes to
25hierarchical fragments in a client-side application.
26"""
27url {
28 src: "https://github.com/inhabitedtype/ocaml-dispatch/archive/0.5.0.tar.gz"
29 checksum: [
30 "sha256=021a95f89c503d546d90a7f212b369b117e45eedd91f32b5e5fcd33eea23d243"
31 "md5=2c4a28aeb35038a3c928e0ff17d97a7c"
32 ]
33}