File: word-trie.cabal

package info (click to toggle)
haskell-word-trie 0.3.0-12
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 84 kB
  • sloc: haskell: 94; makefile: 6
file content (40 lines) | stat: -rw-r--r-- 1,061 bytes parent folder | download | duplicates (5)
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
name:                word-trie
version:             0.3.0
synopsis:            Implementation of a finite trie over words.
description:         Implementation of a finite trie over words.
homepage:            https://github.com/yi-editor/word-trie
license:             GPL-2
license-file:        LICENSE
author:              Mateusz Kowalczyk
maintainer:          yi-devel@googlegroups.com
category:            Data
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
tested-with:         GHC==7.8.4, GHC==7.10.1

library
  exposed-modules:     Data.Trie
  build-depends:       base >=4.5 && <5, binary, containers
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options: -Wall -ferror-spans

test-suite spec
  type:             exitcode-stdio-1.0
  default-language: Haskell2010
  main-is:          Spec.hs
  hs-source-dirs:
      test
  ghc-options: -Wall

  other-modules:
      Data.TrieSpec

  build-depends:
      base
    , binary
    , containers
    , hspec
    , QuickCheck == 2.*
    , word-trie