this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at c8d3db63099e68d453f8d28e369c6e9d129bd94c 49 lines 1.2 kB view raw
1name: millisecond17 2version: 0.1.0.0 3github: "sethetter/millisecond17" 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/millisecond17#readme> 21 22dependencies: 23- base >= 4.7 && < 5 24- containers >= 0.5.10.2 && < 0.6 25 26library: 27 source-dirs: src 28 29executables: 30 millisecond17-exe: 31 main: Main.hs 32 source-dirs: app 33 ghc-options: 34 - -threaded 35 - -rtsopts 36 - -with-rtsopts=-N 37 dependencies: 38 - millisecond17 39 40tests: 41 millisecond17-test: 42 main: Spec.hs 43 source-dirs: test 44 ghc-options: 45 - -threaded 46 - -rtsopts 47 - -with-rtsopts=-N 48 dependencies: 49 - millisecond17