name: twitter-conduit version: 0.0.3 license: BSD3 license-file: LICENSE author: HATTORI Hiroki, Hideyuki Tanaka, Takahiro HIMURA maintainer: Takahiro HIMURA synopsis: Twitter API package with conduit interface and Streaming API support. category: Web, Conduit stability: Experimental cabal-version: >= 1.8 build-type: Simple homepage: https://github.com/himura/twitter-conduit description: This package provides bindings to Twitter's APIs (see ). . This package uses the http-conduit package for accessing the Twitter API (see ). This package also depends on the twitter-types package (see ). . You can find basic examples in the directory. . This package is under development. If you find something that has not been implemented yet, please send a pull request or open an issue on GitHub. extra-source-files: .gitignore .travis.yml README.md sample/*.hs source-repository head type: git location: git://github.com/himura/twitter-conduit.git flag build-samples description: build samples default: False library ghc-options: -Wall build-depends: base >= 4 && < 5 , transformers >= 0.2.2 , transformers-base , template-haskell , lifted-base >= 0.1 , monad-control >= 0.3 , lens >= 4.0 , authenticate-oauth >= 1.3 , resourcet >= 0.4.3 && < 0.5 , conduit >= 1.0 && < 1.1 , failure >= 0.2 , monad-logger , shakespeare >= 2.0 , http-types , http-conduit >= 2.0 && < 2.1 , http-client >= 0.3 , aeson >= 0.7 , attoparsec >= 0.10 , attoparsec-conduit >= 1.0 , data-default >= 0.3 , bytestring >= 0.9 , text >= 0.11 , containers , time , twitter-types >= 0.2 exposed-modules: Web.Twitter.Conduit Web.Twitter.Conduit.Base Web.Twitter.Conduit.Cursor Web.Twitter.Conduit.Api Web.Twitter.Conduit.Error Web.Twitter.Conduit.Monad Web.Twitter.Conduit.Stream Web.Twitter.Conduit.Status Web.Twitter.Conduit.Request Web.Twitter.Conduit.Parameters Web.Twitter.Conduit.Parameters.Internal Web.Twitter.Conduit.Parameters.TH other-modules: test-suite hlint type: exitcode-stdio-1.0 main-is: hlint.hs hs-source-dirs: tests build-depends: base , hlint >= 1.7 test-suite doctests type: exitcode-stdio-1.0 main-is: doctests.hs hs-source-dirs: tests build-depends: base , filepath , directory , doctest executable simple main-is: simple.hs hs-source-dirs: sample/ if !flag(build-samples) buildable: False else build-depends: base >= 4.0 && < 5 , transformers-base , transformers , monad-control , lens , bytestring , text , data-default , resourcet , conduit , http-conduit , monad-logger , authenticate-oauth , twitter-conduit executable userstream main-is: userstream.hs hs-source-dirs: sample/ if !flag(build-samples) buildable: False else build-depends: base >= 4.0 && < 5 , containers , transformers-base , transformers , monad-control , bytestring , text , filepath , directory , network , process , case-insensitive , lens , aeson , data-default , resourcet , conduit , http-conduit , monad-logger , authenticate-oauth , twitter-conduit executable oauth_callback main-is: oauth_callback.hs hs-source-dirs: sample/ if !flag(build-samples) buildable: False else build-depends: base >= 4.0 && < 5 , containers , transformers-base , transformers , monad-control , bytestring , text , resourcet , conduit , http-types , http-conduit , authenticate-oauth , twitter-conduit , scotty >= 0.7 executable oauth_pin main-is: oauth_pin.hs hs-source-dirs: sample/ if !flag(build-samples) buildable: False else build-depends: base >= 4.0 && < 5 , containers , transformers-base , transformers , monad-control , bytestring , text , resourcet , conduit , http-types , http-conduit , authenticate-oauth , twitter-conduit