-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
41 lines (36 loc) · 1.27 KB
/
go.mod
File metadata and controls
41 lines (36 loc) · 1.27 KB
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
module github.com/tknie/flynn
go 1.25.0
require (
github.com/jackc/pgx/v5 v5.9.1
github.com/tknie/log v0.4.0
)
require github.com/rogpeppe/go-internal v1.9.0 // indirect
require (
filippo.io/edwards25519 v1.2.0 // indirect
github.com/VictoriaMetrics/easyproto v1.2.0 // indirect
github.com/go-logfmt/logfmt v0.6.1 // indirect
github.com/godror/knownpb v0.3.0 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.1 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sync v0.20.0 // indirect
google.golang.org/protobuf v1.36.11 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-sql-driver/mysql v1.9.3
github.com/godror/godror v0.50.0
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/sirupsen/logrus v1.9.4
github.com/stretchr/testify v1.11.1
github.com/tknie/adabas-go-api v1.7.12
github.com/tknie/errorrepo v0.1.0
golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f
golang.org/x/sys v0.38.0 // indirect
golang.org/x/text v0.36.0 // indirect
gopkg.in/yaml.v3 v3.0.1
)