-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBDC.cabal
37 lines (35 loc) · 1.06 KB
/
BDC.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
cabal-version: 2.4
name: BDC
version: 0.0.0.12
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Lei Zhu
maintainer: [email protected]
-- copyright:
category: Text
build-type: Simple
extra-source-files: ChangeLog.md
library
exposed-modules: BDC.Types, BDC.Logic, BDC.DataLoader, BDC, BDC.Util
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <5
, text >=2.0
, time
, transformers
, data-default
, ansi-terminal
, random-shuffle
hs-source-dirs: lib
ghc-options: -Wall -Wno-name-shadowing
default-language: GHC2021
executable BDC
main-is: Main.hs
other-modules: Parser
-- other-extensions:
build-depends: base >=4.7 && <5, text, BDC, optparse-applicative
hs-source-dirs: src
ghc-options: -Wall -Wno-name-shadowing
default-language: GHC2021