1
0
Fork 0
mirror of https://github.com/SamTherapy/dnscrypt.git synced 2024-07-02 21:56:06 +00:00

Upgrade to v2

This commit is contained in:
Andrey Meshkov 2020-10-19 18:36:54 +03:00
parent 109bdeae42
commit ec8cdd3529
7 changed files with 7 additions and 7 deletions

View file

@ -4,7 +4,7 @@ import (
"io/ioutil"
"github.com/AdguardTeam/golibs/log"
"github.com/ameshkov/dnscrypt"
"github.com/ameshkov/dnscrypt/v2"
"gopkg.in/yaml.v3"
)

View file

@ -7,7 +7,7 @@ import (
"time"
"github.com/AdguardTeam/golibs/log"
"github.com/ameshkov/dnscrypt"
"github.com/ameshkov/dnscrypt/v2"
"github.com/ameshkov/dnsstamps"
"github.com/miekg/dns"
)

View file

@ -8,7 +8,7 @@ import (
"syscall"
"github.com/AdguardTeam/golibs/log"
"github.com/ameshkov/dnscrypt"
"github.com/ameshkov/dnscrypt/v2"
"github.com/miekg/dns"
"gopkg.in/yaml.v3"
)

View file

@ -6,7 +6,7 @@ import (
"math/rand"
"time"
"github.com/ameshkov/dnscrypt/xsecretbox"
"github.com/ameshkov/dnscrypt/v2/xsecretbox"
"golang.org/x/crypto/nacl/secretbox"
)

View file

@ -6,7 +6,7 @@ import (
"math/rand"
"time"
"github.com/ameshkov/dnscrypt/xsecretbox"
"github.com/ameshkov/dnscrypt/v2/xsecretbox"
"golang.org/x/crypto/nacl/secretbox"
)

View file

@ -5,7 +5,7 @@ import (
"math/rand"
"testing"
"github.com/ameshkov/dnscrypt/xsecretbox"
"github.com/ameshkov/dnscrypt/v2/xsecretbox"
"github.com/stretchr/testify/assert"
)

View file

@ -6,7 +6,7 @@ import (
"net"
"strings"
"github.com/ameshkov/dnscrypt/xsecretbox"
"github.com/ameshkov/dnscrypt/v2/xsecretbox"
"github.com/miekg/dns"
"golang.org/x/crypto/nacl/box"
)