-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgo.mod
29 lines (26 loc) · 912 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/ciphermarco/BOAST
go 1.22.5
require (
github.com/BurntSushi/toml v1.4.0
github.com/coredns/coredns v1.11.3
github.com/go-chi/chi/v5 v5.1.0
github.com/go-chi/render v1.0.3
github.com/miekg/dns v1.1.61
github.com/prometheus/procfs v0.15.1
golang.org/x/crypto v0.25.0
golang.org/x/net v0.27.0
)
require (
github.com/ajg/form v1.5.1 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.55.0 // indirect
golang.org/x/mod v0.19.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/tools v0.23.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
)