]> gitweb.michael.orlitzky.com - email-validator.git/blobdiff - email-validator.cabal
Update the documentation to eliminate the "--input" and "--output" flags.
[email-validator.git] / email-validator.cabal
index ea8347ac9d7caccbcb595ca03de61b3912aa6537..667c9988956bad57fadd934b580c343fc890b1f1 100644 (file)
@@ -33,18 +33,17 @@ description:
   This will set the number of threads to 25:
   .
   @
-  $ email-validator -i addresses.csv +RTS -N25
+  $ email-validator +RTS -N25 < addresses.csv
   @
   .
   /Input/
   .
-  The @input@ file (default: stdin) should be a list of email addresses,
+  The @input@ (via stdin) should be a list of email addresses,
   one per line. Empty lines will be ignored.
   .
   /Output/
   .
-  Valid email addresses will be written to the output file (default:
-  stdout), one per line.
+  Valid email addresses will be written to stdout, one per line.
 
 
 executable email-validator
@@ -52,7 +51,6 @@ executable email-validator
     base                        < 5,
     bytestring                  >= 0.10,
     cmdargs                     >= 0.10,
-    directory                   >= 1.2,
     dns                         >= 2,
     email-validate              >= 2,
     HUnit                       >= 1.2,
@@ -70,40 +68,30 @@ executable email-validator
   other-modules:
     CommandLine
     EmailAddress
-    ExitCodes
+    Paths_email_validator
 
   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
+    -Weverything
+    -Wno-implicit-prelude
+    -Wno-safe
+    -Wno-unsafe
+    -Wno-all-missed-specialisations
     -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                        < 5,
     bytestring                  >= 0.10,
     cmdargs                     >= 0.10,
-    directory                   >= 1.2,
     dns                         >= 2,
     email-validate              >= 2,
     HUnit                       >= 1.2,
@@ -112,18 +100,16 @@ test-suite testsuite
     tasty                       >= 0.8,
     tasty-hunit                 >= 0.8
 
+  other-modules:
+    EmailAddress
+
   -- 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
+    -Weverything
+    -Wno-implicit-prelude
+    -Wno-safe
+    -Wno-unsafe
+    -Wno-all-missed-specialisations
     -rtsopts
     -threaded
     -optc-O3