packages feed

strict-containers-lens-0.1: strict-containers-lens.cabal

Name:           strict-containers-lens
Version:        0.1
Synopsis:       Strict containers - Lens instances
Category:       Data, Data Structures, Lenses
Description:
  This package provides @lens@ utilities and instances for @strict-containers@.
License:        BSD3
License-File:   LICENSE
Maintainer:     Ximin Luo <infinity0@pwned.gg>
Copyright:      (c) 2021 by Ximin Luo
Homepage:       https://github.com/haskellari/strict-containers
Cabal-Version: >= 1.10
Build-type:     Simple
extra-source-files:
    CHANGELOG.md
tested-with:
  GHC ==8.2.2
   || ==8.4.4
   || ==8.6.5
   || ==8.8.3
   || ==8.10.4
   || ==9.0.1

library
  default-language: Haskell2010
  hs-source-dirs:   src
  ghc-options:      -Wall

  build-depends:
      base                  >= 4.5.0.0  && < 5
    , hashable              >= 1.2.7.0  && < 1.4
    , strict-containers     >= 0.1
    , lens                  >= 4.19     && < 6

  exposed-modules:
    Data.Strict.Containers.Lens
    Data.Strict.HashMap.Lens
    Data.Strict.IntMap.Lens
    Data.Strict.Map.Lens
    Data.Strict.Sequence.Lens
    Data.Strict.Vector.Lens