File: hashable-time.cabal

package info (click to toggle)
haskell-hashable-time 0.3-1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 72 kB
  • sloc: haskell: 31; makefile: 5
file content (37 lines) | stat: -rw-r--r-- 1,157 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
name:                hashable-time
version:             0.3
synopsis:            Hashable instances for Data.Time
description:
  Hashable instances for types in Data.Time
license:             BSD3
license-file:        LICENSE
author:              Alexey Karakulov <ankarakulov@gmail.com>
maintainer:          Alexey Karakulov <ankarakulov@gmail.com>
category:            Data
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md changelog.md
tested-with:         GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.5, GHC==8.8.3, GHC==8.10.4, GHC==9.0.1

library
  exposed-modules:  Data.Hashable.Time
  hs-source-dirs:   src
  default-language: Haskell2010
  ghc-options:      -Wall
  other-extensions: CPP
  build-depends:    base >=4.7 && <4.16, time-compat >=1.9.6 && <1.10

source-repository head
  type:     git
  location: https://github.com/w3rs/hashable-time

test-suite instances
  default-language: Haskell2010
  type:             exitcode-stdio-1.0
  hs-source-dirs:   test-instances
  main-is:          Test.hs
  build-depends:
      base
    , hashable
    , hashable-time
    , time-compat