diff-gestalt-0.2.0.0: diff-gestalt.cabal
name: diff-gestalt
version: 0.2.0.0
synopsis: A diff algorithm based on recursive longest common substrings
description: This is a diff algorithm based on recursive longest common substrings. A description of the algorithm itself can be found at http://collaboration.cmc.ec.gc.ca/science/rpn/biblio/ddj/Website/articles/DDJ/1988/8807/8807c/8807c.htm
homepage: http://github.com/chrismwendt/diff-gestalt
license: OtherLicense
license-file: LICENSE
author: Chris Wendt
maintainer: chrismwendt@gmail.com
copyright: none
category: none
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Data.Algorithm.Diff.Gestalt
build-depends: base >= 4 && < 5
, Diff
, string-similarity
, KMP
, QuickCheck
default-language: Haskell2010
test-suite diff-gestalt-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, Diff
, diff-gestalt
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/chrismwendt/diff-gestalt