-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplaceholder.cabal
52 lines (47 loc) · 1.24 KB
/
placeholder.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
41
42
43
44
45
46
47
48
49
50
51
52
cabal-version: 3.4
name: placeholder
version: 0
synopsis: placeholder definitions for TODO and unimplemented
description: placeholder definitions for TODO and unimplemented code
homepage: https://github.com/ekmett/placeholder
license: BSD-2-Clause OR Apache-2.0
license-file: LICENSE.md
author: Edward Kmett
maintainer: Edward Kmett <[email protected]>
copyright: Copyright (c) 2024 Edward Kmett
stability: experimental
category: Control
build-type: Simple
extra-doc-files: README.md, CHANGELOG.md
tested-with: GHC == 9.4.8
|| == 9.6.6
|| == 9.8.2
|| == 9.10.1
source-repository head
type: git
location: https://github.com/ekmett/placeholder
common base
default-language: Haskell2010
build-depends:
base >= 4.14 && < 5,
ghc-prim
ghc-options:
-Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities
-Wno-simplifiable-class-constraints
common test
import: base
hs-source-dirs: t
build-depends:
filepath >= 1.4,
placeholder,
tasty >= 1.2,
tasty-hunit >= 0.10.0
library
import: base
hs-source-dirs: src
exposed-modules: Control.Placeholder
test-suite placeholder-test
import: test
type: exitcode-stdio-1.0
main-is: Test.hs