-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsandwatch.cabal
65 lines (60 loc) · 1.96 KB
/
sandwatch.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
cabal-version: >=1.10
category: Command Line
name: sandwatch
synopsis: record historical command runtimes for later prediction
description: track historical runtimes for this directory and command, predict if there's time for a sandwich on this run
version: 0.1.1.0
license: BSD3
license-file: LICENSE
author: Shae Erisson
maintainer: [email protected]
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
library
exposed-modules: MyLib
ghc-options: -Wall -O2
build-depends:
aeson >=1.4.7.1 && < 2.2
, atomic-write >= 0.2.0 && < 0.3
, base >=4.14 && <4.20
, bytestring >= 0.11 && < 0.12
, criterion-measurement >= 0.2 && < 0.3
, directory >= 1.3 && < 1.5
, process >= 1.6 && < 1.7
, text >= 2.0 && < 2.1
, time >= 1.12 && < 1.13
hs-source-dirs: src
default-language: Haskell2010
executable sandwatch
main-is: Main.hs
ghc-options: -Wall -O2
build-depends:
aeson >=1.4.7.1 && < 2.2
, atomic-write >= 0.2.0 && < 0.3
, base >=4.14 && <4.20
, bytestring >= 0.11 && < 0.12
, criterion-measurement >= 0.2 && < 0.3
, directory >= 1.3 && < 1.5
, process >= 1.6 && < 1.7
, sandwatch
, text >= 2.0 && < 2.1
, time >= 1.12 && < 1.13
default-language: Haskell2010
test-suite sandwatch-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MyLibTest.hs
ghc-options: -Wall -O2
build-depends:
aeson >=1.4.7.1 && < 2.2
, atomic-write >= 0.2.0 && < 0.3
, base >=4.14 && <4.20
, bytestring >= 0.11 && < 0.12
, criterion-measurement >= 0.2 && < 0.3
, directory >= 1.3 && < 1.5
, process >= 1.6 && < 1.7
, text >= 2.0 && < 2.1
, time >= 1.12 && < 1.13