wordsearch/go.mod

21 lines
597 B
Modula-2
Raw Normal View History

2023-10-08 15:05:12 +01:00
module github.com/ray1729/wordsearch
2023-10-07 17:12:47 +01:00
go 1.21.1
2023-10-08 14:25:57 +01:00
require (
2024-04-20 14:45:37 +01:00
github.com/GoogleCloudPlatform/functions-framework-go v1.8.1
2023-10-08 14:25:57 +01:00
github.com/rs/cors v1.10.1
2024-04-20 14:43:43 +01:00
golang.org/x/text v0.14.0
2023-10-08 14:25:57 +01:00
)
require (
2024-04-20 14:45:37 +01:00
cloud.google.com/go/functions v1.16.1 // indirect
github.com/cloudevents/sdk-go/v2 v2.15.2 // indirect
github.com/google/uuid v1.6.0 // indirect
2023-10-27 09:16:05 +01:00
github.com/json-iterator/go v1.1.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
go.uber.org/multierr v1.11.0 // indirect
2024-04-20 14:45:37 +01:00
go.uber.org/zap v1.27.0 // indirect
2023-10-08 14:25:57 +01:00
)