author: Julien Moutinho bug-reports: Julien Moutinho build-type: Simple cabal-version: >= 1.10 category: Data Structures -- data-dir: data -- data-files: description: A tree of Data.Map, which is like a 'Map' but whose key is now a 'NonEmpty' list of 'Map' keys (a 'Path') enabling the possibility to gather mapped values by 'Path' prefixes (inside a 'Node'). extra-source-files: stack.yaml extra-tmp-files: license: GPL-3 license-file: COPYING maintainer: Julien Moutinho name: treemap stability: experimental synopsis: A tree of Data.Map. tested-with: GHC==8.2.2 -- PVP: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 2.4.0.20180213 source-repository head location: git://git.autogeree.net/haskell/treemap type: git Library default-extensions: NoImplicitPrelude default-language: Haskell2010 ghc-options: -Wall -fno-warn-tabs -- default-language: Haskell2010 exposed-modules: Data.TreeMap.Strict Data.TreeMap.Strict.Zipper build-depends: base >= 4.6 && < 5 , containers >= 0.5 , deepseq >= 1.4 , mono-traversable >= 1.0 , semigroups >= 0.18 , strict >= 0.3 , transformers >= 0.4 Test-Suite treemap-test type: exitcode-stdio-1.0 -- default-language: Haskell2010 default-extensions: NoImplicitPrelude default-language: Haskell2010 ghc-options: -Wall -fno-warn-tabs -main-is Test hs-source-dirs: test main-is: Test.hs other-modules: Strict build-depends: treemap , base >= 4.6 && < 5 , containers >= 0.5 , mono-traversable >= 1.0 , semigroups >= 0.18 , strict >= 0.3 , tasty >= 0.11 , tasty-hunit >= 0.9 , text >= 1.2 , transformers >= 0.4