-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathgo.mod
More file actions
31 lines (28 loc) · 926 Bytes
/
go.mod
File metadata and controls
31 lines (28 loc) · 926 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
28
29
30
31
module github.com/gofiber/fiber/v3
go 1.25.0
require (
github.com/gofiber/schema v1.7.0
github.com/gofiber/utils/v2 v2.0.2
github.com/google/uuid v1.6.0
github.com/mattn/go-colorable v0.1.14
github.com/mattn/go-isatty v0.0.20
github.com/shamaton/msgpack/v3 v3.1.0
github.com/stretchr/testify v1.11.1
github.com/tinylib/msgp v1.6.3
github.com/valyala/bytebufferpool v1.0.0
github.com/valyala/fasthttp v1.69.0
golang.org/x/crypto v0.49.0
)
require (
github.com/andybalholm/brotli v1.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fxamacker/cbor/v2 v2.9.0 // direct
github.com/klauspost/compress v1.18.4 // indirect
github.com/philhofer/fwd v1.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/x448/float16 v0.8.4 // indirect
golang.org/x/net v0.52.0
golang.org/x/sys v0.42.0 // indirect
golang.org/x/text v0.35.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)