Skip to content

Commit 6a2d8de

Browse files
committed
Use go.mod for dep management
1 parent 315ff88 commit 6a2d8de

File tree

1,362 files changed

+228
-465602
lines changed

Some content is hidden

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

1,362 files changed

+228
-465602
lines changed

Gopkg.lock

-549
This file was deleted.

Gopkg.toml

-93
This file was deleted.

cli/root/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import (
3636
"github.com/arduino/arduino-cli/common/formatter"
3737
"github.com/arduino/arduino-cli/configs"
3838
paths "github.com/arduino/go-paths-helper"
39-
colorable "github.com/mattn/go-colorable"
39+
"github.com/mattn/go-colorable"
4040
"github.com/sirupsen/logrus"
4141
"github.com/spf13/cobra"
4242
"golang.org/x/crypto/ssh/terminal"

common/formatter/text.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import (
2222
"fmt"
2323
"time"
2424

25+
"github.com/cmaglie/pb"
2526
"go.bug.st/downloader"
26-
pb "gopkg.in/cheggaaa/pb.v1"
2727
)
2828

2929
// TextFormatter represents a Formatter for a text console

go.mod

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
module github.com/arduino/arduino-cli
2+
3+
go 1.12
4+
5+
require (
6+
github.com/arduino/arduino-builder v0.0.0-20190412183451-a4859ca30383
7+
github.com/arduino/board-discovery v0.0.0-20180823133458-1ba29327fb0c
8+
github.com/arduino/go-paths-helper v0.0.0-20190214132331-c3c98d1bf2e1
9+
github.com/arduino/go-properties-orderedmap v0.0.0-20181003091528-89278049acd3
10+
github.com/arduino/go-timeutils v0.0.0-20171220113728-d1dd9e313b1b // indirect
11+
github.com/arduino/go-win32-utils v0.0.0-20180330194947-ed041402e83b
12+
github.com/bouk/monkey v1.0.0
13+
github.com/cmaglie/pb v1.0.27
14+
github.com/codeclysm/cc v1.2.2 // indirect
15+
github.com/codeclysm/extract v2.2.0+incompatible
16+
github.com/cpuguy83/go-md2man v1.0.8 // indirect
17+
github.com/creack/goselect v0.0.0-20180328191401-176c667f75aa // indirect
18+
github.com/fatih/color v1.6.0
19+
github.com/fluxio/iohelpers v0.0.0-20160419043813-3a4dd67a94d2 // indirect
20+
github.com/fluxio/multierror v0.0.0-20160419044231-9c68d39025e5 // indirect
21+
github.com/go-errors/errors v1.0.1 // indirect
22+
github.com/golang/protobuf v1.3.1
23+
github.com/gosuri/uitable v0.0.0-20160404203958-36ee7e946282
24+
github.com/h2non/filetype v1.0.8 // indirect
25+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
26+
github.com/juju/errors v0.0.0-20181118221551-089d3ea4e4d5 // indirect
27+
github.com/juju/loggo v0.0.0-20190526231331-6e530bcce5d8 // indirect
28+
github.com/juju/testing v0.0.0-20190429233213-dfc56b8c09fc // indirect
29+
github.com/mattn/go-colorable v0.1.2
30+
github.com/mattn/go-runewidth v0.0.2 // indirect
31+
github.com/miekg/dns v1.0.5 // indirect
32+
github.com/mitchellh/go-homedir v1.0.0
33+
github.com/oleksandr/bonjour v0.0.0-20160508152359-5dcf00d8b228 // indirect
34+
github.com/onsi/ginkgo v1.8.0 // indirect
35+
github.com/onsi/gomega v1.5.0 // indirect
36+
github.com/pkg/errors v0.8.1
37+
github.com/pmylund/sortutil v0.0.0-20120526081524-abeda66eb583
38+
github.com/russross/blackfriday v1.5.1 // indirect
39+
github.com/schollz/closestmatch v2.1.0+incompatible
40+
github.com/sergi/go-diff v1.0.0
41+
github.com/sirupsen/logrus v1.0.5
42+
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a // indirect
43+
github.com/spf13/cobra v0.0.3
44+
github.com/spf13/pflag v1.0.1 // indirect
45+
github.com/stretchr/testify v1.3.0
46+
go.bug.st/cleanup v1.0.0
47+
go.bug.st/downloader v0.0.0-20181116113543-9b8976a44d87
48+
go.bug.st/relaxed-semver v0.0.0-20181022103824-0265409c5852
49+
go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45
50+
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
51+
golang.org/x/net v0.0.0-20190311183353-d8887717615a
52+
google.golang.org/genproto v0.0.0-20190327125643-d831d65fe17d // indirect
53+
google.golang.org/grpc v1.19.1
54+
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
55+
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
56+
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect
57+
gopkg.in/yaml.v2 v2.2.2
58+
)

0 commit comments

Comments
 (0)