forked from saintpete/twilio-go
-
Notifications
You must be signed in to change notification settings - Fork 69
/
go.mod
26 lines (23 loc) · 913 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/kevinburke/twilio-go
go 1.22
require (
github.com/kevinburke/go-types v0.0.0-20210723172823-2deba1f80ba7
github.com/kevinburke/handlers v0.0.0-20231107221000-2cbf18acad0d
github.com/kevinburke/rest v0.0.0-20240617045629-3ed0ad3487f0
github.com/ttacon/libphonenumber v1.2.1
golang.org/x/net v0.27.0
golang.org/x/sync v0.7.0
golang.org/x/text v0.16.0
)
require (
github.com/go-stack/stack v1.8.1 // indirect
github.com/gofrs/uuid v4.4.0+incompatible // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/inconshreveable/log15 v3.0.0-testing.5+incompatible // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/term v0.22.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
)