|
@@ -46,7 +46,8 @@ library
|
|
|
System.IO.Uniform.HandlePair,
|
|
|
System.IO.Uniform.Timeout,
|
|
|
System.IO.Uniform.Streamline,
|
|
|
- System.IO.Uniform.Streamline.Scanner
|
|
|
+ System.IO.Uniform.Streamline.Scanner,
|
|
|
+ System.IO.Uniform.Conduit
|
|
|
|
|
|
ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -fno-warn-orphans
|
|
|
|
|
@@ -67,18 +68,19 @@ library
|
|
|
|
|
|
-- 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,
|
|
|
- interruptible
|
|
|
+ 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
|
|
@@ -138,3 +140,19 @@ Test-suite limited_input
|
|
|
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
|