-
Notifications
You must be signed in to change notification settings - Fork 8
/
yi-rope.cabal
63 lines (54 loc) · 1.39 KB
/
yi-rope.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: yi-rope
version: 0.11
synopsis: A rope data structure used by Yi
description: A rope data structure used by Yi
license: GPL-2
license-file: LICENSE
author: AUTHORS
maintainer: [email protected]
category: Yi
build-type: Simple
cabal-version: >=1.10
library
ghc-options: -fpedantic-bottoms -fexpose-all-unfoldings -ferror-spans -Wall -O2 -flate-dmd-anal
exposed-modules:
Yi.Rope
build-depends:
base >=4.8 && <5
, binary
, bytestring >= 0.10
, deepseq
, fingertree >= 0.1.1
, text >= 1.2
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: Spec.hs
hs-source-dirs: test
ghc-options: -Wall -O2 -rtsopts
other-modules:
Yi.RopeSpec
build-depends:
base
, hspec
, QuickCheck == 2.*
, quickcheck-instances
, text
, yi-rope
benchmark bench
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: MainBenchmarkSuite.hs
hs-source-dirs: bench
ghc-options: -Wall -O2
build-depends:
base >=4.8 && <5
, criterion
, deepseq
, text
, yi-rope
source-repository head
type: git
location: https://github.com/yi-editor/yi-rope.git