name: email-validator version: 0.0.1 cabal-version: >= 1.8 author: Michael Orlitzky maintainer: Michael Orlitzky synopsis: Perform basic syntax and deliverability checks on email addresses. build-type: Simple executable email_validator build-depends: base == 4.*, dns == 0.3.*, HUnit == 1.2.*, QuickCheck == 2.6.*, regex-pcre == 0.94.*, test-framework == 0.8.*, test-framework-hunit == 0.3.*, test-framework-quickcheck2 == 0.3.*, utf8-string == 0.3.* main-is: Main.hs hs-source-dirs: src/ ghc-options: -Wall -fwarn-hi-shadowing -fwarn-missing-signatures -fwarn-name-shadowing -fwarn-orphans -fwarn-type-defaults -fwarn-tabs -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction -fwarn-unused-do-bind -funbox-strict-fields -fexcess-precision -fno-spec-constr-count -rtsopts -threaded -optc-O3 -optc-march=native -O2 ghc-prof-options: -prof -auto-all -caf-all test-suite testsuite type: exitcode-stdio-1.0 hs-source-dirs: src test main-is: TestSuite.hs build-depends: base == 4.*, dns == 0.3.*, HUnit == 1.2.*, QuickCheck == 2.6.*, regex-pcre == 0.94.*, test-framework == 0.8.*, test-framework-hunit == 0.3.*, test-framework-quickcheck2 == 0.3.*, utf8-string == 0.3.* -- It's not entirely clear to me why I have to reproduce all of this. ghc-options: -Wall -fwarn-hi-shadowing -fwarn-missing-signatures -fwarn-name-shadowing -fwarn-orphans -fwarn-type-defaults -fwarn-tabs -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction -fwarn-unused-do-bind -funbox-strict-fields -fexcess-precision -fno-spec-constr-count -rtsopts -threaded -optc-O3 -optc-march=native -O2 source-repository head type: git location: http://michael.orlitzky.com/git/email-validator.git branch: master