json2bencode.cabal 850 B

123456789101112131415161718192021222324252627
  1. name: json2bencode
  2. version: 0.1.0.0
  3. synopsis: A utility for converting JSON to Bencode
  4. license: BSD3
  5. license-file: LICENSE
  6. author: Getty Ritter
  7. maintainer: gettyritter@gmail.com
  8. copyright: 2016
  9. category: Data
  10. build-type: Simple
  11. cabal-version: >=1.10
  12. executable json2bencode
  13. main-is: Main.hs
  14. -- other-modules:
  15. -- other-extensions:
  16. build-depends: base >=4.8 && <4.9,
  17. aeson,
  18. bencode,
  19. bytestring,
  20. containers,
  21. scientific,
  22. text,
  23. unordered-containers,
  24. vector
  25. hs-source-dirs: src
  26. default-language: Haskell2010