-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpriority-sesh.cabal
56 lines (52 loc) · 1.91 KB
/
priority-sesh.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
cabal-version: 2.4
name: priority-sesh
version: 0.1.0.0
description: Please see the README on GitHub at <https://github.com/wenkokke/priority-sesh#readme>
homepage: https://github.com/wenkokke/priority-sesh#readme
bug-reports: https://github.com/wenkokke/priority-sesh/issues
author: Wen Kokke
maintainer: [email protected]
copyright: © Wen Kokke
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/wenkokke/priority-sesh
common common-depends
build-depends: base >=4.7 && <5
, linear-base >=0.1 && <0.2
default-language: Haskell2010
default-extensions: ExplicitNamespaces
, FlexibleContexts
, FlexibleInstances
, GADTSyntax
, ImportQualifiedPost
, InstanceSigs
, LinearTypes
, RebindableSyntax
library
import: common-depends
exposed-modules: Control.Concurrent.Channel.OneShot
, Control.Concurrent.Linear
, Control.Concurrent.Channel.Session
, Control.Concurrent.Channel.Session.DF
, Data.Type.Nat.Extra
, Data.Type.Period
, Data.Type.Priority
, System.IO.Linear.Cancellable
hs-source-dirs: src
test-suite test-priority-sesh
import: common-depends
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules: Test.HUnit.Linear
Test.OneShot
Test.Session
Test.Session.DF
hs-source-dirs: test
build-depends: hint
, HUnit
, silently
, priority-sesh