this repo has no description
1name: millisecond14
2version: 0.1.0.0
3github: "sethetter/millisecond14"
4license: BSD3
5author: "Seth Etter"
6maintainer: "sethetter@gmail.com"
7copyright: "MIT"
8
9extra-source-files:
10- README.md
11- ChangeLog.md
12
13# Metadata used when publishing your package
14synopsis: Short description of your package
15# category: haskell
16
17# To avoid duplicated efforts in documentation and dealing with the
18# complications of embedding Haddock markup inside cabal files, it is
19# common to point users to the README.md file.
20description: Please see the README on Github at <https://github.com/sethetter/millisecond14#readme>
21
22dependencies:
23- base >= 4.7 && < 5
24- list-grouping
25- digits
26
27library:
28 source-dirs: src
29
30executables:
31 millisecond14-exe:
32 main: Main.hs
33 source-dirs: app
34 ghc-options:
35 - -threaded
36 - -rtsopts
37 - -with-rtsopts=-N
38 dependencies:
39 - millisecond14
40
41tests:
42 millisecond14-test:
43 main: Spec.hs
44 source-dirs: test
45 ghc-options:
46 - -threaded
47 - -rtsopts
48 - -with-rtsopts=-N
49 dependencies:
50 - millisecond14