-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsched.cabal
36 lines (33 loc) · 964 Bytes
/
sched.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
cabal-version: >=1.10
-- Initial package description 'sched.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: sched
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE_MIT_ACKNOWLEDGE
author: julio
maintainer: julio.grillo98@gmail.com
-- copyright:
-- category:
build-type: Simple
-- extra-source-files: CHANGELOG.md
Library
-- main-is: Main.hs
-- other-extensions:
exposed-modules: Data.Sched
other-modules:
build-depends: base >=4.13 && <4.14
, time
-- hs-source-dirs:
default-language: Haskell2010
Test-Suite test-sched
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
default-language: Haskell2010
build-depends: base
, time
, sched