-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathincremental.cabal
More file actions
51 lines (47 loc) · 1.83 KB
/
incremental.cabal
File metadata and controls
51 lines (47 loc) · 1.83 KB
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
name: incremental
version: 0.1.0.0
synopsis: Incremental for Haskell
description: Please see README.md
homepage: cs240h.scs.stanford.edu
license: BSD3
license-file: LICENSE
author: Jiyue Wang, Kaixi Ruan
maintainer: [email protected]
copyright: Jiyue Wang, Kaixi Ruan
category: algorithm
build-type: Simple
cabal-version: >=1.10
extra-source-files:
README.md
stack.yaml
library
hs-source-dirs: src
exposed-modules: Incremental
build-depends: base >= 4.7
, lens-simple >= 0.1.0.8
, containers
, transformers >= 0.4.2.0
, exceptions
, async
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-missing-signatures -fno-warn-name-shadowing
-- test-suite incremantal-test
-- type: exitcode-stdio-1.0
-- hs-source-dirs: test
-- main-is: Spec.hs
-- build-depends: base >= 4.7
-- , lens-simple >= 0.1.0.8
-- , containers
-- , transformers >= 0.4.2.0
-- , incremental
-- , hspec
-- default-language: Haskell2010
-- ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-missing-signatures -fno-warn-name-shadowing -fno-warn-unused-imports
executable incremental-exe
hs-source-dirs: app
main-is: Main.hs
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -fno-warn-unused-do-bind -fno-warn-missing-signatures -fno-warn-name-shadowing
build-depends: base
, transformers
, incremental
default-language: Haskell2010