first-class-families/first-class-families.cabal

67 lines
1.6 KiB
Plaintext
Raw Normal View History

2018-07-09 07:12:00 +03:00
name: first-class-families
2020-01-30 23:03:47 +03:00
version: 0.7.0.0
2018-07-09 07:12:00 +03:00
synopsis:
First class type families
description:
First class type families,
eval-style defunctionalization
2018-07-11 07:27:07 +03:00
.
See "Fcf".
2018-07-09 07:12:00 +03:00
homepage: https://github.com/Lysxia/first-class-families#readme
license: MIT
license-file: LICENSE
author: Li-yao Xia
maintainer: lysxia@gmail.com
copyright: 2018 Li-yao Xia
category: Other
build-type: Simple
2018-09-12 22:52:06 +03:00
extra-source-files: README.md, CHANGELOG.md
2018-07-09 07:12:00 +03:00
cabal-version: >=1.10
2018-07-11 07:29:48 +03:00
tested-with:
GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.1
2018-07-09 07:12:00 +03:00
library
hs-source-dirs: src
exposed-modules:
Fcf
2019-01-11 17:27:02 +03:00
Fcf.Core
Fcf.Combinators
Fcf.Data.Bool
Fcf.Data.Common
Fcf.Data.List
2019-01-11 17:27:02 +03:00
Fcf.Data.Nat
Fcf.Data.Symbol
2019-01-11 17:27:02 +03:00
Fcf.Classes
Fcf.Utils
2018-07-09 07:12:00 +03:00
build-depends:
-- This upper bound is conservative.
2019-08-30 01:02:01 +03:00
base >= 4.9 && < 4.14
2018-07-09 07:12:00 +03:00
ghc-options: -Wall
default-language: Haskell2010
2018-12-20 19:03:25 +03:00
test-suite fcf-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
default-language: Haskell2010
build-depends:
base,
first-class-families
2020-01-08 12:52:50 +03:00
test-suite fcf-doctest
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: doctest.hs
default-language: Haskell2010
if impl(ghc >= 8.6)
build-depends:
base,
doctest,
Glob
else
buildable: False
2018-07-09 07:12:00 +03:00
source-repository head
type: git
location: https://github.com/Lysxia/first-class-families