forked from GaloisInc/daedalus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rts-vm-hs.cabal
47 lines (43 loc) · 1.11 KB
/
rts-vm-hs.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
cabal-version: >=1.10
name: rts-vm-hs
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: ISC
license-file: LICENSE
author: Iavor Diatchki
maintainer: iavor.diatchki@gmail.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library
hs-source-dirs: src
exposed-modules: Daedalus.RTS,
Daedalus.RTS.Parser
build-depends: base >=4.13,
vector,
vector-builder,
containers,
bytestring,
text,
pretty,
rts-hs-data
ghc-options: -O2 -Wall
default-language: Haskell2010
default-extensions:
BlockArguments,
OverloadedStrings,
DataKinds,
TypeOperators,
KindSignatures,
TypeFamilies,
StandaloneDeriving,
FlexibleInstances,
FlexibleContexts,
MultiParamTypeClasses,
UndecidableInstances,
ConstraintKinds,
ScopedTypeVariables,
RecordWildCards