-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtuple-fields.cabal
60 lines (52 loc) · 1.88 KB
/
tuple-fields.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
53
54
55
56
57
58
59
60
cabal-version: 3.0
name: tuple-fields
-- The package version.
-- See the Haskell package versioning policy (PVP) for standards
-- guiding when and how versions should be incremented.
-- https://pvp.haskell.org
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
synopsis: Access tuple fields using record dot syntax
description: This library provides orphan HasField instances for tuples to enable access to tuple fields.
(1,2,3)._2
(True, False,2)._3
homepage: https://github.com/BinderDavid/tuple-fields
license: BSD-3-Clause
license-file: LICENSE
author: David Binder
maintainer: [email protected]
copyright: 2023, David Binder
category: Development
build-type: Simple
extra-doc-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/BinderDavid/tuple-fields.git
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: Data.Tuple.Fields
build-depends: base >=4.16 && < 4.18,
hs-source-dirs: src
default-language: Haskell2010
executable gen-source
import: warnings
build-depends: base >=4.16 && < 4.18,
filepath >=1.4
main-is: Main.hs
hs-source-dirs: app
default-language: Haskell2010
test-suite tuple-fields-test
import: warnings
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
base >=4.16 && < 4.18,
tasty >= 1.4 && < 1.5,
tasty-hunit >= 0.10 && < 0.11,
tuple-fields