52 lines
2.1 KiB
Modula-2
52 lines
2.1 KiB
Modula-2
module github.com/dnscrypt/dnscrypt-proxy
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.3.2
|
|
github.com/VividCortex/ewma v1.2.0
|
|
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
|
|
github.com/dchest/safefile v0.0.0-20151022103144-855e8d98f185
|
|
github.com/hashicorp/go-immutable-radix v1.3.1
|
|
github.com/hashicorp/golang-lru v1.0.2
|
|
github.com/hectane/go-acl v0.0.0-20230122075934-ca0b05cb1adb
|
|
github.com/jedisct1/dlog v0.0.0-20230811132706-443b333ff1b3
|
|
github.com/jedisct1/go-clocksmith v0.0.0-20230211133011-392c1afea73e
|
|
github.com/jedisct1/go-dnsstamps v0.0.0-20230211133001-124a632de565
|
|
github.com/jedisct1/go-hpke-compact v0.0.0-20230811132953-4ee502b61f80
|
|
github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267
|
|
github.com/jedisct1/xsecretbox v0.0.0-20230811132812-b950633f9f1f
|
|
github.com/k-sone/critbitgo v1.4.0
|
|
github.com/kardianos/service v1.2.2
|
|
github.com/miekg/dns v1.1.55
|
|
github.com/powerman/check v1.7.0
|
|
github.com/quic-go/quic-go v0.38.1
|
|
golang.org/x/crypto v0.12.0
|
|
golang.org/x/net v0.14.0
|
|
golang.org/x/sys v0.11.0
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
|
|
github.com/golang/mock v1.6.0 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
|
github.com/hashicorp/go-syslog v1.0.0 // indirect
|
|
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/powerman/deepequal v0.1.0 // indirect
|
|
github.com/quic-go/qpack v0.4.0 // indirect
|
|
github.com/quic-go/qtls-go1-20 v0.3.3 // indirect
|
|
github.com/smartystreets/goconvey v1.7.2 // indirect
|
|
golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect
|
|
golang.org/x/mod v0.10.0 // indirect
|
|
golang.org/x/text v0.12.0 // indirect
|
|
golang.org/x/tools v0.9.1 // indirect
|
|
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
|
|
google.golang.org/grpc v1.53.0 // indirect
|
|
google.golang.org/protobuf v1.30.0 // indirect
|
|
)
|