diff-gestalt-0.1.0.0: diff-gestalt.cabal
name: diff-gestalt
version: 0.1.0.0
synopsis: A diff algorithm based on recursive longest common substrings
description: Please see README.md
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