-
Notifications
You must be signed in to change notification settings - Fork 1
/
gtfsschedule.cabal
167 lines (162 loc) · 6.92 KB
/
gtfsschedule.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
name: gtfsschedule
version: 0.8.3.0
synopsis: Be on time for your next public transport service
description:
.
The CLI tool is intended to be used to be run in a status bar to get
latest GTFS transport feed updates. The updates are currently only
implemented for the feed in Brisbane, Australia.
.
= Requirements
.
* GHC >= 8.4
* protobuffers
homepage: http://github.com/romanofski/gtfsschedule#readme
license: GPL-3
license-file: LICENSE
author: Róman Joost
maintainer: roman@bromeco.de
copyright: 2015-2021 Róman Joost
category: Web
build-type: Simple
extra-source-files: README.adoc
ChangeLog.adoc
data-files: test/data/importtest.zip
, test/data/regular/*.txt
, test/data/servicefinalstop/*.txt
, test/data/aftermidnight/*.txt
, test/data/tempservice/*.txt
, .hlint.yaml
cabal-version: >=1.10
tested-with:
GHC==8.6.5, GHC==8.8.4, GHC==8.10.3
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: GTFS.Schedule
, GTFS.Database
, CSV.Import
, CLI.Config
, CLI.Main
, GTFS.Realtime.Message.Types
, GTFS.Realtime.Message.Schedule
, GTFS.Realtime.Message.Internal
, GTFS.Realtime.Update
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.Alert
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.Alert.Cause
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.Alert.Effect
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.EntitySelector
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.FeedEntity
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.FeedHeader
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.FeedHeader.Incrementality
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.FeedMessage
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.Position
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.TimeRange
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.TranslatedString
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.TranslatedString.Translation
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.TripUpdate
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.TripUpdate.StopTimeEvent
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.TripUpdate.StopTimeUpdate.ScheduleRelationship
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.TripUpdate.StopTimeUpdate
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.TripDescriptor
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.TripDescriptor.ScheduleRelationship
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.VehicleDescriptor
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.VehiclePosition
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.VehiclePosition.VehicleStopStatus
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.VehiclePosition.CongestionLevel
, GTFS.Realtime.Internal.Com.Google.Transit.Realtime.VehiclePosition.OccupancyStatus
, CSV.Import.Route
, CSV.Import.Trip
, CSV.Import.Calendar
, CSV.Import.Stop
, CSV.Import.StopTime
, CSV.Import.Util
build-depends: base >= 4.7 && < 5
, bytestring
, protocol-buffers
, time
, old-locale >= 1.0
, text
, utf8-string
, transformers
, resourcet
, monad-logger
, persistent >= 2.11
, containers
, mtl
, persistent-sqlite
, persistent-template
, esqueleto
, xdg-basedir
, http-conduit >= 2.2.0
, http-client
, conduit-extra >= 1.1
, conduit > 1.2
, http-types
, cassava >= 0.4.5.0
, zip-archive
, temporary
, directory >= 1.2
, system-filepath
, ini
, optparse-applicative
, HStringTemplate
, monad-control
, unliftio-core
, bifunctors >= 4.0
, lens
default-language: Haskell2010
executable gtfsschedule
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
other-modules: Paths_gtfsschedule
build-depends: base
, mtl
, gtfsschedule
, protocol-buffers
, bytestring
, optparse-applicative
, http-conduit
, text
, ini
test-suite unit-tests
type: exitcode-stdio-1.0
hs-source-dirs: test
ghc-options: -Wall
main-is: Main.hs
other-modules: TestCSVImport
TestRealtime
Fixtures
TestUpdate
TestProperty
TestSchedule
build-depends: base
, gtfsschedule
, tasty-hunit
, tasty-quickcheck >= 0.8
, QuickCheck
, tasty
, bytestring
, time
, persistent
, persistent-sqlite
, text
, transformers
, transformers-base
, lifted-base
, network
, conduit
, conduit-extra >= 1.1
, streaming-commons >= 0.1
, resourcet
, monad-logger
, protocol-buffers
, temporary
, directory
, silently
, containers
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/romanofski/gtfsschedule