microlens-contra 0.1.0.2 → 0.1.0.3
raw patch · 1 files changed
+16/−3 lines, 1 filesnew-uploader
Files
- microlens-contra.cabal +16/−3
microlens-contra.cabal view
@@ -1,10 +1,10 @@ name: microlens-contra-version: 0.1.0.2+version: 0.1.0.3 synopsis: True folds and getters for microlens description: This package provides @Fold@ and @Getter@ that are fully compatible with lens; the downside is that this package depends on contravariant, which in its turn depends on a lot of other packages (but still less than lens). .- The difference between @Fold@ and @SimpleFold@ is that you can use e.g. @takingWhile@\/@droppingWhile@ and @backwards@ on the former but not on the latter. Most functions from lens that work with @Fold@ would work with @SimpleFold@ as well, tho.+ The difference between @Fold@ and @SimpleFold@ is that you can use e.g. @takingWhile@\/@droppingWhile@ and @backwards@ on the former but not on the latter. Most functions from lens that work with @Fold@ would work with @SimpleFold@ as well, though. . Starting from GHC 8.6, this package doesn't depend on contravariant anymore. .@@ -12,7 +12,7 @@ license: BSD3 license-file: LICENSE author: Edward Kmett, Artyom Kazak-maintainer: Monadfix <hi@monadfix.io>+maintainer: Steven Fontanella <steven.fontanella@gmail.com> homepage: http://github.com/monadfix/microlens bug-reports: http://github.com/monadfix/microlens/issues category: Data, Lenses@@ -20,6 +20,18 @@ extra-source-files: CHANGELOG.md cabal-version: >=1.10+tested-with: GHC==7.6.3+ GHC==7.8.4+ GHC==7.10.3+ GHC==8.0.2+ GHC==8.2.2+ GHC==8.4.4+ GHC==8.6.5+ GHC==8.8.4+ GHC==8.10.7+ GHC==9.0.2+ GHC==9.2.5+ GHC==9.4.3 source-repository head type: git@@ -41,3 +53,4 @@ hs-source-dirs: src default-language: Haskell2010+ default-extensions: TypeOperators