name: uniform-io version: 1.3.0.0 synopsis: Uniform IO over files, network, anything. description: This library defines a typeclass for abstracting the differences between the several IO channels available. It also includes implementations for standard IO, files and network IO, and easy to use TLS wrapping of network data, with an extensible interface for user supplied instances. . Currently there's no support for TLS certificate verification. That is planned to be added soon. . Requires a '-threaded' compiler switch. homepage: https://sealgram.com/git/haskell/uniform-io license: MIT license-file: LICENSE author: Marcos Dumay de Medeiros maintainer: marcos@marcosdumay.com category: System build-type: Simple cabal-version: >=1.10 Extra-Source-Files: cbits/ds.c source-repository head type: git location: https://sealgram.com/git/haskell/uniform-io branch: master source-repository this type: git location: https://sealgram.com/git/haskell/uniform-io tag: 1.2.0.0 library -- Modules exported by the library. exposed-modules: System.IO.Uniform, System.IO.Uniform.Network, System.IO.Uniform.File, System.IO.Uniform.Std, System.IO.Uniform.Null, System.IO.Uniform.ByteString, System.IO.Uniform.HandlePair, System.IO.Uniform.Timeout, System.IO.Uniform.Streamline, System.IO.Uniform.Streamline.Scanner, System.IO.Uniform.Conduit ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -fno-warn-orphans -- Modules included in this library but not exported. other-modules: System.IO.Uniform.External -- LANGUAGE extensions used by modules in this package. other-extensions: OverloadedStrings ExistentialQuantification ForeignFunctionInterface InterruptibleFFI EmptyDataDecls TypeFamilies FlexibleInstances UndecidableInstances -- Other library packages from which modules are imported. build-depends: base >=4.8, iproute >=1.4, bytestring >=0.10, network >=2.4, transformers >=0.3, word8 >=0.1, attoparsec >=0.13.0.1, data-default-class >= 0.0.1, monad-control, transformers-base, conduit, extra, interruptible -- Directories containing source files. hs-source-dirs: src -- Base language which the package is written in. default-language: Haskell2010 include-dirs: cbits includes: ds.h install-includes: ds.h C-Sources: cbits/ds.c extra-libraries: ssl, crypto, pthread Test-suite targets type: detailed-0.9 test-module: Targets hs-source-dirs: test build-depends: base >=4.7, Cabal >= 1.9.2, bytestring >=0.10 && <1.0, uniform-io other-modules: Base ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -threaded default-language: Haskell2010 Test-suite blocking type: detailed-0.9 test-module: Blocking hs-source-dirs: test build-depends: base >=4.7, Cabal >= 1.9.2, bytestring >=0.10 && <1.0, attoparsec >=0.10 && <1.0, uniform-io other-modules: Base ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -threaded default-language: Haskell2010 Test-suite limited_input type: detailed-0.9 test-module: LimitedInput hs-source-dirs: test build-depends: base >=4.7, Cabal >= 1.9.2, bytestring >=0.10 && <1.0, attoparsec >=0.10 && <1.0, uniform-io other-modules: Base ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -threaded default-language: Haskell2010 Test-suite conduit type: detailed-0.9 test-module: TestConduit hs-source-dirs: test build-depends: base >=4.7, Cabal >= 1.9.2, bytestring >=0.10 && <1.0, conduit, uniform-io other-modules: Base ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -threaded default-language: Haskell2010