name:                redirect
version:             0.1.0.0
synopsis:            Client and server to hose Lightsail credentials
homepage:            https://github.com/thumphries/
author:              Tim Humphries
maintainer:          tim@utf8.me
build-type:          Simple
cabal-version:       >=1.10

executable client
  default-language:  Haskell2010
  hs-source-dirs:    main
  ghc-options:       -Wall -threaded -rtsopts
  main-is:           client.hs
  build-depends:
                     base                  >= 4.9           && < 4.11
                   , bytestring            >= 0.10.8        && < 0.11
                   , containers            == 0.5.*
                   , http-types            == 0.9.*
                   , network               == 2.*
                   , text                  == 1.2.*
                   , transformers          >= 0.5           && < 0.7
                   , wai                   == 3.2.*
                   , wai-extra             == 3.0.*
                   , warp                  == 3.2.*
                   , wreq

executable server
  default-language:  Haskell2010
  hs-source-dirs:    main
  ghc-options:       -Wall -threaded -rtsopts
  main-is:           server.hs
  build-depends:
                     base                  >= 4.9           && < 4.11
                   , bytestring            >= 0.10.8        && < 0.11
                   , containers            == 0.5.*
                   , http-types            == 0.9.*
                   , text                  == 1.2.*
                   , transformers          >= 0.5           && < 0.7
                   , wai                   == 3.2.*
                   , wai-extra             == 3.0.*
                   , warp                  == 3.2.*