strict-tuple-0.1.2: strict-tuple.cabal
cabal-version: 2.2
name: strict-tuple
version: 0.1.2
category: Data
description: Strict tuples.
synopsis: Strict tuples
author: Mitchell Rosen
maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>
homepage: https://github.com/mitchellwrosen/strict-tuple
bug-reports: https://github.com/mitchellwrosen/strict-tuple/issues
copyright: (c) 2018, Mitchell Rosen
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
tested-with: GHC == 8.4.4, GHC == 8.6.2
extra-source-files:
.travis.yml
CHANGELOG.md
README.md
source-repository head
type: git
location: git://github.com/mitchellwrosen/strict-tuple.git
library
build-depends:
base ^>= 4.11 || ^>= 4.12
, deepseq >= 1.4.3.0
, hashable >= 1.2.5.0
default-language:
Haskell2010
exposed-modules:
Data.Tuple.Strict
ghc-options:
-Wall
hs-source-dirs:
src
test-suite tests
build-depends:
base
, strict-tuple
default-language:
Haskell2010
ghc-options:
-Wall
hs-source-dirs:
test
main-is:
Main.hs
type:
exitcode-stdio-1.0