this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #14149 from anuragsoni/release-routes-0.5.0

[new release] routes (0.5.0)

authored by

Marcello Seri and committed by
GitHub
3abbf451 145a03b8

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