-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 676 Bytes
/
go.mod
File metadata and controls
24 lines (21 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module github.com/truemail-rb/truemail-go
go 1.22
require (
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/foxcpp/go-mockdns v1.1.0
github.com/mocktools/go-smtp-mock/v2 v2.3.1
github.com/stretchr/testify v1.9.0
golang.org/x/net v0.28.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/miekg/dns v1.1.62 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/text v0.17.0 // indirect
golang.org/x/tools v0.24.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)