packages feed

path-0.5.10: path.cabal

name:                path
version:             0.5.10
synopsis:            Support for well-typed paths
description:         Support for well-typed paths.
license:             BSD3
license-file:        LICENSE
author:              Chris Done <chrisdone@fpcomplete.com>
maintainer:          Chris Done <chrisdone@fpcomplete.com>
copyright:           2015–2016 FP Complete
category:            Filesystem
build-type:          Simple
cabal-version:       >=1.8
extra-source-files:  README.md, CHANGELOG

library
  hs-source-dirs:    src/
  ghc-options:       -Wall -O2
  exposed-modules:   Path, Path.Internal
  build-depends:     base >= 4 && <5
                   , exceptions
                   , filepath < 1.2.0.1 || >= 1.3
                   , template-haskell
                   , deepseq
                   , aeson

test-suite test
    type: exitcode-stdio-1.0
    main-is: Main.hs
    other-modules: Path.Gen
    hs-source-dirs: test
    build-depends: HUnit
                 , QuickCheck
                 , aeson
                 , base
                 , bytestring
                 , filepath
                 , genvalidity
                 , genvalidity-hspec
                 , hspec
                 , mtl
                 , path
                 , validity

source-repository head
    type:     git
    location: https://github.com/chrisdone/path.git