File: binary-instances.cabal

package info (click to toggle)
haskell-binary-instances 1.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 132 kB
  • sloc: haskell: 309; makefile: 6
file content (99 lines) | stat: -rw-r--r-- 2,964 bytes parent folder | download
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name:               binary-instances
version:            1.0.4
x-revision:         3
synopsis:           Orphan instances for binary
description:
  `binary-instances` defines orphan instances for types in some popular packages.

category:           Web
homepage:           https://github.com/haskellari/binary-instances#readme
bug-reports:        https://github.com/haskellari/binary-instances/issues
author:             Oleg Grenrus <oleg.grenrus@iki.fi>
maintainer:         Oleg Grenrus <oleg.grenrus@iki.fi>
license:            BSD3
license-file:       LICENSE
build-type:         Simple
cabal-version:      >=1.10
tested-with:
  GHC ==7.6.3
   || ==7.8.4
   || ==7.10.3
   || ==8.0.2
   || ==8.2.2
   || ==8.4.4
   || ==8.6.5
   || ==8.8.4
   || ==8.10.7
   || ==9.0.2
   || ==9.2.8
   || ==9.4.7
   || ==9.6.3
   || ==9.8.1

extra-source-files: CHANGELOG.md

source-repository head
  type:     git
  location: https://github.com/haskellari/binary-instances

library
  default-language: Haskell2010
  hs-source-dirs:   src
  build-depends:
      aeson                    >=0.7.0.6   && <1.6 || >=2.0.0.0 && <2.3
    , base                     >=4.6.0.1   && <4.20
    , binary                   >=0.5.1.1   && <0.8.10
    , binary-orphans           >=1.0.4     && <1.1
    , case-insensitive         >=1.2.0.4   && <1.2.2
    , hashable                 >=1.2.3.3   && <1.5
    , primitive                >=0.7.2.0   && <0.10
    , scientific               >=0.3.3.8   && <0.4
    , tagged                   >=0.7.3     && <0.8.9
    , text                     >=1.2.0.6   && <1.3 || >=2.0 && <2.2
    , text-binary              >=0.2.1.1   && <0.3
    , time-compat              >=1.9.4     && <1.10
    , unordered-containers     >=0.2.5.1   && <0.3
    , vector                   >=0.10.12.3 && <0.14
    , vector-binary-instances  >=0.2.1.0   && <0.3

  exposed-modules:
    Data.Binary.Instances
    Data.Binary.Instances.Aeson
    Data.Binary.Instances.CaseInsensitive
    Data.Binary.Instances.Hashable
    Data.Binary.Instances.Primitive
    Data.Binary.Instances.Scientific
    Data.Binary.Instances.Tagged
    Data.Binary.Instances.Text
    Data.Binary.Instances.Time
    Data.Binary.Instances.UnorderedContainers
    Data.Binary.Instances.Vector

test-suite binary-instances-test
  default-language: Haskell2010
  type:             exitcode-stdio-1.0
  main-is:          Tests.hs
  hs-source-dirs:   test
  ghc-options:      -Wall -fno-warn-orphans
  build-depends:
      aeson
    , base
    , binary
    , binary-instances
    , bytestring
    , case-insensitive
    , hashable
    , primitive
    , QuickCheck            >=2.13.1   && <2.15
    , quickcheck-instances  >=0.3.29   && <0.4
    , scientific
    , tagged
    , tasty                 >=0.10.1.2 && <1.6
    , tasty-quickcheck      >=0.8.3.2  && <0.11
    , text
    , time-compat
    , unordered-containers
    , vector

  if impl(ghc >=8.0 && <9.4)
    build-depends: data-array-byte