-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgo.mod
More file actions
98 lines (87 loc) · 3.11 KB
/
go.mod
File metadata and controls
98 lines (87 loc) · 3.11 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
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
module github.com/traPtitech/anke-to
go 1.25.7
require (
github.com/google/btree v1.1.3
github.com/google/subcommands v1.2.0 // indirect
github.com/google/wire v0.6.0
github.com/labstack/echo/v4 v4.15.2
github.com/mattn/go-isatty v0.0.22 // indirect
github.com/stretchr/testify v1.11.1
golang.org/x/crypto v0.50.0 // indirect
golang.org/x/mod v0.34.0 // indirect
golang.org/x/net v0.53.0 // indirect
golang.org/x/oauth2 v0.30.0 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.43.0 // indirect
golang.org/x/text v0.36.0 // indirect
golang.org/x/tools v0.43.0 // indirect
google.golang.org/protobuf v1.36.6 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/labstack/gommon v0.5.0 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/time v0.15.0 // indirect
)
require (
filippo.io/edwards25519 v1.1.1 // indirect
github.com/dprotaso/go-yit v0.0.0-20220510233725-9ba8df137936 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/oapi-codegen/oapi-codegen/v2 v2.4.1 // indirect
github.com/oasdiff/yaml v0.0.0-20250309154309-f31be36b4037 // indirect
github.com/oasdiff/yaml3 v0.0.0-20250309153720-d2182401db90 // indirect
github.com/speakeasy-api/openapi-overlay v0.9.0 // indirect
github.com/vmware-labs/yaml-jsonpath v0.3.2 // indirect
go.mongodb.org/mongo-driver v1.17.4 // indirect
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/prometheus/client_model v0.6.2 // indirect
github.com/prometheus/common v0.63.0 // indirect
github.com/prometheus/procfs v0.16.1 // indirect
gorm.io/gorm v1.26.1
)
require (
github.com/jinzhu/now v1.1.5 // indirect
gorm.io/driver/mysql v1.5.7
)
require (
github.com/go-sql-driver/mysql v1.9.2 // indirect
github.com/prometheus/client_golang v1.22.0
gopkg.in/guregu/null.v4 v4.0.0
gorm.io/plugin/prometheus v0.1.0
)
require (
github.com/deckarep/golang-set/v2 v2.9.0
github.com/go-gormigrate/gormigrate/v2 v2.1.5
github.com/oapi-codegen/echo-middleware v1.0.2
github.com/traPtitech/go-traq v0.0.0-20240420012203-0152d96098b0
go.uber.org/mock v0.6.0
)
require (
github.com/getkin/kin-openapi v0.131.0
github.com/go-openapi/jsonpointer v0.21.0 // indirect
github.com/go-openapi/swag v0.23.0 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.9.0 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/perimeterx/marshmallow v1.1.5 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
require (
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
github.com/google/uuid v1.6.0
github.com/oapi-codegen/runtime v1.4.0
)
tool (
github.com/google/wire/cmd/wire
github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen
go.uber.org/mock/mockgen
)