Updates to Cabal version bounds
Getty Ritter
8 years ago
22 | 22 | build-type: Simple |
23 | 23 | cabal-version: >= 1.14 |
24 | 24 | |
25 | source-repository head | |
26 | type: git | |
27 | location: git://github.com/aisamanra/config-ini.git | |
28 | ||
25 | 29 | flag build-examples |
26 | 30 | description: Build example applications |
27 | 31 | default: False |
31 | 35 | exposed-modules: Data.Ini.Config |
32 | 36 | , Data.Ini.Raw |
33 | 37 | ghc-options: -Wall |
34 | build-depends: base >=4.7 && <4.10 | |
35 | , text | |
36 | , unordered-containers | |
37 | , transformers | |
38 |
|
|
38 | build-depends: base >=4.7 && <4.10 | |
39 | , text >=1.2.2 && <1.3 | |
40 | , unordered-containers >=0.2.7 && <0.3 | |
41 | , transformers >=0.5.2 && <0.6 | |
42 | , megaparsec >=5.1.2 && <5.2 | |
39 | 43 | default-language: Haskell2010 |
40 | 44 | |
41 | 45 | executable basic-example |
83 | 87 | , config-ini |
84 | 88 | , unordered-containers |
85 | 89 | , text |
86 |
, directory |
|
90 | , directory |