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
|
name: vector-instances
version: 3.4.2
synopsis: Orphan Instances for 'Data.Vector'
description: Orphan Instances for 'Data.Vector'.
homepage: http://github.com/ekmett/vector-instances
bug-reports: http://github.com/ekmett/vector-instances/issues
license: BSD3
license-file: LICENSE
author: Edward Kmett
maintainer: ekmett@gmail.com
category: Data, Data Structures
build-type: Simple
cabal-version: >=1.10
tested-with:
GHC==8.0.2,
GHC==8.2.2,
GHC==8.4.4,
GHC==8.6.5,
GHC==8.8.4,
GHC==8.10.7,
GHC==9.0.2,
GHC==9.2.7,
GHC==9.4.4,
GHC==9.6.1
extra-source-files:
.vim.custom
.gitignore
CHANGELOG.markdown
README.markdown
source-repository head
type: git
location: git://github.com/ekmett/vector-instances.git
flag hashable
description:
You can disable the use of the `hashable` package using `-f-hashable`.
default: True
manual: True
library
default-language: Haskell2010
other-extensions: TypeFamilies
exposed-modules: Data.Vector.Instances
hs-source-dirs: src
build-depends:
base >= 4.9 && < 5,
vector >= 0.12 && < 0.14,
semigroupoids >= 3,
comonad >= 3,
pointed >= 3,
keys >= 3
if flag(hashable)
build-depends: hashable >= 1.2.5.0
|