1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
cabal-version: >=1.10
name: twitter-types
version: 0.11.0
license: BSD3
license-file: LICENSE
maintainer: Takahiro HIMURA <taka@himura.jp>
author: Takahiro HIMURA
stability: Experimental
tested-with: ghc ==8.8.4 ghc ==8.10.4 ghc ==9.0.1
homepage: https://github.com/himura/twitter-types
synopsis: Twitter JSON parser and types
description:
Please see the README on Github at <https://github.com/himura/twitter-types#readme>
category: Web
build-type: Simple
extra-source-files:
README.md
tests/fixtures/*.json
tests/fixtures/tweet-updates/*.json
source-repository head
type: git
location: git://github.com/himura/twitter-types.git
library
exposed-modules: Web.Twitter.Types
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.9 && <5,
aeson >=0.3.2.2,
text,
time >=1.5,
unordered-containers
test-suite tests
type: exitcode-stdio-1.0
main-is: spec_main.hs
hs-source-dirs: tests
other-modules:
Fixtures
Instances
PropFromToJSONTest
StatusTest
TypesTest
default-language: Haskell2010
ghc-options: -Wall
build-depends:
base >=4.9 && <5,
twitter-types,
aeson,
attoparsec,
bytestring,
generic-random,
directory,
filepath,
tasty >=0.7,
tasty-hunit,
tasty-quickcheck,
tasty-th,
text,
time,
unordered-containers
|