cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack

name:           cradle
version:        0.0.0.0
synopsis:       A simpler process library
description:    This library provides an intuitive, simple, and composable interface for
                running system processes. Think of it as a higher-level `process`.
category:       System
homepage:       https://github.com/garnix-io/cradle#readme
bug-reports:    https://github.com/garnix-io/cradle/issues
author:         garnix team <dev@garnix.io>
maintainer:     garnix team <dev@garnix.io>
license:        BSD3
license-file:   LICENSE
build-type:     Simple

source-repository head
  type: git
  location: https://github.com/garnix-io/cradle

library
  exposed-modules:
      Cradle
      Cradle.Output
      Cradle.ProcessConfiguration
      Cradle.ProcessConfiguration.Helpers
  other-modules:
      Paths_cradle
  hs-source-dirs:
      src
  ghc-options: -Wall -Wno-name-shadowing -threaded
  build-depends:
      base >=4.5 && <5
    , bytestring
    , process
    , string-conversions
    , text
  default-language: Haskell2010

test-suite readme
  type: exitcode-stdio-1.0
  main-is: README.lhs
  other-modules:
      Paths_cradle
  ghc-options: -Wall -Wno-name-shadowing -threaded -pgmL markdown-unlit
  build-depends:
      base >=4.5 && <5
    , bytestring
    , cradle
    , markdown-unlit
    , process
    , string-conversions
    , text
  default-language: Haskell2010

test-suite spec
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      CradleSpec
      OverloadedStringsSpec
      Cradle
      Cradle.Output
      Cradle.ProcessConfiguration
      Cradle.ProcessConfiguration.Helpers
      Paths_cradle
  hs-source-dirs:
      test
      src
  ghc-options: -Wall -Wno-name-shadowing -threaded -fdefer-typed-holes
  build-depends:
      base >=4.5 && <5
    , bytestring
    , directory
    , filepath
    , hspec
    , hspec-discover
    , interpolate
    , mockery
    , process
    , silently
    , string-conversions
    , text
    , transformers
  default-language: Haskell2010