-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhf.cabal
38 lines (35 loc) · 1.33 KB
/
hf.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
-- Initial hf.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: hf
version: 0.1.0.0
-- synopsis:
-- description:
license: Apache-2.0
license-file: LICENSE
author: Andrew Stanton
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable hf
--ghc-options: -Wall -O2 -rtsopts -auto-all -caf-all -fforce-recomp -threaded -prof
ghc-options: -Wall -O2 -rtsopts -threaded -fllvm "-with-rtsopts=-N -H1G -A10m"
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.9,
bytestring == 0.10.6.0,
edit-distance == 0.2.2.1,
mtl == 2.2.1,
ncurses >= 0.2.11,
parallel == 3.2.0.6,
parsec == 3.1.9,
process == 1.2.3.0,
text == 1.2.1.3,
unix == 2.7.1.0,
vector == 0.10.12.3,
vector-algorithms == 0.7.0.1
hs-source-dirs: src
default-language: Haskell2010