File word-trie.cabal of Package ghc-word-trie
name: word-trie
version: 0.3.0
x-revision: 1
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.6 && <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 >= 4.6
, binary
, containers
, hspec
, QuickCheck == 2.*
, word-trie