this repo has no description
0
fork

Configure Feed

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

[new release] redirect.0.2.1

This PR adds the new release for redirect.0.2.1:

- Fix `with_channel_from_string` for long strings that do not fit in
pipe, by using a thread for outputing the string.

- Some minor optimizations, using the fact that re-raising an exception
preserves the backtrace and the constraint on OCaml version (>=4.03)
ensures that match-with-exception is available.

+35
+35
packages/redirect/redirect.0.2.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Redirect channels" 3 + description: """ 4 + Redirect channels to files, strings... 5 + """ 6 + maintainer: ["Thierry Martinez <thierry.martinez@inria.fr>"] 7 + authors: ["Thierry Martinez <thierry.martinez@inria.fr>"] 8 + license: "BSD-2-Clause" 9 + homepage: "https://github.com/thierry-martinez/redirect" 10 + doc: "https://github.com/thierry-martinez/redirect" 11 + bug-reports: "https://github.com/thierry-martinez/redirect" 12 + depends: [ 13 + "ocaml" {>= "4.03.0"} 14 + "dune" {>= "1.11.0"} 15 + "stdcompat" {>= "10"} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + dev-repo: "git+https://github.com/thierry-martinez/redirect" 32 + url { 33 + src: "https://github.com/thierry-martinez/redirect/releases/download/v0.2.1/redirect-0.2.1.tar.gz" 34 + checksum: "sha512=4f10adc54ff6b6274b7373ca90e0e1a6a15aa9d097f2c8d303672c4963e1b963174809103415739868828a8328315762cdab143fbb99c88ec4071859b895c77c" 35 + }