File: array.cabal

package info (click to toggle)
ghc 8.0.1-17
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 55,080 kB
  • ctags: 9,332
  • sloc: haskell: 363,120; ansic: 54,900; sh: 4,782; makefile: 974; perl: 542; asm: 315; python: 306; xml: 154; lisp: 7
file content (57 lines) | stat: -rw-r--r-- 1,717 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
name:          array
version:       0.5.1.1
-- NOTE: Don't forget to update ./changelog.md
license:       BSD3
license-file:  LICENSE
maintainer:    libraries@haskell.org
bug-reports:   http://ghc.haskell.org/trac/ghc/newticket?component=libraries%20%28other%29&keywords=array
synopsis:      Mutable and immutable arrays
category:      Data Structures
build-type:    Simple
cabal-version: >=1.10
tested-with:   GHC==7.6.3, GHC==7.6.2, GHC==7.6.1, GHC==7.4.2, GHC==7.4.1
description:
    In addition to providing the "Data.Array" module
    <http://www.haskell.org/onlinereport/haskell2010/haskellch14.html as specified in the Haskell 2010 Language Report>,
    this package also defines the classes 'IArray' of
    immutable arrays and 'MArray' of arrays mutable within appropriate
    monads, as well as some instances of these classes.

extra-source-files: changelog.md

source-repository head
  type:     git
  location: http://git.haskell.org/packages/array.git

library
  default-language: Haskell2010
  other-extensions:
      BangPatterns,
      CPP,
      DeriveDataTypeable,
      FlexibleContexts,
      FlexibleInstances,
      MagicHash,
      MultiParamTypeClasses,
      RankNTypes,
      Trustworthy,
      UnboxedTuples,
      UnliftedFFITypes
  build-depends: base >= 4.5 && < 4.10
  ghc-options: -Wall
  exposed-modules:
      Data.Array
      Data.Array.Base
      Data.Array.IArray
      Data.Array.IO
      Data.Array.IO.Safe
      Data.Array.IO.Internals
      Data.Array.MArray
      Data.Array.MArray.Safe
      Data.Array.ST
      Data.Array.ST.Safe
      Data.Array.Storable
      Data.Array.Storable.Safe
      Data.Array.Storable.Internals
      Data.Array.Unboxed
      Data.Array.Unsafe