-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcompact-sequences.cabal
85 lines (78 loc) · 3.13 KB
/
compact-sequences.cabal
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
76
77
78
79
80
81
82
83
84
85
cabal-version: 2.2
-- Initial package description 'compact-sequences.cabal' generated by
-- 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: compact-sequences
version: 0.2.0.0
synopsis: Stacks, queues, and deques with compact representations.
description:
Stacks, queues, and deques that take \( n + O(\log n) \) space at the cost of
having amortized \( O(\log n) \) time complexity for basic operations.
bug-reports: https://github.com/treeowl/compact-sequences/issues
homepage: https://github.com/treeowl/compact-sequences/
license: BSD-3-Clause
license-file: LICENSE
author: David Feuer
maintainer: [email protected]
copyright: 2020 David Feuer
category: Data
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: http://github.com/treeowl/compact-sequences.git
library
exposed-modules: Data.CompactSequence.Stack.Simple
, Data.CompactSequence.Stack.Simple.Internal
, Data.CompactSequence.Stack.Internal
, Data.CompactSequence.Queue.Simple
, Data.CompactSequence.Queue.Simple.Internal
, Data.CompactSequence.Queue.Internal
, Data.CompactSequence.Deque.Simple
, Data.CompactSequence.Deque.Simple.Internal
, Data.CompactSequence.Deque.Internal
, Data.CompactSequence.Internal.Array
, Data.CompactSequence.Internal.Size
, Data.CompactSequence.Internal.Numbers
, Data.CompactSequence.Internal.Array.Safe
-- other-modules:
-- other-extensions:
build-depends:
-- Lower bound for Semigroup in the Prelude; we could adjust this.
base >=4.11.0.0 && < 5.0
-- Lower bound for runSmallArray
, primitive >= 0.6.4.0
-- We use these for State.
, mtl
, transformers
hs-source-dirs: src
default-language: Haskell2010
test-suite stack-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Stack.hs
build-depends: base >=4.10.0.0,
compact-sequences,
QuickCheck,
tasty,
tasty-quickcheck
test-suite queue-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Queue.hs
build-depends: base >=4.10.0.0,
compact-sequences,
QuickCheck,
tasty,
tasty-quickcheck
test-suite deque-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Deque.hs
build-depends: base >=4.10.0.0,
compact-sequences,
QuickCheck,
tasty,
tasty-quickcheck