File: twitter-types.cabal

package info (click to toggle)
haskell-twitter-types 0.11.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 340 kB
  • sloc: haskell: 1,784; makefile: 5
file content (65 lines) | stat: -rw-r--r-- 1,655 bytes parent folder | download | duplicates (2)
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