123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- name: eben
- version: 0.1.0.0
- -- synopsis:
- -- description:
- license: BSD3
- license-file: LICENSE
- author: Getty Ritter
- maintainer: gdritter@galois.com
- -- copyright:
- category: Data
- build-type: Simple
- -- extra-source-files:
- cabal-version: >=1.10
- flag build-programs
- description: Build helper programs
- default: False
- library
- exposed-modules: Data.Eben
- -- other-modules:
- -- other-extensions:
- build-depends: base >=4.8 && <4.9,
- bytestring,
- containers,
- cereal
- -- hs-source-dirs:
- default-language: Haskell2010
- executable json2eben
- if !flag(build-programs)
- buildable: False
- hs-source-dirs: json2eben
- main-is: Main.hs
- default-extensions: OverloadedStrings, ScopedTypeVariables
- build-depends: base >=4.8 && <4.9,
- eben,
- aeson,
- scientific,
- vector,
- text,
- bytestring,
- containers,
- unordered-containers
- default-language: Haskell2010
|