forked from fosskers/vectortiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vectortiles.cabal
114 lines (110 loc) · 3.63 KB
/
vectortiles.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: a8c0a23cb848507e81a9b43bbf6682ae9692ee30b20996744855c90b5a3bdfff
name: vectortiles
version: 1.5.0
synopsis: GIS Vector Tiles, as defined by Mapbox.
description: GIS Vector Tiles, as defined by Mapbox.
This library implements version 2.1 of the official Mapbox spec, as defined
here: <https://github.com/mapbox/vector-tile-spec/tree/master/2.1>
.
Note that currently this library ignores top-level protobuf extensions,
/Value/ extensions, and /UNKNOWN/ geometries.
category: Geography
homepage: https://github.com/fosskers/vectortiles
author: Colin Woodbury
maintainer: [email protected]
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
CHANGELOG.md
README.md
test/clearlake.mvt
test/linestring.mvt
test/onepoint.mvt
test/polygon.mvt
test/roads.mvt
library
exposed-modules:
Geography.VectorTile
Geography.VectorTile.Internal
Geography.VectorTile.Geometry
Geography.VectorTile.Protobuf.Internal.Vector_tile
Geography.VectorTile.Protobuf.Internal.Vector_tile.Tile
Geography.VectorTile.Protobuf.Internal.Vector_tile.Tile.Feature
Geography.VectorTile.Protobuf.Internal.Vector_tile.Tile.GeomType
Geography.VectorTile.Protobuf.Internal.Vector_tile.Tile.Layer
Geography.VectorTile.Protobuf.Internal.Vector_tile.Tile.Value
Geography.VectorTile.Util
Geography.VectorTile.VectorTile
Paths_vectortiles
hs-source-dirs:
lib
ghc-options: -fwarn-unused-imports -fwarn-unused-binds -fwarn-name-shadowing -fwarn-unused-matches -fwarn-incomplete-patterns -Wincomplete-uni-patterns
build-depends:
base >=4.9 && <5.0
, bytestring
, containers
, deepseq >=1.4 && <1.5
, hashable
, mtl
, protocol-buffers >=2.4 && <2.5
, protocol-buffers-descriptor >=2.4 && <2.5
, text >=1.2 && <1.3
, transformers >=0.5 && <0.6
, unordered-containers
, vector >=0.11 && <0.13
default-language: Haskell2010
test-suite vectortiles-test
type: exitcode-stdio-1.0
main-is: Test.hs
other-modules:
Paths_vectortiles
hs-source-dirs:
test
ghc-options: -fwarn-unused-imports -fwarn-unused-binds -fwarn-name-shadowing -fwarn-unused-matches -fwarn-incomplete-patterns -Wincomplete-uni-patterns -threaded
build-depends:
base >=4.9 && <5.0
, bytestring
, containers
, hashable
, hex >=0.1 && <0.2
, mtl
, protocol-buffers >=2.4 && <2.5
, protocol-buffers-descriptor >=2.4 && <2.5
, tasty >=0.10.1.2
, tasty-hunit >=0.9.2
, text >=1.2 && <1.3
, unordered-containers
, vector >=0.11 && <0.13
, vectortiles
default-language: Haskell2010
benchmark vectortiles-bench
type: exitcode-stdio-1.0
main-is: Bench.hs
other-modules:
Paths_vectortiles
hs-source-dirs:
bench
ghc-options: -fwarn-unused-imports -fwarn-unused-binds -fwarn-name-shadowing -fwarn-unused-matches -fwarn-incomplete-patterns -Wincomplete-uni-patterns -threaded -rtsopts -O2
build-depends:
base >=4.9 && <5.0
, bytestring
, containers
, criterion >=1.1 && <1.6
, hashable
, microlens >=0.4 && <0.5
, microlens-platform >=0.3 && <0.4
, mtl
, protocol-buffers >=2.4 && <2.5
, protocol-buffers-descriptor >=2.4 && <2.5
, random ==1.1.*
, text >=1.2 && <1.3
, unordered-containers
, vector >=0.11 && <0.13
, vectortiles
default-language: Haskell2010