chunked-crypto.cabal 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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: Chunked cryptography operations for lazy and random access to large data.
  6. description:
  7. This library contain simple functions that encapsulate streamming
  8. encryption primitives, supplying encryption of chunked data.
  9. .
  10. Most encryption primitives available at libraries do not fit well
  11. random access and lazy consuption of big files. This library
  12. provides those features.
  13. homepage: https://sealgram.com/git/haskell/chunked-crypto
  14. license: MIT
  15. license-file: LICENSE
  16. author: Marcos Dumay de Medeiros
  17. maintainer: marcos@marcosdumay.com
  18. -- copyright:
  19. category: System
  20. build-type: Simple
  21. -- extra-source-files:
  22. cabal-version: >=1.10
  23. source-repository head
  24. type: git
  25. location: https://sealgram.com/git/haskell/chunked-crypto
  26. branch: master
  27. source-repository this
  28. type: git
  29. location: https://sealgram.com/git/haskell/chunked-crypto
  30. tag: 0.1.0.0
  31. library
  32. exposed-modules:
  33. Crypto.Chunked,
  34. Crypto.ChunkedAlgorithms
  35. -- other-modules:
  36. -- other-extensions:
  37. build-depends:
  38. base >=4.7 && <4.9,
  39. word8 >= 0.1 && <0.2,
  40. bytestring >=0.10 && <0.11,
  41. memory >=0.10 && <0.11,
  42. cryptonite >=0.10 && <0.11
  43. hs-source-dirs: src
  44. default-language: Haskell2010
  45. Test-suite roundtrips
  46. type: detailed-0.9
  47. test-module: RoundTrips
  48. hs-source-dirs:
  49. test
  50. build-depends:
  51. base >=4.7 && <5.0,
  52. Cabal >= 1.9.2,
  53. bytestring >=0.10 && <1.0,
  54. cryptonite >=0.10 && <0.11,
  55. chunked-crypto
  56. other-modules:
  57. Base
  58. ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns -threaded
  59. default-language: Haskell2010