File: vector-instances.cabal

package info (click to toggle)
haskell-vector-instances 3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 84 kB
  • sloc: haskell: 93; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 1,002 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
name:                vector-instances
version:             3.3
synopsis:            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.6
extra-source-files:
  .travis.yml
  .ghci
  .vim.custom
  .gitignore
  CHANGELOG.markdown
  README.markdown

source-repository head
  type: git
  location: git://github.com/ekmett/vector-instances.git

library
  other-extensions: TypeFamilies
  exposed-modules: Data.Vector.Instances
  hs-source-dirs: src
  build-depends:
    base          >= 4       && < 5,
    vector        >= 0.9     && < 0.11,
    semigroupoids >= 3,
    semigroups    >= 0.8.3.1,
    comonad       >= 3,
    pointed       >= 3,
    keys          >= 3