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