this repo has no description
1opam-version: "2.0" 2 3homepage: "http://github.com/odis-labs/streaming" 4doc: "https://odis-labs.github.io/streaming" 5bug-reports: "https://github.com/odis-labs/streaming/issues" 6license: "ISC" 7 8authors: [ 9 "Rizo I <rizo@odis.io>" 10] 11maintainer: "Rizo I <rizo@odis.io>" 12dev-repo: "git+https://github.com/odis-labs/streaming.git" 13 14synopsis: "Fast, safe and composable streaming abstractions" 15description: """ 16Streaming abstractions that combine, transform and reduce large amounts of 17sequential data efficiently, in constant space and without leaking resources. 18 19Streaming uses composable stream producers (sources), consumers (sinks) and 20transformers (flows). 21 22The following features are provided: 23 24- Constant memory usage: large or infinite streams can be computed in constant 25 and small space. Buffering of the input is possible when needed. 26- Excellent performance: all models were designed with performance at the 27 core. See https://github.com/rizo/streams-bench for detailed 28 comparison with other libraries. 29- Resource safety: resources in effectful streaming pipelines are allocated 30 lazily and released as early as possible. Resources are guaranteed to 31 be terminated even when streams rise exceptions. 32- Flexibility: both push-based and pull-based models are implemented to 33 allow efficient zipping, concatenation and other streaming operations. 34- Streaming notation: build streams and sinks using a convenient 35 comprehension and applicative notations. 36""" 37 38depends: [ 39 "stdlib-shims" 40 "dune" {>= "2.0"} 41 "ocaml" {>= "4.08.0"} 42] 43 44build: [ 45 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}] 46] 47url { 48 src: 49 "https://github.com/odis-labs/streaming/releases/download/0.8.0/streaming-0.8.0.tbz" 50 checksum: [ 51 "sha256=5bedc6619a6c2e3d529d086e4a68d7762ffce5f31a8d6a73e1bef1e56d1b9c9b" 52 "sha512=f490206a25176ab2bcacfdcf619c0569b191f27e05daeff32f4b8ad42d6a7aa7791e6a4ae501c05f1fb892842a0fc0272ec5deb4094c9d32fffa9535ce871a01" 53 ] 54}