Cabal-version: >= 1.8 Name: crypto-conduit Version: 0.4.0 Synopsis: Conduit interface for cryptographic operations (from crypto-api). Homepage: https://github.com/meteficha/crypto-conduit License: BSD3 License-file: LICENSE Author: Felipe Lessa Maintainer: Felipe Lessa Category: Cryptography, Conduit Build-type: Simple Description: This package contains everything that you need to use a cryptographic package that supports the @crypto-api@ package using conduits from the @conduit@ package. Extra-source-files: README tests/runtests.hs Source-repository head Type: git Location: git://github.com/meteficha/crypto-conduit.git Flag old-crypto-api Description: Use crypto-api < 0.9. Default: False Library Hs-Source-Dirs: src Exposed-modules: Crypto.Conduit Build-depends: base >= 3 && < 5, bytestring >= 0.9 && < 0.10, cereal >= 0.3 && < 0.4, conduit >= 0.5 && < 0.6, transformers >= 0.2 && < 0.4 if flag(old-crypto-api) Build-depends: crypto-api >= 0.8 && < 0.9 CPP-options: -DOLD_CRYPTO_API else Build-depends: crypto-api >= 0.9 && < 0.11 GHC-options: -Wall Test-suite runtests Type: exitcode-stdio-1.0 Build-depends: base, bytestring, cereal, crypto-api >= 0.9, conduit, transformers, cryptocipher == 0.3.*, cryptohash == 0.7.*, skein == 0.1.*, hspec == 0.9.*, -- finally, our own package crypto-conduit GHC-options: -Wall Hs-source-dirs: tests Main-is: runtests.hs