1
0
mirror of https://github.com/DNSCrypt/dnscrypt-proxy.git synced 2025-01-13 02:22:48 +01:00
dnscrypt-proxy/go.mod

53 lines
2.1 KiB
Modula-2
Raw Normal View History

2021-07-03 10:56:53 +02:00
module github.com/dnscrypt/dnscrypt-proxy
2019-03-01 18:44:37 +01:00
2024-12-11 17:05:11 +01:00
go 1.23.4
2019-03-01 18:44:37 +01:00
require (
2024-06-03 08:40:06 +02:00
github.com/BurntSushi/toml v1.4.0
2022-04-05 14:04:26 +02:00
github.com/VividCortex/ewma v1.2.0
2019-12-16 20:02:53 +01:00
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
2019-03-01 18:44:37 +01:00
github.com/dchest/safefile v0.0.0-20151022103144-855e8d98f185
2021-07-03 10:56:53 +02:00
github.com/hashicorp/go-immutable-radix v1.3.1
2023-02-02 12:44:12 +01:00
github.com/hectane/go-acl v0.0.0-20230122075934-ca0b05cb1adb
2024-12-12 11:31:52 +01:00
github.com/jedisct1/dlog v0.0.0-20241212093805-3c5fd791b405
2023-02-15 18:42:36 +01:00
github.com/jedisct1/go-clocksmith v0.0.0-20230211133011-392c1afea73e
2024-04-25 12:45:52 +02:00
github.com/jedisct1/go-dnsstamps v0.0.0-20240423203910-07a0735c7774
2024-12-12 11:31:52 +01:00
github.com/jedisct1/go-hpke-compact v0.0.0-20241212093903-5caa4621366f
github.com/jedisct1/go-minisign v0.0.0-20241212093149-d2f9f49435c7
github.com/jedisct1/xsecretbox v0.0.0-20241212092125-3afc4917ac41
2019-11-05 01:32:38 +01:00
github.com/k-sone/critbitgo v1.4.0
2022-10-15 10:37:07 +02:00
github.com/kardianos/service v1.2.2
2024-09-10 23:28:24 +02:00
github.com/miekg/dns v1.1.62
github.com/opencoff/go-sieve v0.2.1
2024-11-08 08:07:43 +01:00
github.com/powerman/check v1.8.0
2024-12-11 17:05:11 +01:00
github.com/quic-go/quic-go v0.48.2
2024-12-12 10:28:01 +01:00
golang.org/x/crypto v0.31.0
2024-12-11 17:05:11 +01:00
golang.org/x/net v0.32.0
golang.org/x/sys v0.28.0
2023-02-07 10:14:52 +01:00
gopkg.in/natefinch/lumberjack.v2 v2.2.1
2019-03-01 18:44:37 +01:00
)
2021-09-24 09:30:49 +02: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 10:20:25 +02:00
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
2021-09-24 09:30:49 +02: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 09:30:49 +02: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
2024-09-10 23:28:24 +02:00
github.com/quic-go/qpack v0.5.1 // indirect
2024-11-08 08:07:43 +01:00
github.com/smartystreets/goconvey v1.8.1 // indirect
2024-03-26 19:56:06 +01:00
go.uber.org/mock v0.4.0 // indirect
2024-06-03 08:40:06 +02:00
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
2024-06-13 23:44:17 +02:00
golang.org/x/mod v0.18.0 // indirect
2024-12-11 17:05:11 +01:00
golang.org/x/sync v0.10.0 // indirect
golang.org/x/text v0.21.0 // indirect
2024-06-13 23:44:17 +02:00
golang.org/x/tools v0.22.0 // indirect
2024-11-08 08:07:43 +01:00
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/grpc v1.56.3 // indirect
google.golang.org/protobuf v1.34.2 // indirect
2021-09-24 09:30:49 +02:00
)