name: type-map version: 0.1.5.0 x-revision: 1 synopsis: Type-indexed maps description: Maps where keys are types and values can have types depending on their keys. homepage: https://github.com/Lysxia/type-map bug-reports: https://github.com/Lysxia/type-map/issues license: MIT license-file: LICENSE author: Li-yao Xia maintainer: lysxia@gmail.com copyright: 2017 Li-yao Xia category: Data stability: Experimental build-type: Simple extra-source-files: CHANGELOG.md README.md cabal-version: >=1.10 library ghc-options: -Wall hs-source-dirs: src exposed-modules: Data.TypeMap.Dynamic Data.TypeMap.Internal.Dynamic if impl(ghc >= 8.0.1) exposed-modules: Data.TypeMap.Dynamic.Alt Data.TypeMap.List Data.TypeMap.Map Data.TypeMap.Static Data.TypeMap.Vector Data.TypeMap.Internal.List Data.TypeMap.Internal.Map Data.TypeMap.Internal.Vector Data.TypeMap.Internal.Unsafe Data.TypeMap.Internal.Dynamic.Alt build-depends: vector build-depends: containers, ghc-prim, base >= 4.7 && < 4.15 default-language: Haskell2010 test-suite type-map-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: test.hs default-language: Haskell2010 if impl(ghc >= 8.0.1) build-depends: base >= 4.9, type-map else buildable: False test-suite nocoerce-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: nocoerce.hs default-language: Haskell2010 if impl(ghc >= 8.0.1) build-depends: base >= 4.9, type-map else buildable: False test-suite type-map-static-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: static.hs default-language: Haskell2010 if impl(ghc >= 8.0.1) build-depends: base >= 4.9, HUnit, test-framework, test-framework-hunit, type-map else buildable: False source-repository head type: git location: https://github.com/Lysxia/type-map