dnscrypt-proxy/go.mod

53 lines
2.1 KiB
Modula-2
Raw Normal View History

2021-07-03 11:56:53 +03:00
module github.com/dnscrypt/dnscrypt-proxy
2019-03-01 20:44:37 +03:00
2024-06-20 12:23:15 +03:00
go 1.22
2019-03-01 20:44:37 +03:00
require (
2024-06-03 09:40:06 +03:00
github.com/BurntSushi/toml v1.4.0
2022-04-05 15:04:26 +03:00
github.com/VividCortex/ewma v1.2.0
2019-12-16 22:02:53 +03:00
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
2019-03-01 20:44:37 +03:00
github.com/dchest/safefile v0.0.0-20151022103144-855e8d98f185
2021-07-03 11:56:53 +03:00
github.com/hashicorp/go-immutable-radix v1.3.1
2023-02-02 14:44:12 +03:00
github.com/hectane/go-acl v0.0.0-20230122075934-ca0b05cb1adb
2023-08-11 18:06:18 +03:00
github.com/jedisct1/dlog v0.0.0-20230811132706-443b333ff1b3
2023-02-15 20:42:36 +03:00
github.com/jedisct1/go-clocksmith v0.0.0-20230211133011-392c1afea73e
2024-04-25 13:45:52 +03:00
github.com/jedisct1/go-dnsstamps v0.0.0-20240423203910-07a0735c7774
2023-08-11 18:06:18 +03:00
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
2019-11-05 03:32:38 +03:00
github.com/k-sone/critbitgo v1.4.0
2022-10-15 11:37:07 +03:00
github.com/kardianos/service v1.2.2
2024-06-14 00:44:17 +03:00
github.com/miekg/dns v1.1.61
github.com/opencoff/go-sieve v0.2.1
2023-03-23 14:54:45 +03:00
github.com/powerman/check v1.7.0
2024-06-24 07:35:14 +03:00
github.com/quic-go/quic-go v0.45.1
2024-06-14 00:44:17 +03:00
golang.org/x/crypto v0.24.0
golang.org/x/net v0.26.0
golang.org/x/sys v0.21.0
2023-02-07 12:14:52 +03:00
gopkg.in/natefinch/lumberjack.v2 v2.2.1
2019-03-01 20:44:37 +03:00
)
2021-09-24 10:30:49 +03:00
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/protobuf v1.5.3 // indirect
2022-10-24 11:20:25 +03:00
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
2021-09-24 10:30:49 +03:00
github.com/hashicorp/go-syslog v1.0.0 // indirect
github.com/hashicorp/golang-lru v0.5.0 // indirect
github.com/onsi/ginkgo/v2 v2.9.5 // indirect
2021-09-24 10:30:49 +03:00
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
2023-03-23 14:54:45 +03:00
github.com/smartystreets/goconvey v1.7.2 // indirect
2024-03-26 21:56:06 +03:00
go.uber.org/mock v0.4.0 // indirect
2024-06-03 09:40:06 +03:00
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
2024-06-14 00:44:17 +03:00
golang.org/x/mod v0.18.0 // indirect
2024-06-03 09:40:06 +03:00
golang.org/x/sync v0.7.0 // indirect
2024-06-14 00:44:17 +03:00
golang.org/x/text v0.16.0 // indirect
golang.org/x/tools v0.22.0 // indirect
2023-03-23 14:54:45 +03:00
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect
google.golang.org/grpc v1.53.0 // indirect
2024-06-14 00:44:17 +03:00
google.golang.org/protobuf v1.33.0 // indirect
2021-09-24 10:30:49 +03:00
)