summaryrefslogtreecommitdiff
path: root/ddl/ddl.cabal
blob: 2e4a21071660b3c14b45b70c7e6ea03fbfa46ffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
-- Initial ddl.cabal generated by cabal init.  For further documentation, 
-- see http://haskell.org/cabal/users-guide/

name:                ddl
version:             0.1.0.0
synopsis:            data definition language with ADT support
-- description:         
license:             BSD3
license-file:        LICENSE
author:              Csaba Hruska
maintainer:          csaba.hruska@gmail.com
-- copyright:           
category:            Data
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

executable ddl-generate
  main-is:             Generate.hs
  other-modules:       Language, Definitions
  other-extensions:    RankNTypes, OverloadedStrings, DeriveGeneric, LambdaCase, FlexibleInstances
  build-depends:
      base >=4.8 && <4.9
    , aeson >=0.9 && <0.10
    , mtl >=2.2 && <2.3
    , containers >=0.5 && <0.6
    , text >=1.2 && <1.3
    , unordered-containers >=0.2 && <0.3
    , directory >=1.2 && <1.3
    , time >=1.5 && <1.6
    , ede
  -- hs-source-dirs:      
  default-language:    Haskell2010