-
Notifications
You must be signed in to change notification settings - Fork 3
/
word-trie.cabal
40 lines (36 loc) · 1.04 KB
/
word-trie.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
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: [email protected]
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