-
Notifications
You must be signed in to change notification settings - Fork 6
/
text-zipper.cabal
48 lines (43 loc) · 1.44 KB
/
text-zipper.cabal
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
41
42
43
44
45
46
47
48
name: text-zipper
version: 0.13
synopsis: A text editor zipper library
description: This library provides a zipper and API for editing text.
license: BSD3
license-file: LICENSE
author: Jonathan Daugherty <[email protected]>
maintainer: [email protected]
copyright: (c) 2015 Jonathan Daugherty
category: Text
build-type: Simple
cabal-version: >=1.10
data-files: CHANGELOG.md
homepage: https://github.com/jtdaugherty/text-zipper/
bug-reports: https://github.com/jtdaugherty/text-zipper/issues
Source-Repository head
type: git
location: git://github.com/jtdaugherty/text-zipper.git
library
exposed-modules:
Data.Text.Zipper
Data.Text.Zipper.Generic
Data.Text.Zipper.Generic.Words
other-modules:
Data.Text.Zipper.Vector
build-depends: base < 5,
text,
vector,
deepseq
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
test-suite text-zipper-tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
other-modules: WordsSpec
default-language: Haskell2010
build-depends: base,
text,
hspec,
QuickCheck,
text-zipper