annotate go.mod @ 5321:0919946f624b extented-report

Added a report controller.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 27 May 2021 01:22:10 +0200
parents 866eae1bd888
children 699048c86848
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
1 module gemma.intevation.de/gemma
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
2
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
3 go 1.13
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
4
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
5 require (
5321
0919946f624b Added a report controller.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5320
diff changeset
6 github.com/360EntSecGroup-Skylar/excelize/v2 v2.4.0
0919946f624b Added a report controller.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5320
diff changeset
7 github.com/PaesslerAG/gval v1.1.0
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
8 github.com/cockroachdb/apd v1.1.0 // indirect
4970
5890e62e6d52 Simplified storing of fm types to database.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 4824
diff changeset
9 github.com/fatih/structs v1.1.0
4552
7ed5a4a94efc Used fogleman's contourmap as a tracing alternative.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 4541
diff changeset
10 github.com/fogleman/contourmap v0.0.0-20190814184649-9f61d36c4199
5320
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
11 github.com/fsnotify/fsnotify v1.4.9 // indirect
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
12 github.com/gofrs/uuid v3.2.0+incompatible // indirect
5320
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
13 github.com/gorilla/mux v1.8.0
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
14 github.com/jackc/fake v0.0.0-20150926172116-812a484cc733 // indirect
4994
9585648f57e3 Update Go modules.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 4970
diff changeset
15 github.com/jackc/pgx v3.6.2+incompatible
4490
f91e46134cd7 Use the current release version of gp-shp
Sascha Wilde <wilde@intevation.de>
parents: 4460
diff changeset
16 github.com/jonas-p/go-shp v0.1.2-0.20190401125246-9fd306ae10a6
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
17 github.com/lib/pq v1.2.0 // indirect
5320
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
18 github.com/magiconair/properties v1.8.5 // indirect
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
19 github.com/mitchellh/go-homedir v1.1.0
5320
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
20 github.com/mitchellh/mapstructure v1.4.1 // indirect
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
21 github.com/pelletier/go-toml v1.9.1 // indirect
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
22 github.com/rs/cors v1.7.0
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
23 github.com/sergi/go-diff v1.0.0
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
24 github.com/shopspring/decimal v0.0.0-20190905144223-a36b5d85f337 // indirect
5320
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
25 github.com/spf13/afero v1.6.0 // indirect
4994
9585648f57e3 Update Go modules.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 4970
diff changeset
26 github.com/spf13/cast v1.3.1 // indirect
5320
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
27 github.com/spf13/cobra v1.1.3
4460
ace7c8d6290d Updated 'go.mod' and 'go.sum' with 'go mod tidy'.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 4443
diff changeset
28 github.com/spf13/jwalterweatherman v1.1.0 // indirect
5320
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
29 github.com/spf13/viper v1.7.1
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
30 github.com/tidwall/rtree v1.2.8
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
31 go.etcd.io/bbolt v1.3.5
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
32 golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
33 golang.org/x/net v0.0.0-20210525063256-abc453219eb5
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
34 golang.org/x/sys v0.0.0-20210525143221-35b2ab0089ea // indirect
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
35 gonum.org/v1/gonum v0.9.1
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
36 gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
37 gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
5320
866eae1bd888 Upgraded the dependencies of the Gemma server.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5281
diff changeset
38 gopkg.in/ini.v1 v1.62.0 // indirect
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
39 gopkg.in/robfig/cron.v1 v1.2.0
5321
0919946f624b Added a report controller.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5320
diff changeset
40 gopkg.in/yaml.v2 v2.4.0
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
41 )