packages feed

doldol-0.4.1.2: doldol.cabal

cabal-version: 1.12

name:           doldol
version:        0.4.1.2
synopsis:       Flag packer & handler for flaggable data
description:    Please see the README on GitHub at <https://github.com/QuietJoon/doldol#readme>
category:       Data
homepage:       https://github.com/QuietJoon/doldol/
bug-reports:    https://github.com/QuietJoon/doldol/issues
author:         YongJoon Joe
maintainer:     developer+doldol@quietjoon.net
copyright:      2017-2019 YongJoon Joe
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/QuietJoon/doldol

library
  exposed-modules:
      Data.Flag
      Data.Flag.Internal
      Data.Flag.Phantom
      Data.Flag.Simple
  hs-source-dirs:
      src
  build-depends:
      base >=4.4 && <5
  default-language: Haskell2010

test-suite doldol-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Test
      Test.Flag
      Test.Flag.Env
      Test.Flag.Phantom
      Test.Visualize
      Paths_doldol
  hs-source-dirs:
      test
  ghc-options: -rtsopts
  build-depends:
      HUnit
    , QuickCheck
    , base >=4.4 && <5
    , doldol
    , test-framework
    , test-framework-hunit
    , test-framework-quickcheck2
    , test-framework-th
  default-language: Haskell2010