123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- 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.ByteString,
- System.IO.Uniform.HandlePair,
- System.IO.Uniform.Timeout,
- System.IO.Uniform.Streamline,
- System.IO.Uniform.Streamline.Scanner
- 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,
- 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
|