name: get-client-ip version: 1.3.0 cabal-version: >= 1.8 build-type: Simple executable get-client-ip hs-source-dirs: . main-is: Main.hs other-modules: Lib , MainHelper ghc-options: -Wall -threaded -O2 -rtsopts -with-rtsopts=-N extensions: OverloadedStrings , BangPatterns build-depends: base >= 4 && < 5 , scotty , text , http-types , extra , containers , time , lucid test-suite lib-test type: exitcode-stdio-1.0 hs-source-dirs: . main-is: LibTest.hs other-modules: Lib ghc-options: -Wall -threaded -O2 -rtsopts -with-rtsopts=-N extensions: OverloadedStrings build-depends: base >= 4 && < 5 , containers , hspec test-suite main-helper-test type: exitcode-stdio-1.0 hs-source-dirs: . main-is: MainHelperTest.hs other-modules: Lib , MainHelper ghc-options: -Wall -threaded -O2 -rtsopts -with-rtsopts=-N extensions: OverloadedStrings build-depends: base >= 4 && < 5 , text , containers , hspec test-suite lucid-demo type: exitcode-stdio-1.0 hs-source-dirs: . main-is: LucidDemo.hs ghc-options: -Wall -threaded -O2 -rtsopts -with-rtsopts=-N extensions: OverloadedStrings build-depends: base >= 4 && < 5 , lucid , text , hspec