123456789101112131415161718192021222324252627282930313233343536373839404142 |
- name: gidl
- version: 0.1.0.0
- license: AllRightsReserved
- license-file: LICENSE
- author: Pat Hickey
- maintainer: pat@galois.com
- copyright: 2015 Galois Inc
- build-type: Simple
- cabal-version: >=1.10
- library
- exposed-modules: Gidl,
- Gidl.Parse,
- Gidl.Interface,
- Gidl.Interface.AST,
- Gidl.Schema,
- Gidl.Types,
- Gidl.Types.AST,
- Gidl.Types.Base,
- Gidl.Backend.Cabal,
- Gidl.Backend.Haskell,
- Gidl.Backend.Haskell.Types
- build-depends: base >=4.7 && <4.8,
- hashable,
- mainland-pretty,
- parsec,
- transformers,
- ivory-artifact
- hs-source-dirs: src
- default-language: Haskell2010
- ghc-options: -Wall
- executable gidl-test
- main-is: Test.hs
- hs-source-dirs: tests
- build-depends: base >= 4.6,
- ivory-artifact,
- gidl
- default-language: Haskell2010
- ghc-options: -Wall
|