parent
d8748b1ada
commit
0836491dc0
@ -1,101 +1,101 @@
|
|||||||
Cabal-Version: 2.2
|
Cabal-Version: 2.2
|
||||||
Name: primitive
|
Name: primitive
|
||||||
Version: 0.7.1.0
|
Version: 0.7.1.0
|
||||||
x-revision: 1
|
x-revision: 3
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
License-File: LICENSE
|
License-File: LICENSE
|
||||||
|
|
||||||
Author: Roman Leshchinskiy <rl@cse.unsw.edu.au>
|
Author: Roman Leshchinskiy <rl@cse.unsw.edu.au>
|
||||||
Maintainer: libraries@haskell.org
|
Maintainer: libraries@haskell.org
|
||||||
Copyright: (c) Roman Leshchinskiy 2009-2012
|
Copyright: (c) Roman Leshchinskiy 2009-2012
|
||||||
Homepage: https://github.com/haskell/primitive
|
Homepage: https://github.com/haskell/primitive
|
||||||
Bug-Reports: https://github.com/haskell/primitive/issues
|
Bug-Reports: https://github.com/haskell/primitive/issues
|
||||||
Category: Data
|
Category: Data
|
||||||
Synopsis: Primitive memory-related operations
|
Synopsis: Primitive memory-related operations
|
||||||
Build-Type: Simple
|
Build-Type: Simple
|
||||||
Description: This package provides various primitive memory-related operations.
|
Description: This package provides various primitive memory-related operations.
|
||||||
|
|
||||||
Extra-Source-Files: changelog.md
|
Extra-Source-Files: changelog.md
|
||||||
test/*.hs
|
test/*.hs
|
||||||
test/LICENSE
|
test/LICENSE
|
||||||
|
|
||||||
Tested-With:
|
Tested-With:
|
||||||
GHC == 7.4.2,
|
GHC == 7.4.2,
|
||||||
GHC == 7.6.3,
|
GHC == 7.6.3,
|
||||||
GHC == 7.8.4,
|
GHC == 7.8.4,
|
||||||
GHC == 7.10.3,
|
GHC == 7.10.3,
|
||||||
GHC == 8.0.2,
|
GHC == 8.0.2,
|
||||||
GHC == 8.2.2,
|
GHC == 8.2.2,
|
||||||
GHC == 8.4.4,
|
GHC == 8.4.4,
|
||||||
GHC == 8.6.5,
|
GHC == 8.6.5,
|
||||||
GHC == 8.8.2,
|
GHC == 8.8.2,
|
||||||
GHC == 8.10.1
|
GHC == 8.10.1
|
||||||
|
|
||||||
Library
|
Library
|
||||||
Default-Language: Haskell2010
|
Default-Language: Haskell2010
|
||||||
Other-Extensions:
|
Other-Extensions:
|
||||||
BangPatterns, CPP, DeriveDataTypeable,
|
BangPatterns, CPP, DeriveDataTypeable,
|
||||||
MagicHash, TypeFamilies, UnboxedTuples, UnliftedFFITypes
|
MagicHash, TypeFamilies, UnboxedTuples, UnliftedFFITypes
|
||||||
|
|
||||||
Exposed-Modules:
|
Exposed-Modules:
|
||||||
Control.Monad.Primitive
|
Control.Monad.Primitive
|
||||||
Data.Primitive
|
Data.Primitive
|
||||||
Data.Primitive.MachDeps
|
Data.Primitive.MachDeps
|
||||||
Data.Primitive.Types
|
Data.Primitive.Types
|
||||||
Data.Primitive.Array
|
Data.Primitive.Array
|
||||||
Data.Primitive.ByteArray
|
Data.Primitive.ByteArray
|
||||||
Data.Primitive.PrimArray
|
Data.Primitive.PrimArray
|
||||||
Data.Primitive.SmallArray
|
Data.Primitive.SmallArray
|
||||||
Data.Primitive.Ptr
|
Data.Primitive.Ptr
|
||||||
Data.Primitive.MutVar
|
Data.Primitive.MutVar
|
||||||
Data.Primitive.MVar
|
Data.Primitive.MVar
|
||||||
|
|
||||||
Other-Modules:
|
Other-Modules:
|
||||||
Data.Primitive.Internal.Compat
|
Data.Primitive.Internal.Compat
|
||||||
Data.Primitive.Internal.Operations
|
Data.Primitive.Internal.Operations
|
||||||
|
|
||||||
Build-Depends: base >= 4.5 && < 4.15
|
Build-Depends: base >= 4.5 && < 4.17
|
||||||
, deepseq >= 1.1 && < 1.5
|
, deepseq >= 1.1 && < 1.5
|
||||||
, transformers >= 0.2 && < 0.6
|
, transformers >= 0.2 && < 0.6
|
||||||
if !impl(ghc >= 8.0)
|
if !impl(ghc >= 8.0)
|
||||||
Build-Depends: fail == 4.9.*
|
Build-Depends: fail == 4.9.*
|
||||||
|
|
||||||
Ghc-Options: -O2
|
Ghc-Options: -O2
|
||||||
|
|
||||||
Include-Dirs: cbits
|
Include-Dirs: cbits
|
||||||
Install-Includes: primitive-memops.h
|
Install-Includes: primitive-memops.h
|
||||||
includes: primitive-memops.h
|
includes: primitive-memops.h
|
||||||
c-sources: cbits/primitive-memops.c
|
c-sources: cbits/primitive-memops.c
|
||||||
if !os(solaris)
|
if !os(solaris)
|
||||||
cc-options: -ftree-vectorize
|
cc-options: -ftree-vectorize
|
||||||
if arch(i386) || arch(x86_64)
|
if arch(i386) || arch(x86_64)
|
||||||
cc-options: -msse2
|
cc-options: -msse2
|
||||||
|
|
||||||
test-suite test-qc
|
test-suite test-qc
|
||||||
Default-Language: Haskell2010
|
Default-Language: Haskell2010
|
||||||
hs-source-dirs: test
|
hs-source-dirs: test
|
||||||
test/src
|
test/src
|
||||||
main-is: main.hs
|
main-is: main.hs
|
||||||
Other-Modules: PrimLaws
|
Other-Modules: PrimLaws
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
build-depends: base
|
build-depends: base
|
||||||
, base-orphans
|
, base-orphans
|
||||||
, ghc-prim
|
, ghc-prim
|
||||||
, primitive
|
, primitive
|
||||||
, quickcheck-classes-base >=0.6 && <0.7
|
, quickcheck-classes-base >=0.6 && <0.7
|
||||||
, QuickCheck >= 2.13 && < 2.15
|
, QuickCheck >= 2.13 && < 2.15
|
||||||
, tasty ^>= 1.2
|
, tasty ^>= 1.2
|
||||||
, tasty-quickcheck
|
, tasty-quickcheck
|
||||||
, tagged
|
, tagged
|
||||||
, transformers >=0.4
|
, transformers >=0.4
|
||||||
, transformers-compat
|
, transformers-compat
|
||||||
, semigroups
|
, semigroups
|
||||||
|
|
||||||
cpp-options: -DHAVE_UNARY_LAWS
|
cpp-options: -DHAVE_UNARY_LAWS
|
||||||
ghc-options: -O2
|
ghc-options: -O2
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
source-repository head
|
source-repository head
|
||||||
type: git
|
type: git
|
||||||
location: https://github.com/haskell/primitive
|
location: https://github.com/haskell/primitive
|
||||||
|
Loading…
Reference in new issue