forked from saintpete/twilio-go
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc9ea20
commit 36efdc7
Showing
2 changed files
with
43 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
module github.com/kevinburke/twilio-go | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible | ||
github.com/kevinburke/go-types v0.0.0-20210723172823-2deba1f80ba7 | ||
github.com/kevinburke/handlers v0.0.0-20220416175136-cbf86af60bb5 | ||
github.com/kevinburke/rest v0.0.0-20210506044642-5611499aa33c | ||
github.com/kevinburke/handlers v0.0.0-20230925040254-818e9b107ec1 | ||
github.com/kevinburke/rest v0.0.0-20230306061549-8f487d822ad0 | ||
github.com/ttacon/libphonenumber v1.2.1 | ||
golang.org/x/net v0.0.0-20220614195744-fb05da6f9022 | ||
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f | ||
golang.org/x/text v0.3.7 | ||
golang.org/x/net v0.16.0 | ||
golang.org/x/sync v0.4.0 | ||
golang.org/x/text v0.13.0 | ||
) | ||
|
||
require ( | ||
github.com/go-stack/stack v1.8.1 // indirect | ||
github.com/gofrs/uuid v4.2.0+incompatible // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/inconshreveable/log15 v0.0.0-20201112154412-8562bdadbbac // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/gofrs/uuid v4.4.0+incompatible // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/inconshreveable/log15 v2.16.0+incompatible // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/ttacon/builder v0.0.0-20170518171403-c099f663e1c2 // indirect | ||
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters