From 1cffaf39fd0d88dff5d5cbb190e805c612bf7a62 Mon Sep 17 00:00:00 2001 From: roberChen Date: Fri, 26 Feb 2021 15:41:25 +0800 Subject: [PATCH] chore!: use go mod - delete Gopkg.toml - update go modules DEPRECATED: don't use dep anymore! use go mod instead! --- .gitignore | 3 ++- Gopkg.toml | 70 ------------------------------------------------------ go.sum | 1 - 3 files changed, 2 insertions(+), 72 deletions(-) delete mode 100644 Gopkg.toml diff --git a/.gitignore b/.gitignore index ad071983..dbdb38fe 100644 --- a/.gitignore +++ b/.gitignore @@ -20,9 +20,10 @@ _cgo_export.* _testmain.go *.exe +mindoc *.test *.prof .idea /conf/app.conf /vendor -/runtime \ No newline at end of file +/runtime diff --git a/Gopkg.toml b/Gopkg.toml deleted file mode 100644 index 94261685..00000000 --- a/Gopkg.toml +++ /dev/null @@ -1,70 +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/PuerkitoBio/goquery" - version = "1.4.1" - -[[constraint]] - name = "github.com/astaxie/beego" - version = "1.10.1" - -[[constraint]] - name = "github.com/boombuler/barcode" - version = "1.0.0" - -[[constraint]] - name = "github.com/go-sql-driver/mysql" - version = "1.4.0" - -[[constraint]] - branch = "master" - name = "github.com/kardianos/service" - -[[constraint]] - name = "github.com/lifei6671/gocaptcha" - version = "0.1.0" - -[[constraint]] - name = "github.com/mattn/go-sqlite3" - version = "1.9.0" - -[[constraint]] - branch = "master" - name = "github.com/nfnt/resize" - -[[constraint]] - name = "gopkg.in/ldap.v2" - version = "2.5.1" - -[[constraint]] - name = "gopkg.in/russross/blackfriday.v2" - version = "2.0.0" - -[prune] - go-tests = true - unused-packages = true diff --git a/go.sum b/go.sum index 3bb5498f..39ded58c 100644 --- a/go.sum +++ b/go.sum @@ -48,7 +48,6 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20200602114024-627f9648deb9 h1:pNX+40auqi2JqRfOP1akLGtYcn15TUbkhwuCO3foqqM= golang.org/x/net v0.0.0-20200602114024-627f9648deb9/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/sys v0.0.0-20190204203706-41f3e6584952 h1:FDfvYgoVsA7TTZSbgiqjAbfPbK47CNHdWl3h/PJtii0= golang.org/x/sys v0.0.0-20190204203706-41f3e6584952/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=