-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhaskell-yaml.cabal
46 lines (40 loc) · 1.24 KB
/
haskell-yaml.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
46
cabal-version: 2.4
name: haskell-yaml
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/fersilva16/haskell-yaml#readme>
homepage: https://github.com/fersilva16/haskell-yaml#readme
bug-reports: https://github.com/fersilva16/haskell-yaml/issues
author: Fernando Silva
maintainer: [email protected]
copyright: 2024 Fernando Silva
license: MIT
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/fersilva16/haskell-yaml
library haskell-yaml-lib
exposed-modules: HaskellYaml
hs-source-dirs: lib
default-language: Haskell2010
build-depends:
base >=4.7 && <5,
containers
executable haskell-yaml
main-is: Main.hs
hs-source-dirs: src
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
build-depends:
base >=4.7 && <5,
haskell-yaml-lib
test-suite haskell-yaml-test
main-is: Spec.hs
hs-source-dirs: test
type: exitcode-stdio-1.0
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
build-depends:
base >=4.7 && <5,
HUnit >=1.6,
haskell-yaml-lib