-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsnack.cabal
40 lines (37 loc) · 1.55 KB
/
snack.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
cabal-version: 2.2
name: snack
version: 0.1.0.0
synopsis: Lightweight framework for building command-line applications.
description: Please see the README on Github at
<https://github.com/haskell-Z/snack#readme>
license: BSD-3-Clause
license-file: LICENSE
copyright: Copyright (c)
author: mu
maintainer: [email protected]
tested-with: GHC == 8.10.3, GHC == 8.8.4, GHC == 8.6.5
category: User Interfaces
homepage: https://github.com/haskell-Z/snack
bug-reports: https://github.com/haskell-Z/snack/issues
build-type: Simple
extra-source-files: README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/haskell-Z/snack
library
hs-source-dirs: src
build-depends: base >= 4.11 && < 5
default-language: Haskell2010
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
test-suite snack-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
build-depends: base >= 4.11 && < 5, hspec, snack
default-language: Haskell2010
build-tool-depends: hspec-discover:hspec-discover == 2.*
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
-threaded -rtsopts -with-rtsopts=-N