-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (24 loc) · 838 Bytes
/
go.mod
File metadata and controls
27 lines (24 loc) · 838 Bytes
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
module github.com/nsip/otf-align
go 1.24.0
require (
github.com/iancoleman/strcase v0.0.0-20191112232945-16388991a334
github.com/labstack/echo/v4 v4.9.0
github.com/labstack/gommon v0.3.1
github.com/nats-io/nuid v1.0.1
github.com/peterbourgon/ff v1.7.0
github.com/pkg/errors v0.9.1
github.com/speps/go-hashids v2.0.0+incompatible
github.com/tidwall/gjson v1.9.3
)
require (
github.com/mattn/go-colorable v0.1.11 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/net v0.47.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/text v0.31.0 // indirect
)