praxis

Various programming exercises.
git clone git://git.jtobin.io/praxis.git
Log | Files | Refs

x20150227-currency.cabal (939B)


      1 name:                x20150227-currency
      2 version:             0.1.0.0
      3 license:             MIT
      4 license-file:        LICENSE
      5 author:              Jared Tobin
      6 maintainer:          jared@jtobin.ca
      7 build-type:          Simple
      8 cabal-version:       >=1.10
      9 
     10 library
     11   exposed-modules:     Currency
     12   hs-source-dirs:      src-lib
     13   default-language:    Haskell2010
     14   build-depends:
     15       aeson      >= 0.8.0.2
     16     , base       >= 4.7 && < 4.8
     17     , containers >= 0.5.5.1
     18     , lens       >= 3.7
     19     , lens-aeson >= 1.0.0.3
     20     , scientific >= 0.3.3.7
     21     , text       >= 1.2.0.4
     22     , wreq       >= 0.3.0.1
     23 
     24 executable exchange-rate
     25   main-is:             Main.hs
     26   hs-source-dirs:      src-exec
     27   default-language:    Haskell2010
     28   ghc-options:
     29     -Wall -Werror -O2
     30   build-depends:
     31       base                 >= 4.7.0.1 && < 4.8
     32     , optparse-applicative >= 0.11.0.1
     33     , scientific           >= 0.3.3.7
     34     , x20150227-currency   >= 0.1.0.0
     35