| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 | 
							- -- Initial filelike.cabal generated by cabal init.  For further 
 
- -- documentation, see http://haskell.org/cabal/users-guide/
 
- -- The name of the package.
 
- name:                uniform-io
 
- -- The package version.  See the Haskell package versioning policy (PVP) 
 
- -- for standards guiding when and how versions should be incremented.
 
- -- http://www.haskell.org/haskellwiki/Package_versioning_policy
 
- -- PVP summary:      +-+------- breaking API changes
 
- --                   | | +----- non-breaking API additions
 
- --                   | | | +--- code changes with no API change
 
- version:    1.1.2.0
 
- -- A short (one-line) description of the package.
 
- synopsis:   Uniform IO over files, network, anything.
 
- -- A longer description of the package.
 
- 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.
 
- -- URL for the project homepage or repository.
 
- homepage:   https://sealgram.com/git/haskell/uniform-io
 
- -- The license under which the package is released.
 
- license:    MIT
 
- -- The file containing the license text.
 
- license-file: LICENSE
 
- -- The package author(s).
 
- author:     Marcos Dumay de Medeiros
 
- -- An email address to which users can send suggestions, bug reports, and 
 
- -- patches.
 
- maintainer: marcos@marcosdumay.com
 
- -- A copyright notice.
 
- -- copyright:           
 
- category:   System
 
- build-type: Simple
 
- -- Extra files to be distributed with the package, such as examples or a 
 
- -- README.
 
- -- extra-source-files:  
 
- -- Constraint on the version of Cabal needed to build this package.
 
- cabal-version: >=1.10
 
- Extra-Source-Files:
 
-   src/System/IO/Uniform/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.1.1.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.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
 
-   
 
-   -- Other library packages from which modules are imported.
 
-   build-depends:
 
-       base >=4.7 && <4.8,
 
-       iproute >=1.4 && <2.0,
 
-       bytestring >=0.10 && <1.0,
 
-       network >=2.4 && <3.0,
 
-       transformers >=0.3 && <1.0,
 
-       word8 >=0.1 && <1.0,
 
-       attoparsec >=0.13.0.1 && <1.0,
 
-       data-default-class >= 0.0.1 && <1.0
 
-   
 
-   -- Directories containing source files.
 
-   hs-source-dirs: src
 
-   
 
-   -- Base language which the package is written in.
 
-   default-language: Haskell2010
 
-   include-dirs: src/System/IO/Uniform
 
-   includes: ds.h
 
-   install-includes: ds.h
 
-   C-Sources: src/System/IO/Uniform/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 && <5.0,
 
-     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 && <5.0,
 
-     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
 
 
  |