-
Notifications
You must be signed in to change notification settings - Fork 5
/
par.cabal
37 lines (35 loc) · 1.1 KB
/
par.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
-- Initial par.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: par
version: 1.0.9
-- synopsis:
-- description:
license: MIT
license-file: LICENSE
author: Kostiantyn Rybnikov
maintainer: [email protected]
-- copyright:
category: System
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable par
main-is: Main.hs
ghc-options: -O
-threaded
-Wall
-- other-modules:
-- other-extensions:
build-depends: base
, async
, bytestring
, enclosed-exceptions
, optparse-applicative
, process
, stm
, string-class
, text
hs-source-dirs: src
default-language: Haskell2010
default-extensions: OverloadedStrings
, ScopedTypeVariables