-
Notifications
You must be signed in to change notification settings - Fork 2
/
typed-process-effectful.cabal
84 lines (71 loc) · 2.04 KB
/
typed-process-effectful.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
cabal-version: 3.0
name: typed-process-effectful
version: 1.0.0.3
synopsis:
A binding of the typed-process library for the effectful effect system.
description:
This library provides an alternative `Process` effect for the
[effectful](https://github.com/haskell-effectful/effectful) ecosystem.
While to the `Process` effect shipped with the `effectful` library is based on
the [process](https://hackage.haskell.org/package/process) package this
implementation relies on
[typed-process](https://hackage.haskell.org/package/typed-process) instead.
category: System
homepage:
https://github.com/haskell-effectful/typed-process-effectful#readme
bug-reports:
https://github.com/haskell-effectful/typed-process-effectful/issues
author: Dominik Peteler
maintainer: hackage+typed-process-effectful@with-h.at
license: BSD-3-Clause
build-type: Simple
-- cabal-gild: discover . --include=*.md
extra-doc-files:
CHANGELOG.md
LICENSE.md
README.md
extra-source-files:
LICENSE.md
tested-with: ghc ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.6 || ==9.8.2 || ==9.10.1
source-repository head
type: git
location:
https://github.com/haskell-effectful/typed-process-effectful
common language
ghc-options:
-Wall
-Wcompat
default-language: Haskell2010
default-extensions:
DataKinds
FlexibleContexts
GADTs
KindSignatures
TypeOperators
library
import: language
hs-source-dirs: src/
-- cabal-gild: discover src/ --include=src/**/*.hs
exposed-modules: Effectful.Process.Typed
build-depends:
base >=4.14 && <5,
bytestring <0.13,
effectful >=2.0 && <2.6,
typed-process >=0.2.8 && <0.3,
test-suite typed-process-effectful-test
import: language
ghc-options:
-rtsopts
-threaded
-with-rtsopts=-N
build-depends:
base,
effectful,
tasty >=1.4 && <1.6,
tasty-hunit >=0.10 && <0.11,
typed-process-effectful,
hs-source-dirs: test/
type: exitcode-stdio-1.0
main-is: Main.hs
-- cabal-gild: discover test/ --exclude=test/Main.hs --include=test/**/*.hs
other-modules: Utils