-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
26 lines (23 loc) · 881 Bytes
/
go.mod
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
module github.com/koofr/go-dropboxclient
go 1.21
require (
github.com/gorilla/mux v1.8.1
github.com/koofr/go-httpclient v0.0.0-20240520111329-e20f8f203988
github.com/koofr/go-httputils v0.0.0-20240520111524-c45bd15e974d
github.com/koofr/go-ioutils v0.0.0-20240520105419-00cafc007e76
github.com/koofr/go-pathutils v0.0.0-20240520113213-2f3538c02136
github.com/onsi/ginkgo/v2 v2.17.3
github.com/onsi/gomega v1.33.1
)
require (
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20240509144519-723abb6459b7 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.21.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)