diff --git a/README.md b/README.md index 2f94ca8..c1bcebf 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -[![Code Coverage](https://img.shields.io/codecov/c/github/ameshkov/dnscrypt/master.svg)](https://codecov.io/github/ameshkov/dnscrypt?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/ameshkov/dnscrypt)](https://goreportcard.com/report/ameshkov/dnscrypt) -[![Go Doc](https://godoc.org/github.com/ameshkov/dnscrypt?status.svg)](https://godoc.org/github.com/ameshkov/dnscrypt) +[![Code Coverage](https://img.shields.io/codecov/c/github/SamTherapy/dnscrypt/master.svg)](https://codecov.io/github/SamTherapy/dnscrypt?branch=master) +[![Go Report Card](https://goreportcard.com/badge/dns.froth.zone/dnscrypt)](https://goreportcard.com/report/SamTherapy/dnscrypt) +[![Go Doc](https://godoc.org/dns.froth.zone/dnscrypt?status.svg)](https://godoc.org/dns.froth.zone/dnscrypt) # DNSCrypt Go @@ -27,7 +27,7 @@ Please note, that even though this tool can work as a server, it's purpose is me ### How to install -Download and unpack an archive for your platform from the [latest release](https://github.com/ameshkov/dnscrypt/releases). +Download and unpack an archive for your platform from the [latest release](https://github.com/SamTherapy/dnscrypt/releases). Homebrew: ``` @@ -136,7 +136,7 @@ You can also send a DNSCrypt request using a command that does not require stamp ```go import ( - "github.com/ameshkov/dnscrypt/v2" + "dns.froth.zone/dnscrypt" ) // AdGuard DNS stamp @@ -171,7 +171,7 @@ reply, err := c.Exchange(&req, resolverInfo) ```go import ( - "github.com/ameshkov/dnscrypt/v2" + "dns.froth.zone/dnscrypt" ) // Prepare the test DNSCrypt server config diff --git a/cmd/convert_dnscrypt_wrapper.go b/cmd/convert_dnscrypt_wrapper.go index 6d4eed0..d414ff2 100644 --- a/cmd/convert_dnscrypt_wrapper.go +++ b/cmd/convert_dnscrypt_wrapper.go @@ -6,8 +6,8 @@ import ( "os" "time" + "dns.froth.zone/dnscrypt" "github.com/AdguardTeam/golibs/log" - "github.com/ameshkov/dnscrypt/v2" "golang.org/x/crypto/curve25519" "gopkg.in/yaml.v3" ) diff --git a/cmd/generate.go b/cmd/generate.go index 0e2b3c1..f5b969e 100644 --- a/cmd/generate.go +++ b/cmd/generate.go @@ -3,8 +3,8 @@ package main import ( "os" + "dns.froth.zone/dnscrypt" "github.com/AdguardTeam/golibs/log" - "github.com/ameshkov/dnscrypt/v2" "gopkg.in/yaml.v3" ) diff --git a/cmd/lookup.go b/cmd/lookup.go index e5d31c8..f8fdafc 100644 --- a/cmd/lookup.go +++ b/cmd/lookup.go @@ -6,8 +6,8 @@ import ( "strings" "time" + "dns.froth.zone/dnscrypt" "github.com/AdguardTeam/golibs/log" - "github.com/ameshkov/dnscrypt/v2" "github.com/ameshkov/dnsstamps" "github.com/miekg/dns" ) diff --git a/cmd/server.go b/cmd/server.go index 5b9ac13..f5405b6 100644 --- a/cmd/server.go +++ b/cmd/server.go @@ -6,8 +6,8 @@ import ( "os/signal" "syscall" + "dns.froth.zone/dnscrypt" "github.com/AdguardTeam/golibs/log" - "github.com/ameshkov/dnscrypt/v2" "github.com/miekg/dns" "gopkg.in/yaml.v3" ) diff --git a/encrypted_query.go b/encrypted_query.go index b927e02..61bc77b 100644 --- a/encrypted_query.go +++ b/encrypted_query.go @@ -6,7 +6,7 @@ import ( "math/rand" "time" - "github.com/ameshkov/dnscrypt/v2/xsecretbox" + "dns.froth.zone/dnscrypt/xsecretbox" "golang.org/x/crypto/nacl/secretbox" ) diff --git a/encrypted_response.go b/encrypted_response.go index 212cb87..5e7ade2 100644 --- a/encrypted_response.go +++ b/encrypted_response.go @@ -6,7 +6,7 @@ import ( "math/rand" "time" - "github.com/ameshkov/dnscrypt/v2/xsecretbox" + "dns.froth.zone/dnscrypt/xsecretbox" "golang.org/x/crypto/nacl/secretbox" ) diff --git a/encrypted_response_test.go b/encrypted_response_test.go index e09ad4c..2ea6792 100644 --- a/encrypted_response_test.go +++ b/encrypted_response_test.go @@ -5,7 +5,7 @@ import ( "math/rand" "testing" - "github.com/ameshkov/dnscrypt/v2/xsecretbox" + "dns.froth.zone/dnscrypt/xsecretbox" "github.com/stretchr/testify/require" ) diff --git a/go.mod b/go.mod index 5bd78e3..87c569d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/ameshkov/dnscrypt/v2 +module dns.froth.zone/dnscrypt go 1.18 diff --git a/util.go b/util.go index 403a6db..8dc147a 100644 --- a/util.go +++ b/util.go @@ -6,7 +6,7 @@ import ( "net" "strings" - "github.com/ameshkov/dnscrypt/v2/xsecretbox" + "dns.froth.zone/dnscrypt/xsecretbox" "github.com/miekg/dns" "golang.org/x/crypto/nacl/box" )