Skip to content

Commit

Permalink
Update from Hackage at 2019-01-16T13:54:15Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Jan 16, 2019
1 parent 8a7e223 commit ca40baf
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
77 changes: 77 additions & 0 deletions potoki/2.1.4/potoki.cabal
@@ -0,0 +1,77 @@
name:
potoki
version:
2.1.4
synopsis:
Simple streaming in IO
description:
This library provides a new simpler approach to the IO-streaming problem.
.
In difference to libraries like \"pipes\", \"conduit\", \"streaming\",
this library is specialised to streaming in the IO monad,
which greatly simplifies the abstractions that it provides.
This simplification is motivated by the fact that the majority of streaming
tasks are performed in IO anyway.
.
Also, unlike the mentioned libraries,
\"potoki\" API doesn't treat streaming as a side operation in its abstractions,
which allows it to express the composition of streams using the standard
typeclass instances, thus simplifying the API even further.
.
Naturally, being simpler limits the application area of this library.
Thus it is not capable of transforming custom context monads and etc.
It is a tradeoff, but, as we expect, the user will rarely be affected by it.
.
Another benefit of being specialized to IO is the ability to optimize for performance better.
It must however be mentioned that this is only theoretical and no benchmarks have yet been performed.
.
In some of the mentioned regards \"potoki\" is similar to the \"io-streams\" library.
However, unlike that library it approaches composition with the standard typeclass instances.
Also, in difference to \"io-streams\", \"potoki\" doesn't use exceptions for control-flow.
In fact, \"potoki\" doesn't use exceptions whatsoever,
instead it makes failures explicit, using the standard @Either@ type.
.
\"potoki\" comes with automated resource-management (acquisition and clean-up),
concurrency and buffering features.
category:
Streaming
homepage:
https://github.com/metrix-ai/potoki
bug-reports:
https://github.com/metrix-ai/potoki/issues
author:
Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer:
Metrix.AI Tech Team <tech@metrix.ai>
copyright:
(c) 2017, Metrix.AI
license:
MIT
license-file:
LICENSE
build-type:
Simple
cabal-version:
>=1.10

source-repository head
type:
git
location:
git://github.com/metrix-ai/potoki.git

library
hs-source-dirs:
library
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFoldable, DeriveFunctor, DeriveGeneric, DeriveTraversable, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
exposed-modules:
Potoki.Consume
Potoki.IO
Potoki.Produce
Potoki.Transform
build-depends:
potoki-core >=2.3.4 && <2.4

1 change: 1 addition & 0 deletions potoki/2.1.4/potoki.json
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"8c3a4d66ec40b4c7a8eaddafc278de3c","Skein512_512":"c6aff1a9402fc3a9719e332efc6be83a8447fb0540634776674943d60ad5f70675e3acc14f3258931ee9f662dd8a705f184eaacacff2716d148a75688728383d","SHA1":"bd43b324122d3e270b5573ded0b3477d771c7a64","SHA512":"d90971be0320866990ca2dc037bee77b35b21d57004738b5fcd00cad02db6a9afb8d73af85c26f6a481e28f403d146d5f8ae996e5c0a41ea002f39094ba4f445","SHA256":"b408b5f3af8176b2613615570157a228f581334cf06503b105e70a66df86baf8"},"package-locations":["https://hackage.haskell.org/package/potoki-2.1.4/potoki-2.1.4.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/potoki-2.1.4.tar.gz"],"package-size":3040}

0 comments on commit ca40baf

Please sign in to comment.