packages feed

fastedit-0.1.0.0: fastedit.cabal

-- Initial fastedit.cabal generated by cabal init.  For further
-- documentation, see http://haskell.org/cabal/users-guide/

name:                fastedit
version:             0.1.0.0
synopsis:            find nearest neighbours by edit-distance
description:         Use faroo's deletion algorithm to generate possible
                     autocorrections efficiently
license:             MIT
license-file:        LICENSE
author:              Mark Wotton
maintainer:          mwotton@gmail.com
build-type:          Simple
cabal-version:       >=1.10
category:            Text
source-repository head
  type: git
  location: http://github.com/mwotton/fastedit.git

library
  exposed-modules:     Text.FastEdit
  build-depends:       base >=4.7 && <4.8,
                       base-prelude,
                       unordered-containers,
                       containers,
                       safe,
                       bytestring,
                       hashable
  ghc-prof-options: -fprof-auto
  hs-source-dirs:      src
  default-language:    Haskell2010


test-suite tests
  default-language:    Haskell2010
  hs-source-dirs: test
  main-is:       Spec.hs
  type: exitcode-stdio-1.0
  ghc-options: -Wall -threaded -rtsopts
  ghc-prof-options: -fprof-auto
  build-depends: base
               , fastedit
               , base-prelude
               , hspec
               , edit-distance
               , QuickCheck
               , file-embed
               , bytestring