adict-0.2.0: adict.cabal
name: adict
version: 0.2.0
synopsis: Approximate dictionary searching
description:
Approximate dictionary searching library.
license: BSD3
license-file: LICENSE
cabal-version: >= 1.8
copyright: Copyright (c) 2012 IPI PAN
author: Jakub Waszczuk
maintainer: waszczuk.kuba@gmail.com
stability: experimental
category: Natural Language Processing
homepage: https://github.com/kawu/adict
build-type: Simple
library
build-depends:
base >= 4 && <= 5
, containers
, vector
, array
, PSQueue >= 1.1 && < 1.2
, binary
exposed-modules:
NLP.Adict
, NLP.Adict.Core
, NLP.Adict.CostDiv
, NLP.Adict.Dist
, NLP.Adict.Brute
, NLP.Adict.Trie
, NLP.Adict.DAWG
, NLP.Adict.Basic
other-modules:
NLP.Adict.Graph
, NLP.Adict.DAWG.Node
, NLP.Adict.Nearest
ghc-options: -Wall -O2
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Properties.hs
build-depends:
base >= 4 && < 5.0
, QuickCheck
, containers
, vector
, test-framework >= 0.3.3
, test-framework-quickcheck2 >= 0.2.9
, adict
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/kawu/adict.git