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 "mdx" {with-test & < "2.0"}
16]
17build: [
18 ["dune" "subst"] {dev}
19 ["dune" "build" "-p" name "-j" jobs]
20 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
21]
22synopsis: "Typed routing for OCaml applications"
23description: """
24routes provides combinators for adding typed routing
25to OCaml applications. The core library will be independent
26of any particular web framework or runtime. It does
27path based dispatch from a target url to a user
28provided handler.
29"""
30url {
31 src:
32 "https://github.com/anuragsoni/routes/releases/download/0.8.0/routes-0.8.0.tbz"
33 checksum: [
34 "sha256=fa786b05d61fa08c1386bfa3259cbb9ebb129e7f8ac759a6bec0c52cc92a7c46"
35 "sha512=4ad7b8416de7acc07927f990af85821100aa1e8c2cb53c59639001b335cc472f5b42c2c9ccfd301dc59801918da250fdcf9f47874fa38452d53ea0e27766a75a"
36 ]
37}