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: david.binder@uni-tuebingen.de copyright: 2023, David Binder category: Development build-type: Simple extra-doc-files: CHANGELOG.md 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