-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfloydWarshall.cabal
70 lines (63 loc) · 2.11 KB
/
floydWarshall.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
cabal-version: 2.2
name: floydWarshall
version: 0.1.0.0
synopsis: Apply FloydWarshall algorithm
build-type: Simple
author: Amy
maintainer: [email protected]
common lang
default-extensions: OverloadedStrings
, RecordWildCards
, BlockArguments
, FlexibleContexts
, TupleSections
, TemplateHaskell
common deps
build-depends: base-noprelude
, attoparsec
, classy-prelude
, containers
, lens
, mtl
, protolude
, split
, text
, time
, vector
, writer-cps-mtl
library
import: lang, deps
hs-source-dirs: src/lib
exposed-modules: Prelude
, Algorithms
, Parsers
, ProcessRequests
, Types
, Utils
ghc-options: -Wall -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
default-language: Haskell2010
executable floydWarshall
import: lang, deps
main-is: Main.hs
hs-source-dirs: src/app
default-language: Haskell2010
ghc-options: -Wall -threaded
build-depends: floydWarshall
common test-deps
build-depends: floydWarshall
, hedgehog
, tasty
, tasty-hedgehog
, tasty-hunit
test-suite tests
import: lang, deps, test-deps
type: exitcode-stdio-1.0
main-is: tests.hs
hs-source-dirs: src/test
other-modules: AlgorithmsTest
, MockData
, ParserTest
, ProcessRequestsTest
, TestUtils
default-language: Haskell2010
ghc-options: -Wall -threaded