-- Initial googlepolyline.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: googlepolyline version: 0.1.0.2 synopsis: Google Polyline Encoder/Decoder description: Encoding and decoding functions for Google Maps' polyline format. license: MIT license-file: LICENSE author: Lorne Applebaum maintainer: me@lorne.me -- copyright: category: Data, Text build-type: Simple Homepage: https://github.com/lornap/googlepolyline Bug-reports: https://github.com/lornap/googlepolyline/issues -- extra-source-files: cabal-version: >=1.10 source-repository head type: git location: https://github.com/lornap/googlepolyline library exposed-modules: Data.Text.GooglePolyline -- other-modules: -- other-extensions: build-depends: base >=4.7 && <4.9 , bytestring >= 0.10 && <0.11 , text >= 1.2 && <1.3 hs-source-dirs: src default-language: Haskell2010 Test-Suite test-googlepolyline type: exitcode-stdio-1.0 hs-source-dirs: tests other-modules: Units , QuickCheck build-depends: base >=4.7 && <4.9 , googlepolyline , bytestring >= 0.10 && <0.11 , text >= 1.2 && <1.3 , HUnit >= 1.2 && <1.4 , QuickCheck >= 2.7 && <2.9 , test-framework-hunit >= 0.3 && <0.4 , test-framework-quickcheck2 >= 0.3 && <0.4 , test-framework >= 0.8 && <0.9 main-is: Tests.hs default-language: Haskell2010