diff options
author | Tyler Davis <tydavis@gmail.com> | 2019-06-03 03:43:22 +0000 |
---|---|---|
committer | Tyler Davis <tydavis@gmail.com> | 2019-06-03 03:43:22 +0000 |
commit | f22b6da3c7964a23d93269b6c5de9f322c3837a8 (patch) | |
tree | b5ad73d8c7333ab1603911487a023f1ac0669d50 | |
parent | 0e8a5cebd8548bfe95c5c7808da7da0f651f0c3a (diff) | |
download | dnstracker-f22b6da3c7964a23d93269b6c5de9f322c3837a8.tar.gz dnstracker-f22b6da3c7964a23d93269b6c5de9f322c3837a8.zip |
Update: go modules
-rw-r--r-- | Gopkg.lock | 36 | ||||
-rw-r--r-- | Gopkg.toml | 34 | ||||
-rw-r--r-- | go.mod | 9 | ||||
-rw-r--r-- | go.sum | 6 | ||||
-rw-r--r-- | vendor/modules.txt | 11 |
5 files changed, 26 insertions, 70 deletions
diff --git a/Gopkg.lock b/Gopkg.lock deleted file mode 100644 index b8edb35..0000000 --- a/Gopkg.lock +++ /dev/null @@ -1,36 +0,0 @@ -# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. - - -[[projects]] - name = "github.com/miekg/dns" - packages = ["."] - revision = "5364553f1ee9cddc7ac8b62dce148309c386695b" - version = "v1.0.4" - -[[projects]] - branch = "master" - name = "golang.org/x/crypto" - packages = [ - "ed25519", - "ed25519/internal/edwards25519" - ] - revision = "91a49db82a88618983a78a06c1cbd4e00ab749ab" - -[[projects]] - branch = "master" - name = "golang.org/x/net" - packages = [ - "bpf", - "internal/iana", - "internal/socket", - "ipv4", - "ipv6" - ] - revision = "cbe0f9307d0156177f9dd5dc85da1a31abc5f2fb" - -[solve-meta] - analyzer-name = "dep" - analyzer-version = 1 - inputs-digest = "7f5f127558bc8caa1a0989ed5a691ecfb9a63944f800217709dad14ed83905e9" - solver-name = "gps-cdcl" - solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml deleted file mode 100644 index 2541630..0000000 --- a/Gopkg.toml +++ /dev/null @@ -1,34 +0,0 @@ -# Gopkg.toml example -# -# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html -# for detailed Gopkg.toml documentation. -# -# required = ["github.com/user/thing/cmd/thing"] -# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] -# -# [[constraint]] -# name = "github.com/user/project" -# version = "1.0.0" -# -# [[constraint]] -# name = "github.com/user/project2" -# branch = "dev" -# source = "github.com/myfork/project2" -# -# [[override]] -# name = "github.com/x/y" -# version = "2.4.0" -# -# [prune] -# non-go = false -# go-tests = true -# unused-packages = true - - -[[constraint]] - name = "github.com/miekg/dns" - version = "1.0.4" - -[prune] - go-tests = true - unused-packages = true @@ -0,0 +1,9 @@ +module github.com/tydavis/dnstracker + +go 1.12 + +require ( + github.com/miekg/dns v1.0.4 + golang.org/x/crypto v0.0.0-20180228161326-91a49db82a88 // indirect + golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01 // indirect +) @@ -0,0 +1,6 @@ +github.com/miekg/dns v1.0.4 h1:Ec3LTJwwzqT1++63P12fhtdEbQhtPE7TBdD6rlhqrMM= +github.com/miekg/dns v1.0.4/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= +golang.org/x/crypto v0.0.0-20180228161326-91a49db82a88 h1:jLkAo/qlT9whgCLYC5GAJ9kcKrv3Wj8VCc4N+KJ4wpw= +golang.org/x/crypto v0.0.0-20180228161326-91a49db82a88/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01 h1:po1f06KS05FvIQQA2pMuOWZAUXiy1KYdIf0ElUU2Hhc= +golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= diff --git a/vendor/modules.txt b/vendor/modules.txt new file mode 100644 index 0000000..6e35155 --- /dev/null +++ b/vendor/modules.txt @@ -0,0 +1,11 @@ +# github.com/miekg/dns v1.0.4 +github.com/miekg/dns +# golang.org/x/crypto v0.0.0-20180228161326-91a49db82a88 +golang.org/x/crypto/ed25519 +golang.org/x/crypto/ed25519/internal/edwards25519 +# golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01 +golang.org/x/net/ipv4 +golang.org/x/net/ipv6 +golang.org/x/net/bpf +golang.org/x/net/internal/iana +golang.org/x/net/internal/socket |