slist-0.0.0: slist.cabal
cabal-version: 2.0
name: slist
version: 0.0.0
synopsis: Sized list
description: This package implements @Slist@ data structure that stores the size
of the list along with the list itself.
homepage: https://github.com/vrom911/slist
bug-reports: https://github.com/vrom911/slist/issues
license: MPL-2.0
license-file: LICENSE
author: Veronika Romashkina
maintainer: vrom911@gmail.com
copyright: 2019 Veronika Romashkina
category: Data Structures, List
build-type: Simple
extra-doc-files: README.md
, CHANGELOG.md
tested-with: GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.3
source-repository head
type: git
location: https://github.com/vrom911/slist.git
library
hs-source-dirs: src
exposed-modules: Slist
Slist.Size
build-depends: base >= 4.10.1.0 && < 4.13
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
default-language: Haskell2010
default-extensions: ConstraintKinds
DeriveGeneric
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
ViewPatterns
test-suite slist-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base >= 4.10.1.0 && < 4.13
, slist
ghc-options: -Wall
-threaded
-rtsopts
-with-rtsopts=-N
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
default-language: Haskell2010
default-extensions: ConstraintKinds
DeriveGeneric
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
ViewPatterns
test-suite slist-doctest
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Doctest.hs
build-depends: base >= 4.9 && < 5
, doctest
, Glob
ghc-options: -threaded
default-language: Haskell2010