File: Diff.cabal

package info (click to toggle)
haskell-diff 0.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 88 kB
  • sloc: haskell: 410; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 1,330 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name:                Diff
version:             0.4.1
synopsis:            O(ND) diff algorithm in haskell.
description:         Implementation of the standard diff algorithm, and utilities for pretty printing.
category:            Algorithms
license:             BSD3
license-file:        LICENSE
author:              Sterling Clover
maintainer:          s.clover@gmail.com
Tested-With:         GHC == 7.8.4
Build-Type:          Simple
Cabal-Version:       >= 1.10

library
  default-language: Haskell2010
  build-depends:   base >= 3 && <= 6, array, pretty >= 1.1
  hs-source-dirs:  src
  exposed-modules:
                   Data.Algorithm.Diff,
                   Data.Algorithm.DiffOutput
                   Data.Algorithm.DiffContext
  ghc-options:     -O2 -Wall -funbox-strict-fields

source-repository head
  type:      git
  location:  http://github.com/seereason/Diff

test-suite diff-tests
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  hs-source-dirs: test, src
  main-is: Test.hs
  build-depends: base >= 3 && <= 6, array
                , pretty, QuickCheck, test-framework
                , test-framework-quickcheck2, process
                , directory
  other-modules:
                   Data.Algorithm.Diff,
                   Data.Algorithm.DiffOutput
                   Data.Algorithm.DiffContext