chunked-crypto.cabal 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. -- Initial chunked-crypto.cabal generated by cabal init. For further
  2. -- documentation, see http://haskell.org/cabal/users-guide/
  3. name: chunked-crypto
  4. version: 0.1.0.0
  5. -- synopsis:
  6. -- description:
  7. homepage: https://sealgram.com/git/haskell/chunked-crypto
  8. license: MIT
  9. license-file: LICENSE
  10. author: Marcos Dumay de Medeiros
  11. maintainer: marcos@marcosdumay.com
  12. -- copyright:
  13. category: System
  14. build-type: Simple
  15. -- extra-source-files:
  16. cabal-version: >=1.10
  17. library
  18. exposed-modules:
  19. Crypto.Chunked,
  20. Crypto.ChunkedAlgorithms
  21. -- other-modules:
  22. -- other-extensions:
  23. build-depends:
  24. base >=4.7 && <4.8,
  25. word8 >= 0.1 && <0.2,
  26. bytestring >=0.10 && <0.11,
  27. memory >=0.10 && <0.11,
  28. cryptonite >=0.10 && <0.11
  29. hs-source-dirs: src
  30. default-language: Haskell2010
  31. Test-suite roundtrips
  32. type: detailed-0.9
  33. test-module: RoundTrips
  34. hs-source-dirs:
  35. test
  36. build-depends:
  37. base >=4.7 && <5.0,
  38. Cabal >= 1.9.2,
  39. bytestring >=0.10 && <1.0,
  40. cryptonite >=0.10 && <0.11,
  41. chunked-crypto
  42. other-modules:
  43. Base
  44. ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -threaded
  45. default-language: Haskell2010