File: data-clist.cabal

package info (click to toggle)
haskell-data-clist 0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 88 kB
  • sloc: haskell: 228; makefile: 6
file content (42 lines) | stat: -rw-r--r-- 1,226 bytes parent folder | download | duplicates (2)
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
Cabal-Version: 2.2
Name: data-clist
Synopsis: Simple functional ring type.
Description: Simple functional bidirectional ring type.

             Given that the ring terminiology clashes with certain
             mathematical branches, we're using the term CList or
             CircularList instead.
Version: 0.2
License: BSD-3-Clause
License-File: LICENSE
Author: John Van Enk <vanenkj@gmail.com>
Maintainer: Jeremy Huffman <jeremy@jeremyhuffman.com>, John Van Enk <vanenkj@gmail.com>
Stability: experimental
Category: Data Structures
Build-Type: Simple
Homepage: https://github.com/sw17ch/data-clist

source-repository head
    type: git
    location: git://github.com/sw17ch/data-clist.git

Library
    Default-Language: Haskell2010
    Build-Depends: base >= 4 && < 5,
                   deepseq >= 1.1 && < 1.5
    Exposed-Modules:
        Data.CircularList
        Data.CircularList.Internal

    ghc-options:        -Wall
    hs-source-dirs:     src

Test-Suite tests
  Default-Language: Haskell2010
  Type:             exitcode-stdio-1.0
  Build-Depends:    base >=4.11 && < 5
                  , data-clist
                  , QuickCheck >= 2.4 && < 2.16
  hs-source-dirs:   tests/
  main-is:          quickcheck.hs