cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack
name: fast-myers-diff
version: 0.0.0
synopsis: A fast implementation of the Myers diff algorithm.
description: A fast implementation of the diffing algorithm described in 'An O(ND) Difference Algorithm and Its Variations' by Eugene W. Myers.
category: Testing
homepage: https://github.com/NorfairKing/sydtest#readme
bug-reports: https://github.com/NorfairKing/sydtest/issues
author: Tom Sydney Kerckhove
maintainer: syd@cs-syd.eu
copyright: Copyright (c) 2023 Tom Sydney Kerckhove
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
LICENSE
source-repository head
type: git
location: https://github.com/NorfairKing/sydtest
library
exposed-modules:
Myers.Diff
other-modules:
Paths_fast_myers_diff
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, dlist
, text
, vector
default-language: Haskell2010
test-suite fast-myers-diff-test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_fast_myers_diff
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, fast-myers-diff
, hspec
, text
, vector
default-language: Haskell2010