-
Notifications
You must be signed in to change notification settings - Fork 4
/
e.cabal
54 lines (53 loc) · 1.1 KB
/
e.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
name: e
version: 0.1.0.0
license: GPL-2
license-file: LICENSE
author: Dmitry Ivanov
maintainer: [email protected]
-- copyright:
category: Text
build-type: Simple
cabal-version: >=1.10
executable e
main-is: Main.hs
other-modules:
Fuzzy
FuzzyFile
FuzzyMatchScore
Make
MySnippets
PyflakesMode
RainbowMode
YiWarning
build-depends:
base >=4.6 && <5
, binary
, bytestring
, compiler-warnings
, containers
, data-default
, directory
, filepath
, free
, microlens-platform
, mtl
, parallel
, parsec
, process >= 1.2.3
, regex-applicative
, srcloc
, text
, transformers-base
, utf8-string
, vector
, vector-algorithms
, yi-core >= 0.16
, yi-frontend-vty
, yi-keymap-vim
, yi-language
, yi-misc-modes
, yi-rope
, yi-snippet
hs-source-dirs: modules, .
ghc-options: -O2 -threaded -Wall -ferror-spans -msse4.2
default-language: Haskell2010