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" 6dev-repo: "git+https://github.com/inhabitedtype/ocaml-dispatch.git" 7bug-reports: "https://github.com/inhabitedtype/ocaml-dispatch/issues" 8build: [ 9 ["jbuilder" "subst" "-p" name] {dev} 10 ["jbuilder" "build" "-p" name "-j" jobs] 11 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 12] 13depends: [ 14 "ocaml" 15 "ounit" {with-test & >= "1.0.2"} 16 "jbuilder" {>= "1.0+beta10"} 17 "result" 18] 19synopsis: "Path-based dispatching for client- and server-side applications." 20description: """ 21Dispatch provides a basic mechanism for dispatching a request to a 22handler based on hierarchical path names conventionally found in URIs. 23It can be used both for dispatching requests in a server, as well as 24handing changes to hierarchical fragments in a client-side 25application.""" 26url { 27 src: "https://github.com/inhabitedtype/ocaml-dispatch/archive/0.4.0.tar.gz" 28 checksum: [ 29 "sha256=6c8e77f2960742c16e187355bd1bdaf51ff83c377bf91c6cf4db72de026de5b2" 30 "md5=b41da081833337c86c4eda7a2e0b8d26" 31 ] 32}