1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
cabal-version: 3.0
name: strict-list
version: 0.1.7.5
synopsis: Strict linked list
description:
Implementation of strict linked list with care taken about stack.
category: Data
homepage: https://github.com/nikita-volkov/strict-list
bug-reports: https://github.com/nikita-volkov/strict-list/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2019, Nikita Volkov
license: MIT
license-file: LICENSE
source-repository head
type: git
location: git://github.com/nikita-volkov/strict-list.git
common language-settings
default-language: Haskell2010
default-extensions:
BangPatterns
DeriveDataTypeable
DeriveFunctor
DeriveGeneric
DeriveTraversable
FlexibleContexts
FlexibleInstances
LambdaCase
NoImplicitPrelude
RankNTypes
ScopedTypeVariables
StandaloneDeriving
TypeApplications
TypeFamilies
library
import: language-settings
hs-source-dirs: library
exposed-modules: StrictList
other-modules: StrictList.Prelude
build-depends:
base >=4.9 && <5,
deepseq >=1.4.3 && <2,
hashable >=1.2 && <2,
semigroupoids >=5.3 && <7,
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
default-extensions:
BangPatterns
DeriveDataTypeable
DeriveFunctor
DeriveGeneric
DeriveTraversable
FlexibleContexts
FlexibleInstances
LambdaCase
NoImplicitPrelude
RankNTypes
ScopedTypeVariables
StandaloneDeriving
TypeApplications
TypeFamilies
default-language: Haskell2010
main-is: Main.hs
build-depends:
rerebase <2,
strict-list,
tasty >=0.12 && <2,
tasty-quickcheck >=0.9 && <0.11,
|