1name:                aeson-examples
2version:             0
3build-type:          Simple
4cabal-version:       >=1.8
5
6executable aeson-example-generic
7  main-is: Generic.hs
8  ghc-options: -Wall
9  build-depends:
10    aeson >= 0.10,
11    base,
12    base-compat,
13    bytestring,
14    ghc-prim
15
16executable aeson-example-simplest
17  main-is: Simplest.hs
18  ghc-options: -Wall
19  build-depends:
20    aeson,
21    base,
22    base-compat,
23    bytestring
24
25executable aeson-example-th
26  main-is: TemplateHaskell.hs
27  ghc-options: -Wall
28  build-depends:
29    aeson,
30    base,
31    base-compat,
32    bytestring
33