-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.yaml
38 lines (38 loc) · 848 Bytes
/
package.yaml
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
name: pretty-diff
version: 0.4.0.3
synopsis: Pretty printing a diff of two values.
description: Please see the README at <https://github.com/stoeffel/pretty-diff>.
author: Christoph Hermann
maintainer: [email protected]
copyright: 2020 Christoph Hermann
homepage: https://github.com/stoeffel/pretty-diff#readme
license-file: LICENSE
category: Diffing
github: stoeffel/pretty-diff
extra-doc-files:
- README.md
- CHANGELOG.md
library:
dependencies:
- base >= 4.10.1.0 && < 5
- data-default >= 0.7 && < 0.8
- Diff >= 0.3 && < 0.5
- text >= 1.2 && < 1.3
exposed-modules:
- Pretty.Diff
source-dirs: src
tests:
spec:
dependencies:
- base
- Diff
- data-default
- tasty >= 1.1 && < 1.5
- tasty-hunit
- pretty-diff
- tasty-test-reporter
- text
main: Main.hs
source-dirs:
- test
- src