rle-0.1.0.0: rle.cabal
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 5dd2df18ed4d9085540be3036e2efcf42e04d42f9c0549217d35bbef7e9f9aeb
name: rle
version: 0.1.0.0
synopsis: A data type of run-length-encoded lists
description: Provides an @RLE@ type that stores a sequence of elements in the form of
length/value pairs, stored in a normal form with no adjacent runs of equal
values.
category: Data Structures
homepage: https://github.com/google/hs-rle#readme
bug-reports: https://github.com/google/hs-rle/issues
author: Andrew Pritchard <awpr@google.com>
maintainer: Andrew Pritchard <awpr@google.com>
copyright: 2019-2021 Google LLC
license: Apache-2.0
license-file: LICENSE
build-type: Simple
extra-source-files:
CHANGELOG.md
source-repository head
type: git
location: https://github.com/google/hs-rle
library
exposed-modules:
Data.RLE
other-modules:
Paths_rle
hs-source-dirs:
src
build-depends:
base >=4.12 && <4.16
, cereal >=0.5.2 && <0.6
, deepseq >=1.4 && <1.5
, portray >=0.1 && <0.2
, portray-diff >=0.1 && <0.2
, wrapped >=0.1 && <0.2
default-language: Haskell2010
test-suite RLE-test
type: exitcode-stdio-1.0
main-is: RLETest.hs
other-modules:
Paths_rle
hs-source-dirs:
test
build-depends:
QuickCheck
, base >=4.12 && <4.16
, cereal >=0.5.2 && <0.6
, deepseq >=1.4 && <1.5
, portray >=0.1 && <0.2
, portray-diff >=0.1 && <0.2
, rle
, test-framework
, test-framework-quickcheck2
, wrapped >=0.1 && <0.2
default-language: Haskell2010