forked from TheAlgorithms/Haskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
43 lines (39 loc) · 782 Bytes
/
package.yaml
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
# This YAML file describes your package. Stack will automatically generate a
# Cabal file when you run `stack build`. See the hpack website for help with
# this file: <https://github.com/sol/hpack>.
name: Haskell
version: '0.0.1'
github: "TheAlgorithms/Haskell"
license: MIT
author: "TheAlgorithms"
maintainer: "TheAlgorithms"
extra-source-files:
- LICENSE
- package.yaml
- README.md
- stack.yaml
ghc-options: -Wall
library:
dependencies:
- base
- sort
- containers
- vector
- vector-algorithms
- array
source-dirs: src
tests:
Haskell-test-suite:
source-dirs: specs
main: Spec.hs
dependencies:
- base
- Haskell
- hspec
- QuickCheck
- containers
- array
ghc-options:
- -rtsopts
- -threaded
- -with-rtsopts=-N