-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
71 lines (63 loc) · 1.63 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: pfile
version: 0.1.0.1
github: "illia-shkroba/pfile"
license: BSD-3-Clause
author: "Illia Shkroba"
maintainer: "[email protected]"
copyright: "2024 Illia Shkroba"
category: Filesystem
synopsis: CLI program for profiles management.
extra-source-files:
- README.md
description: Please see the README on GitHub at <https://github.com/illia-shkroba/pfile#readme>
default-extensions:
- NoImplicitPrelude
dependencies:
- base >= 4.7 && < 5
- aeson >= 2.1.2 && <= 2.2.3.0
- aeson-pretty >= 0.8.9 && < 0.9
- directory >= 1.3.7 && < 1.4
- filepath >= 1.4.2 && < 1.5
- mtl >= 2.2.2 && <= 2.3.1
- optparse-applicative >= 0.17.1 && <= 0.18.1.0
- protolude >= 0.3.3 && < 0.4
- temporary >= 1.3 && < 1.4
- transformers >= 0.5.6 && <= 0.6.1.1
- unordered-containers >= 0.2.19 && < 0.3
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wmissing-export-lists
- -Wmissing-home-modules
- -Wpartial-fields
- -Wredundant-constraints
library:
source-dirs: src
executables:
pfile:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- pfile
tests:
pfile-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- pfile
- HUnit >= 1.6.2 && < 1.7
- hspec >= 2.10.10 && <= 2.11
- tasty >= 1.4.3 && <= 1.5
- tasty-hspec >= 1.2.0.3 && < 1.3
- tasty-quickcheck >= 0.10.2 && <= 0.11