-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
29 lines (26 loc) · 1015 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
27
28
29
module github.com/mdouchement/smsc3
go 1.22
require (
github.com/goburrow/cache v0.1.4
github.com/mdouchement/basex v0.0.0-20200802103314-a4f42a0e6590
github.com/mdouchement/logger v0.0.0-20240212102128-d36bb9ae9641
github.com/mdouchement/smpp v0.0.0-20230317161613-1d49729a2118
github.com/nyaruka/phonenumbers v1.3.5
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.4
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/term v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)