annotate go.mod @ 5560:f2204f91d286

Join the log lines of imports to the log exports to recover data from them. Used in SR export to extract information that where in the meta json but now are only found in the log.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 09 Feb 2022 18:34:40 +0100
parents e8e1a24d2f4c
children 2b6c235e33b0
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 (
5478
699048c86848 Updated 3rd-party libs of the gemma server to the latest bug fix release.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5321
diff changeset
6 github.com/PaesslerAG/gval v1.1.1
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
7 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
8 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
9 github.com/fogleman/contourmap v0.0.0-20190814184649-9f61d36c4199
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
10 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
11 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
12 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
13 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
14 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
15 github.com/lib/pq v1.2.0 // indirect
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
16 github.com/mitchellh/go-homedir v1.1.0
5478
699048c86848 Updated 3rd-party libs of the gemma server to the latest bug fix release.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5321
diff changeset
17 github.com/rs/cors v1.8.0
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
18 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
19 github.com/shopspring/decimal v0.0.0-20190905144223-a36b5d85f337 // indirect
5478
699048c86848 Updated 3rd-party libs of the gemma server to the latest bug fix release.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5321
diff changeset
20 github.com/spf13/cobra v1.2.1
5519
e8e1a24d2f4c Upgraded the 3rd party dependencies.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5478
diff changeset
21 github.com/spf13/viper v1.9.0
5478
699048c86848 Updated 3rd-party libs of the gemma server to the latest bug fix release.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5321
diff changeset
22 github.com/tidwall/rtree v1.3.1
699048c86848 Updated 3rd-party libs of the gemma server to the latest bug fix release.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5321
diff changeset
23 github.com/xuri/excelize/v2 v2.4.1
699048c86848 Updated 3rd-party libs of the gemma server to the latest bug fix release.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5321
diff changeset
24 go.etcd.io/bbolt v1.3.6
5519
e8e1a24d2f4c Upgraded the 3rd party dependencies.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5478
diff changeset
25 golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
e8e1a24d2f4c Upgraded the 3rd party dependencies.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5478
diff changeset
26 golang.org/x/net v0.0.0-20211020060615-d418f374d309
e8e1a24d2f4c Upgraded the 3rd party dependencies.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5478
diff changeset
27 golang.org/x/sys v0.0.0-20211020174200-9d6173849985 // indirect
5478
699048c86848 Updated 3rd-party libs of the gemma server to the latest bug fix release.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5321
diff changeset
28 golang.org/x/text v0.3.7 // indirect
699048c86848 Updated 3rd-party libs of the gemma server to the latest bug fix release.
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents: 5321
diff changeset
29 gonum.org/v1/gonum v0.9.3
4443
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
30 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
31 gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
acfd3a3b012a Prepare for building with Go modules (Go 1.13).
Sascha L. Teichmann <sascha.teichmann@intevation.de>
parents:
diff changeset
32 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
33 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
34 )