package.yaml 977 Bytes
name:                fcf-composite
version:             0.1.1.0
git:                 https://gitlab.homotopic.tech/haskell/fcf-composite
license:             MIT
author:              "Daniel Firth"
maintainer:          "dan.firth@homotopic.tech"
copyright:           "Daniel Firth"

extra-source-files:
- README.md
- ChangeLog.md

synopsis:            Type-level computation for composite using first-class-families.
category:            Composite, Types

description:         Type-level computation for composite using first-class-families.

dependencies:
- base >= 4.7 && < 5
- composite-base >= 0.7.0.0 && < 0.8
- first-class-families >= 0.8.0.0 && < 0.9
- fcf-containers >= 0.5.0 && < 0.7
- vinyl >= 0.13.0 && < 0.14

library:
  source-dirs: src

tests:
  fcf-composite-test:
    main:             Spec.hs
    source-dirs:      test
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N
    dependencies:
    - fcf-composite
    - tasty
    - tasty-hunit