-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVSFS.cabal
37 lines (34 loc) · 1.07 KB
/
VSFS.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: VSFS
version: 0.1.0.0
license: Apache-2.0
license-file: LICENSE
author: MaicoLeberle
maintainer: maico.leberle@gmail.com
build-type: Simple
extra-source-files: README.md
library VSFSLib
exposed-modules: Main
, VSFS
, Types
build-depends: base >=4.12 && <4.13
, data-default
, haskeline >=0.7 && <0.8
, mtl >=2.2 && <2.3
, pretty-simple
, split
, text
hs-source-dirs: src
default-language: Haskell2010
executable VSFS
main-is: Main.hs
other-modules: Types
, VSFS
build-depends: base >=4.12 && <4.13
, haskeline >=0.7 && <0.8
, mtl >=2.2 && <2.3
, pretty-simple
, split
, text
hs-source-dirs: src
default-language: Haskell2010