validity-path 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+29/−23 lines, 3 filesdep ~basedep ~filepathsetup-changed
Dependency ranges changed: base, filepath
Files
- Setup.hs +1/−0
- src/Data/Validity/Path.hs +1/−0
- validity-path.cabal +27/−23
Setup.hs view
@@ -1,2 +1,3 @@ import Distribution.Simple+ main = defaultMain
src/Data/Validity/Path.hs view
@@ -1,3 +1,4 @@+{-# OPTIONS_GHC -fno-warn-orphans #-} {-# LANGUAGE FlexibleInstances #-} module Data.Validity.Path where
validity-path.cabal view
@@ -1,26 +1,30 @@-name: validity-path-version: 0.1.0.0-synopsis: Validity instances for Path-description: Please see README.md-homepage: https://github.com/NorfairKing/validity#readme-license: MIT-license-file: LICENSE-author: Tom Sydney Kerckhove-maintainer: syd.kerckhove@gmail.com-copyright: Copyright: (c) 2016 Tom Sydney Kerckhove-category: Validity-build-type: Simple-cabal-version: >=1.10+name: validity-path+version: 0.1.0.1+cabal-version: >=1.10+build-type: Simple+license: MIT+license-file: LICENSE+copyright: Copyright: (c) 2016 Tom Sydney Kerckhove+maintainer: syd.kerckhove@gmail.com+homepage: https://github.com/NorfairKing/validity#readme+synopsis: Validity instances for Path+description:+ Please see README.md+category: Validity+author: Tom Sydney Kerckhove +source-repository head+ type: git+ location: https://github.com/NorfairKing/validity+ library- hs-source-dirs: src- exposed-modules: Data.Validity.Path- build-depends: base < 5- , validity- , path >= 0.5 && < 0.6- , filepath >= 1.4 && < 1.5- default-language: Haskell2010+ exposed-modules:+ Data.Validity.Path+ build-depends:+ base >= 4.7 && <5,+ validity -any,+ path >=0.5 && <0.6,+ filepath >=1.3 && <1.5+ default-language: Haskell2010+ hs-source-dirs: src -source-repository head- type: git- location: https://github.com/NorfairKing/validity