hw-prim-0.0.0.13: hw-prim.cabal
name: hw-prim
version: 0.0.0.13
synopsis: Primitive functions and data types
description: Please see README.md
homepage: http://github.com/haskell-works/hw-prim#readme
license: BSD3
license-file: LICENSE
author: John Ky
maintainer: newhoggy@gmail.com
copyright: 2016 John Ky
category: Data
stability: Experimental
build-type: Simple
extra-source-files: README.md
cabal-version: >= 1.10
executable hw-prim-example
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -msse4.2
build-depends: base >= 4 && < 5
, hw-prim
default-language: Haskell2010
library
hs-source-dirs: src
exposed-modules: HaskellWorks.Data.ByteString
, HaskellWorks.Data.Char.IsChar
, HaskellWorks.Data.Decode
, HaskellWorks.Data.FromByteString
, HaskellWorks.Data.FromForeignRegion
, HaskellWorks.Data.Positioning
, HaskellWorks.Data.Search
, HaskellWorks.Data.TreeCursor
, HaskellWorks.Data.Vector.BoxedVectorLike
, HaskellWorks.Data.Vector.StorableVectorLike
, HaskellWorks.Data.Vector.VectorLike
build-depends: base >= 4.7 && < 5
, vector
, bytestring
, random
default-language: Haskell2010
ghc-options: -rtsopts -with-rtsopts=-N -Wall -O2 -msse4.2
test-suite hw-prim-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: HaskellWorks.Data.SearchSpec
build-depends: base
, hspec
, QuickCheck
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/haskell-works/hw-prim
benchmark bench
Type: exitcode-stdio-1.0
HS-Source-Dirs: bench
Main-Is: Main.hs
GHC-Options: -Wall -O2 -msse4.2
Default-Language: Haskell2010
Build-Depends: base >= 4 && < 5
, criterion
, hw-prim
, vector