eben.cabal 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. name: eben
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. license: BSD3
  6. license-file: LICENSE
  7. author: Getty Ritter
  8. maintainer: gdritter@galois.com
  9. -- copyright:
  10. category: Data
  11. build-type: Simple
  12. -- extra-source-files:
  13. cabal-version: >=1.10
  14. flag build-programs
  15. description: Build helper programs
  16. default: False
  17. library
  18. exposed-modules: Data.Eben
  19. -- other-modules:
  20. -- other-extensions:
  21. build-depends: base >=4.8 && <4.9,
  22. bytestring,
  23. containers,
  24. cereal
  25. -- hs-source-dirs:
  26. default-language: Haskell2010
  27. executable json2eben
  28. if !flag(build-programs)
  29. buildable: False
  30. hs-source-dirs: json2eben
  31. main-is: Main.hs
  32. default-extensions: OverloadedStrings, ScopedTypeVariables
  33. build-depends: base >=4.8 && <4.9,
  34. eben,
  35. aeson,
  36. scientific,
  37. vector,
  38. text,
  39. bytestring,
  40. containers,
  41. unordered-containers
  42. default-language: Haskell2010