name: Diff version: 0.3.0 x-revision: 2 synopsis: O(ND) diff algorithm in haskell. description: Basic implementation of the standard diff algorithm. category: Algorithms license: BSD3 license-file: LICENSE author: Sterling Clover maintainer: s.clover@gmail.com Tested-With: GHC == 6.8.2 Build-Type: Simple build-Depends: base Cabal-Version: >= 1.6 flag small-base library if flag(small-base) build-depends: base >= 3 && <= 4.11, array else build-depends: base < 3 hs-source-dirs: src exposed-modules: Data.Algorithm.Diff, Data.Algorithm.DiffOutput ghc-options: -O2 -Wall -funbox-strict-fields build-depends: pretty -- test-suite properties -- hs-source-dirs: src, test -- main-is: Test.hs -- type: exitcode-stdio-1.0 -- build-depends: -- QuickCheck >= 2.4, test-framework >= 0.4, test-framework-quickcheck2 >= 0.2, process, directory source-repository head type: darcs location: http://hub.darcs.net/sterlingclover/Diff