-
Notifications
You must be signed in to change notification settings - Fork 0
/
wumpus-json.cabal
42 lines (36 loc) · 1.2 KB
/
wumpus-json.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
cabal-version: 3.6
-- the high cabal-version is required for public sublibraries to work.
name: wumpus-json
version: 0.1.0.0
synopsis:
-- A longer description of the package.
-- description:
homepage:
-- A URL where users can report bugs.
-- bug-reports:
license: BSD-3-Clause
license-file: LICENSE
author: Daniel Diaz
maintainer: [email protected]
-- A copyright notice.
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
library
exposed-modules: WumpusJson
build-depends: base ^>=4.16.1.0,
wumpus ^>= 0.1.0.0,
hs-source-dirs: lib
default-language: Haskell2010
test-suite wumpus-json-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: WumpusJsonTest.hs
build-depends: base ^>=4.16.1.0,
wumpus-json,
wumpus ^>= 0.1.0.0,
-- The wumpus package exports two libraries!
-- For testing purposes,
-- we also depend on the public sublibary.
wumpus:wumpus-test-support ^>= 0.1.0.0,