packages feed

Cabal revisions of tweet-hs-1.0.2.1

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

revision 1
-cabal-version:      >=1.10-name:               tweet-hs-version:            1.0.2.1-license:            BSD3-license-file:       LICENSE-copyright:          2016-2019 Vanessa McHale-maintainer:         vamchale@gmail.com-author:             Vanessa McHale-stability:          stable-synopsis:           Command-line tool for twitter-description:        a Command Line Interface Tweeter-category:           Web-build-type:         Simple-extra-source-files:-    README.md-    cabal.project.local-    bash/mkCompletions-    test/data--source-repository head-    type:     git-    location: https://hub.darcs.net/vmchale/tweet-hs--flag llvm-fast-    description: Enable build with llvm backend-    default:     False--flag library-    description: Don't build an executable-    default:     False--flag development-    description: Enable -Werror-    default:     False-    manual:      True--flag parallel-gc-    description: Use parallel garbage collector-    default:     False--library-    exposed-modules:-        Web.Tweet-        Web.Tweet.Parser-        Web.Tweet.Sign-        Web.Tweet.API-        Web.Tweet.Utils--    hs-source-dirs:   src-    other-modules:-        Web.Tweet.Types-        Web.Tweet.Utils.Colors-        Web.Tweet.API.Internal-        Web.Tweet.Utils.API--    default-language: Haskell2010-    ghc-options:-        -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates--    build-depends:-        base >=4.11 && <5,-        http-client-tls -any,-        http-client -any,-        http-types -any,-        authenticate-oauth -any,-        megaparsec >=7.0,-        bytestring -any,-        split -any,-        microlens -any,-        unordered-containers -any,-        htoml-megaparsec >=2.1.0.0,-        text -any,-        containers >=0.6.0.0,-        ansi-wl-pprint -any,-        composition-prelude -any,-        extra -any--    if flag(development)-        ghc-options: -Werror--executable tweet-    main-is:          Main.hs-    hs-source-dirs:   app-    other-modules:    Paths_tweet_hs-    default-language: Haskell2010-    ghc-options:-        -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates--    build-depends:-        base -any,-        tweet-hs -any,-        optparse-applicative -any,-        directory -any,-        bytestring -any--    if flag(library)-        buildable: False--    if flag(llvm-fast)-        ghc-options: -fllvm -optlo-O3 -O3--    if flag(parallel-gc)-        ghc-options: -rtsopts -with-rtsopts=-N--    if flag(development)-        ghc-options: -Werror--benchmark tweeths-bench-    type:             exitcode-stdio-1.0-    main-is:          Bench.hs-    hs-source-dirs:   bench-    default-language: Haskell2010-    ghc-options:-        -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates--    build-depends:-        base -any,-        criterion -any,-        tweet-hs -any,-        bytestring -any,-        megaparsec -any--    if flag(llvm-fast)-        ghc-options: -fllvm -optlo-O3 -O3--    if flag(development)-        ghc-options: -Werror+cabal-version:      >=1.10
+name:               tweet-hs
+version:            1.0.2.1
+x-revision: 1
+license:            BSD3
+license-file:       LICENSE
+copyright:          2016-2019 Vanessa McHale
+maintainer:         vamchale@gmail.com
+author:             Vanessa McHale
+stability:          stable
+synopsis:           Command-line tool for twitter
+description:        a Command Line Interface Tweeter
+category:           Web
+build-type:         Simple
+extra-source-files:
+    README.md
+    cabal.project.local
+    bash/mkCompletions
+    test/data
+
+source-repository head
+    type:     git
+    location: https://hub.darcs.net/vmchale/tweet-hs
+
+flag llvm-fast
+    description: Enable build with llvm backend
+    default:     False
+
+flag library
+    description: Don't build an executable
+    default:     False
+
+flag development
+    description: Enable -Werror
+    default:     False
+    manual:      True
+
+flag parallel-gc
+    description: Use parallel garbage collector
+    default:     False
+
+library
+    exposed-modules:
+        Web.Tweet
+        Web.Tweet.Parser
+        Web.Tweet.Sign
+        Web.Tweet.API
+        Web.Tweet.Utils
+
+    hs-source-dirs:   src
+    other-modules:
+        Web.Tweet.Types
+        Web.Tweet.Utils.Colors
+        Web.Tweet.API.Internal
+        Web.Tweet.Utils.API
+
+    default-language: Haskell2010
+    ghc-options:
+        -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
+
+    build-depends:
+        base >=4.11 && <5,
+        http-client-tls -any,
+        http-client -any,
+        http-types -any,
+        authenticate-oauth -any,
+        megaparsec >=7.0,
+        bytestring -any,
+        split -any,
+        microlens -any,
+        unordered-containers -any,
+        htoml-megaparsec >=2.1.0.0,
+        text -any,
+        containers >=0.6.0.0,
+        ansi-wl-pprint -any,
+        composition-prelude <3.0.0.0,
+        extra -any
+
+    if flag(development)
+        ghc-options: -Werror
+
+executable tweet
+    main-is:          Main.hs
+    hs-source-dirs:   app
+    other-modules:    Paths_tweet_hs
+    default-language: Haskell2010
+    ghc-options:
+        -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
+
+    build-depends:
+        base -any,
+        tweet-hs -any,
+        optparse-applicative -any,
+        directory -any,
+        bytestring -any
+
+    if flag(library)
+        buildable: False
+
+    if flag(llvm-fast)
+        ghc-options: -fllvm -optlo-O3 -O3
+
+    if flag(parallel-gc)
+        ghc-options: -rtsopts -with-rtsopts=-N
+
+    if flag(development)
+        ghc-options: -Werror
+
+benchmark tweeths-bench
+    type:             exitcode-stdio-1.0
+    main-is:          Bench.hs
+    hs-source-dirs:   bench
+    default-language: Haskell2010
+    ghc-options:
+        -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
+
+    build-depends:
+        base -any,
+        criterion -any,
+        tweet-hs -any,
+        bytestring -any,
+        megaparsec -any
+
+    if flag(llvm-fast)
+        ghc-options: -fllvm -optlo-O3 -O3
+
+    if flag(development)
+        ghc-options: -Werror