-
Notifications
You must be signed in to change notification settings - Fork 0
/
benign.cabal
53 lines (48 loc) · 1.34 KB
/
benign.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.0.
--
-- see: https://github.com/sol/hpack
name: benign
version: 0.1.0
synopsis: A library for benign effects
description: see README.md.
homepage: https://github.com/aspiwack/haskell-benign#readme
bug-reports: https://github.com/aspiwack/haskell-benign/issues
author: Arnaud Spiwack
maintainer: [email protected]
copyright: MIT
license: MIT
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/aspiwack/haskell-benign
library
exposed-modules:
Benign
Benign.GhcEventsAnalyze
hs-source-dirs:
src
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wnoncanonical-monad-instances -Wredundant-constraints
build-depends:
async
, base
, containers
, deepseq
, stm
, strict-wrapper
default-language: Haskell2010
executable simple-print
main-is: SimplePrint.hs
hs-source-dirs:
examples
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wnoncanonical-monad-instances -Wredundant-constraints
build-depends:
async
, base
, benign
, containers
, deepseq
, stm
, strict-wrapper
default-language: Haskell2010