-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
36 lines (30 loc) · 1020 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
30
31
32
33
34
35
36
module github.com/kaliwin/Needle
go 1.21
require (
github.com/dop251/goja v0.0.0-20240220182346-e401ed450204
github.com/google/uuid v1.4.0
github.com/miekg/dns v1.1.57
github.com/robertkrimen/otto v0.4.0
google.golang.org/grpc v1.60.1
google.golang.org/protobuf v1.33.0
)
require (
github.com/golang/protobuf v1.5.3 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
)
require (
github.com/dlclark/regexp2 v1.7.0 // indirect
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
//github.com/golang/protobuf v1.5.3 // indirect
github.com/google/pprof v0.0.0-20240402174815-29b9bb013b0f // indirect
)
//require github.com/golang/protobuf v1.5.3 // indirect
require (
//github.com/golang/protobuf v1.5.3 // indirect
golang.org/x/mod v0.15.0 // indirect
golang.org/x/net v0.24.0
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.18.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
)