forked from aesiniath/unbeliever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
106 lines (99 loc) · 2.21 KB
/
package.yaml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: unbeliever
version: 0.9.4.0
synopsis: Opinionated Haskell Interoperability
description: |
A library to help build command-line programs, both tools and
longer-running daemons.
A description of this package, a list of features, and some background
to its design is contained in the
<https://github.com/oprdyn/unbeliever/blob/master/README.markdown README>
on GitHub.
Useful starting points in the documentation are "Core.Program.Execute"
and "Core.Text.Rope".
stability: experimental
license: BSD3
license-file: LICENCE
author: Andrew Cowie <[email protected]>
maintainer: Andrew Cowie <[email protected]>
copyright: © 2018-2019 Operational Dynamics Consulting Pty Ltd, and Others
tested-with: GHC == 8.6.4
category: System
ghc-options: -Wall -Wwarn -fwarn-tabs
github: oprdyn/unbeliever
dependencies:
- aeson
- async
- base >= 4.11 && < 5
- bytestring
- chronologique
- containers
- deepseq
- directory
- exceptions
- fingertree
- hashable
- hourglass
- mtl
- prettyprinter
- prettyprinter-ansi-terminal
- safe-exceptions
- scientific
- stm
- template-haskell
- terminal-size
- text
- text-short
- transformers
- unordered-containers
- unix
- vector
library:
source-dirs: lib
exposed-modules:
- Core.Data
- Core.Data.Structures
- Core.Encoding
- Core.Encoding.Json
- Core.Program
- Core.Program.Arguments
- Core.Program.Execute
- Core.Program.Logging
- Core.Program.Metadata
- Core.Program.Unlift
- Core.Text
- Core.Text.Bytes
- Core.Text.Rope
- Core.Text.Utilities
- Core.System
- Core.System.Base
- Core.System.External
other-modules:
- Core.Text.Breaking
- Core.Program.Context
- Core.Program.Signal
tests:
check:
dependencies:
- hspec
- unbeliever
ghc-options: -threaded
source-dirs:
- tests
main: TestSuite.hs
other-modules:
- CheckArgumentsParsing
- CheckBytesBehaviour
- CheckContainerBehaviour
- CheckJsonWrapper
- CheckProgramMonad
- CheckRopeBehaviour
benchmarks:
performance:
dependencies:
- gauge
- unbeliever
ghc-options: -threaded
source-dirs:
- bench
main: GeneralPerformance.hs
other-modules: []