word8set-0.1.1: word8set.cabal
cabal-version: 3.0
name: word8set
version: 0.1.1
synopsis: Word8 set
description: Set of Word8 numbers. Backed up by Word256.
category: Data
author: Oleg Grenrus <oleg.grenrus@iki.fi>
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
homepage: https://github.com/phadej/word8set
bug-reports: https://github.com/phadej/word8set/issues
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
extra-source-files: CHANGELOG.md
tested-with:
GHC ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
|| ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.7
|| ==9.4.5
|| ==9.6.1
source-repository head
type: git
location: https://github.com/phadej/word8set.git
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: Data.Word8Set
-- boot libraries
build-depends:
, base >=4.9 && <4.19
, deepseq >=1.4.2.0 && <1.5
, template-haskell >=2.11 && <2.21
-- other dependencies
build-depends:
, lattices ^>=2.2
, QuickCheck ^>=2.14.2
, wide-word ^>=0.1.5.0
test-suite word8set-tests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: word8set-tests.hs
-- library dependencies
build-depends:
, base
, lattices
, QuickCheck
, word8set
-- test dependencies
build-depends:
, tasty ^>=1.4.3
, tasty-quickcheck ^>=0.10.2