Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 2ea5f02

Browse files
committed
Switch to go modules, vendor the dependencies
1 parent 8880d53 commit 2ea5f02

File tree

593 files changed

+302387
-293
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

593 files changed

+302387
-293
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,3 @@ dio
2323
*.db
2424
.dio
2525
*-LICENCE
26-
27-
# Go vendor directory
28-
vendor

Gopkg.lock

Lines changed: 0 additions & 241 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 49 deletions
This file was deleted.

go.mod

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module github.com/sqlitebrowser/dio
2+
3+
go 1.14
4+
5+
require (
6+
github.com/BurntSushi/toml v0.3.1 // indirect
7+
github.com/elazarl/goproxy v0.0.0-20200426045556-49ad98f6dac1 // indirect
8+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
9+
github.com/kr/pretty v0.1.0 // indirect
10+
github.com/mitchellh/go-homedir v1.1.0
11+
github.com/moul/http2curl v1.0.0 // indirect
12+
github.com/parnurzeal/gorequest v0.2.15
13+
github.com/pkg/errors v0.8.1
14+
github.com/smartystreets/goconvey v1.6.4 // indirect
15+
github.com/spf13/afero v1.2.1 // indirect
16+
github.com/spf13/cobra v0.0.3
17+
github.com/spf13/viper v1.3.1
18+
golang.org/x/text v0.3.0
19+
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
20+
)

0 commit comments

Comments
 (0)