packages feed

Cabal revisions of tweet-hs-1.0.1.2

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
-name:                tweet-hs-version:             1.0.1.2-synopsis:            Command-line tool for twitter-description:         a Command Line Interface Tweeter-homepage:            https://github.com/vmchale/command-line-tweeter#readme-license:             BSD3-license-file:        LICENSE-author:              Vanessa McHale-maintainer:          tmchale@wisc.edu-copyright:           2016 Vanessa McHale-category:            Web-build-type:          Simple-stability:           stable-extra-source-files:  README.md, stack.yaml, bash/mkCompletions, test/data-cabal-version:       >=1.10--Flag llvm-fast {-  Description: Enable build with llvm backend-  Default: False-}--Flag library {-  Description: Don't build an executable-  Default:     False-}--Flag gold {-  Description: Use the gold linker-  Default:     True-}--Flag parallel-gc {-  Description: Use parallel garbage collector-  Default:     False-}--library-  hs-source-dirs:      src-  exposed-modules:     Web.Tweet-                     , Web.Tweet.Exec-                     , Web.Tweet.Parser.FastParser-                     , Web.Tweet.Parser-                     , Web.Tweet.Sign-                     , Web.Tweet.API-  other-modules:       Web.Tweet.Types-                     , Web.Tweet.Utils-                     , Web.Tweet.Utils.Colors-                     , Web.Tweet.API.Internal-                     , Web.Tweet.Utils.API-                     , Paths_tweet_hs-  build-depends:       base >= 4.8 && < 5-                     , http-client-tls-                     , http-client-                     , http-types-                     , authenticate-oauth-                     , megaparsec >= 6.0-                     , bytestring-                     , split-                     , optparse-applicative -                     , lens-                     , unordered-containers-                     , htoml-                     , data-default-                     , text-                     , containers-                     , ansi-wl-pprint-                     , directory-                     , extra-                     , composition-                     , aeson-  default-language:    Haskell2010-  default-extensions:  LambdaCase-  if flag(gold) -    ghc-options:       -optl-fuse-ld=gold-    ld-options:        -fuse-ld=gold-  ghc-options:         -fwarn-unused-imports--executable tweet-  if flag(library)-    Buildable: False-  else-    Buildable: True-  hs-source-dirs:      app-  main-is:             Main.hs-  if flag(llvm-fast)-    ghc-options:       -fllvm -optlo-O3 -O3-  if flag(gold) -    ghc-options:       -optl-fuse-ld=gold-    ld-options:        -fuse-ld=gold-  if flag(parallel-gc)-    ghc-options:       -rtsopts -with-rtsopts=-N-  ghc-options:         -threaded -O3-  build-depends:       base-                     , tweet-hs -  default-language:    Haskell2010--benchmark tweeths-bench-  type:                exitcode-stdio-1.0-  hs-source-dirs:      bench-  main-is:             Bench.hs-  build-depends:       base-                       , criterion-                       , tweet-hs-                       , bytestring-                       , megaparsec-  if flag(llvm-fast)-    ghc-options:       -fllvm -optlo-O3 -O3-  if flag(gold) -    ghc-options:       -optl-fuse-ld=gold-    ld-options:        -fuse-ld=gold-  ghc-options:         -threaded -rtsopts -with-rtsopts=-N-  default-language:    Haskell2010--test-suite tweeths-test-  type:                exitcode-stdio-1.0-  hs-source-dirs:      test-  main-is:             Spec.hs-  build-depends:       base-                     , tweet-hs-                     , hspec-                     , QuickCheck-                     , bytestring-  if flag(gold) -    ghc-options:       -optl-fuse-ld=gold-    ld-options:        -fuse-ld=gold-  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -  default-language:    Haskell2010--source-repository head-  type:     git-  location: https://hub.darcs.net/vmchale/tweet-hs+name:                tweet-hs
+version:             1.0.1.2
+x-revision: 1
+synopsis:            Command-line tool for twitter
+description:         a Command Line Interface Tweeter
+homepage:            https://github.com/vmchale/command-line-tweeter#readme
+license:             BSD3
+license-file:        LICENSE
+author:              Vanessa McHale
+maintainer:          tmchale@wisc.edu
+copyright:           2016 Vanessa McHale
+category:            Web
+build-type:          Simple
+stability:           stable
+extra-source-files:  README.md, stack.yaml, bash/mkCompletions, test/data
+cabal-version:       >=1.10
+
+Flag llvm-fast {
+  Description: Enable build with llvm backend
+  Default: False
+}
+
+Flag library {
+  Description: Don't build an executable
+  Default:     False
+}
+
+Flag gold {
+  Description: Use the gold linker
+  Default:     True
+}
+
+Flag parallel-gc {
+  Description: Use parallel garbage collector
+  Default:     False
+}
+
+library
+  hs-source-dirs:      src
+  exposed-modules:     Web.Tweet
+                     , Web.Tweet.Exec
+                     , Web.Tweet.Parser.FastParser
+                     , Web.Tweet.Parser
+                     , Web.Tweet.Sign
+                     , Web.Tweet.API
+  other-modules:       Web.Tweet.Types
+                     , Web.Tweet.Utils
+                     , Web.Tweet.Utils.Colors
+                     , Web.Tweet.API.Internal
+                     , Web.Tweet.Utils.API
+                     , Paths_tweet_hs
+  build-depends:       base >= 4.8 && < 5
+                     , http-client-tls
+                     , http-client
+                     , http-types
+                     , authenticate-oauth
+                     , megaparsec >= 6.0 && < 7.0
+                     , bytestring
+                     , split
+                     , optparse-applicative 
+                     , lens
+                     , unordered-containers
+                     , htoml
+                     , data-default
+                     , text
+                     , containers
+                     , ansi-wl-pprint
+                     , directory
+                     , extra
+                     , composition
+                     , aeson
+  default-language:    Haskell2010
+  default-extensions:  LambdaCase
+  if flag(gold) 
+    ghc-options:       -optl-fuse-ld=gold
+    ld-options:        -fuse-ld=gold
+  ghc-options:         -fwarn-unused-imports
+
+executable tweet
+  if flag(library)
+    Buildable: False
+  else
+    Buildable: True
+  hs-source-dirs:      app
+  main-is:             Main.hs
+  if flag(llvm-fast)
+    ghc-options:       -fllvm -optlo-O3 -O3
+  if flag(gold) 
+    ghc-options:       -optl-fuse-ld=gold
+    ld-options:        -fuse-ld=gold
+  if flag(parallel-gc)
+    ghc-options:       -rtsopts -with-rtsopts=-N
+  ghc-options:         -threaded -O3
+  build-depends:       base
+                     , tweet-hs 
+  default-language:    Haskell2010
+
+benchmark tweeths-bench
+  type:                exitcode-stdio-1.0
+  hs-source-dirs:      bench
+  main-is:             Bench.hs
+  build-depends:       base
+                       , criterion
+                       , tweet-hs
+                       , bytestring
+                       , megaparsec
+  if flag(llvm-fast)
+    ghc-options:       -fllvm -optlo-O3 -O3
+  if flag(gold) 
+    ghc-options:       -optl-fuse-ld=gold
+    ld-options:        -fuse-ld=gold
+  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
+  default-language:    Haskell2010
+
+test-suite tweeths-test
+  type:                exitcode-stdio-1.0
+  hs-source-dirs:      test
+  main-is:             Spec.hs
+  build-depends:       base
+                     , tweet-hs
+                     , hspec
+                     , QuickCheck
+                     , bytestring
+  if flag(gold) 
+    ghc-options:       -optl-fuse-ld=gold
+    ld-options:        -fuse-ld=gold
+  ghc-options:         -threaded -rtsopts -with-rtsopts=-N 
+  default-language:    Haskell2010
+
+source-repository head
+  type:     git
+  location: https://hub.darcs.net/vmchale/tweet-hs