packages feed

short-vec-0.1.0.1: short-vec.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.35.1.
--
-- see: https://github.com/sol/hpack

name:           short-vec
version:        0.1.0.1
synopsis:       Length-indexed vectors using SmallArray#
description:    This provides performant length-indexed vectors with a suite of rewrite rules
                implementing fusion of intermediate structures, so that expressions involving
                many operations can usually be compiled to a single pass of computing and
                writing each index of the final 'Vec'.
category:       Data
homepage:       https://github.com/awpr/fin-vec#readme
bug-reports:    https://github.com/awpr/fin-vec/issues
author:         Lennart Augustsson <lennart@augustsson.net>, Wren Romano <wrengr@google.com>, Andrew Pritchard <awpritchard@gmail.com>

maintainer:     Andrew Pritchard <awpritchard@gmail.com>
copyright:      2018-2021 Google LLC; 2022-2023 Andrew Pritchard
license:        Apache-2.0
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    CHANGELOG.md
    README.md

source-repository head
  type: git
  location: https://github.com/awpr/fin-vec
  subdir: short-vec

library
  exposed-modules:
      Data.Vec.Short
      Data.Vec.Short.Explicit
      Data.Vec.Short.Internal
  hs-source-dirs:
      src
  build-depends:
      QuickCheck >=2.5 && <2.15
    , adjunctions ==4.4.*
    , base >=4.12 && <4.19
    , data-default-class >=0.0 && <0.2
    , deepseq >=1.1 && <1.5
    , distributive >=0.1 && <0.7
    , fin-int >=0.1 && <0.3
    , indexed-traversable ==0.1.*
    , integer-gmp >=0.5 && <1.2
    , portray >=0.1 && <0.4
    , portray-diff ==0.1.*
    , semigroupoids >=1.0 && <6.1
    , sint >=0.1 && <0.3
  default-language: Haskell2010

test-suite Vec-test
  type: exitcode-stdio-1.0
  main-is: Tests.hs
  hs-source-dirs:
      test
  build-depends:
      HUnit
    , QuickCheck >=2.4.0.1
    , adjunctions ==4.4.*
    , base
    , data-default-class >=0.0 && <0.2
    , deepseq >=1.1 && <1.5
    , distributive >=0.1 && <0.7
    , fin-int >=0.1 && <0.3
    , indexed-traversable ==0.1.*
    , integer-gmp >=0.5 && <1.2
    , portray >=0.1 && <0.4
    , portray-diff ==0.1.*
    , semigroupoids >=1.0 && <6.1
    , short-vec
    , sint >=0.1 && <0.3
    , test-framework >=0.3.3
    , test-framework-hunit
    , test-framework-quickcheck2
  default-language: Haskell2010

benchmark Vec-benchmark
  type: exitcode-stdio-1.0
  main-is: Benchmark.hs
  hs-source-dirs:
      test
  build-depends:
      QuickCheck >=2.5 && <2.15
    , adjunctions ==4.4.*
    , base >=4.12 && <4.19
    , data-default-class >=0.0 && <0.2
    , deepseq
    , distributive >=0.1 && <0.7
    , fin-int
    , gauge
    , indexed-traversable ==0.1.*
    , integer-gmp >=0.5 && <1.2
    , portray >=0.1 && <0.4
    , portray-diff ==0.1.*
    , semigroupoids >=1.0 && <6.1
    , short-vec
    , sint >=0.1 && <0.3
  default-language: Haskell2010