Skip to content

Commit

Permalink
Update from Hackage at 2019-10-14T18:37:42Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Oct 14, 2019
1 parent 52fc594 commit eb2f0a7
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
67 changes: 67 additions & 0 deletions constraint-tuples/0.1/constraint-tuples.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
cabal-version: >=1.10
name: constraint-tuples
version: 0.1
synopsis: Partially applicable constraint tuples
description: This library provides classes that emulate the behavior of
GHC's constraint tuple syntax. Unlike GHC's built-in
constraint tuples, the classes in this library can be
partially applied.
.
This library exposes two different modules that are
semantically identical, but compile to slightly different
Core:
.
* "Data.Tuple.Constraint": A @CTupleN@ class compiles to
a dictionary data type with @N@ fields.
.
* "Data.Tuple.Constraint.ClassNewtype": A @CTupleN@ class
compiles to a newtype around the corresponding built-in
constraint tuple type with @N@ arguments.
homepage: https://github.com/RyanGlScott/constraint-tuples
bug-reports: https://github.com/RyanGlScott/constraint-tuples/issues
license: BSD3
license-file: LICENSE
author: Ryan Scott
maintainer: ryan.gl.scott@gmail.com
stability: Stable
copyright: (C) 2018-2019 Ryan Scott
category: Data
build-type: Simple
extra-source-files: CHANGELOG.md, README.md, GenCTuples.sh
tested-with: GHC == 7.6.3
, GHC == 7.8.4
, GHC == 7.10.3
, GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.1

source-repository head
type: git
location: https://github.com/RyanGlScott/constraint-tuples

flag generator-script
description: Build the script which generates the source code for
this library.
default: False

library
exposed-modules: Data.Tuple.Constraint
Data.Tuple.Constraint.ClassNewtype
build-depends: base >= 4.6 && < 5
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall

executable generator-script
if !flag(generator-script)
buildable: False

main-is: GeneratorScript.hs
build-depends: base >= 4.6 && < 5
, base-compat-batteries >= 0.10 && < 0.12
, optparse-applicative >= 0.13 && < 0.16
hs-source-dirs: exe
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts
1 change: 1 addition & 0 deletions constraint-tuples/0.1/constraint-tuples.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"b3f780c0be8cc8cb5f9b2188ab0eecb4","Skein512_512":"074d6320576cebd3c5a961855bc30a5831f54a103725486263d07a01e5ca997c109f5592c66bc23642d3f7ebf95c9682cdfc67b7dc10be5ce3893fcf378596c0","SHA1":"624b10f5850e7a4d9d41d91f7ce9b681ad7dc007","SHA512":"675f01f2bb64e87d62cc816df57a02bd44970fc9eb824150b6671f88951c14a5535a7d57f4ea6d59d0dc8ed50dfcd791221b25ff744d7d9d624c62c0f6ea8291","SHA256":"f6c22a6a4fe7d864a744ebe7877b16e877db949740639dde0294a842309feb56"},"package-locations":["https://hackage.haskell.org/package/constraint-tuples-0.1/constraint-tuples-0.1.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/constraint-tuples-0.1.tar.gz"],"package-size":9022}

0 comments on commit eb2f0a7

Please sign in to comment.