forked from TheThingsNetwork/lorawan-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
42 lines (35 loc) · 1.8 KB
/
go.mod
File metadata and controls
42 lines (35 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module go.thethings.network/lorawan-stack/tools
go 1.14
replace go.thethings.network/lorawan-stack/v3 => ../
// Dependency of lorawan-stack.
replace github.com/grpc-ecosystem/grpc-gateway => github.com/TheThingsIndustries/grpc-gateway v1.14.5-gogo
// Dependency of lorawan-stack.
replace gopkg.in/DATA-DOG/go-sqlmock.v1 => gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0
// Dependency of Goreleaser that causes problems with module management.
// See https://github.com/Azure/go-autorest/issues/414.
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.1+incompatible
// TODO: Remove once https://github.com/magefile/mage/pull/307 is merged.
replace github.com/magefile/mage v1.9.1 => github.com/TheThingsIndustries/mage v1.9.1-0.20200520191129-8bccc5d0bd6f
require (
github.com/Azure/go-autorest/autorest v0.10.1 // indirect
github.com/Azure/go-autorest/autorest/adal v0.8.3 // indirect
github.com/Azure/go-autorest/autorest/azure/auth v0.4.2 // indirect
github.com/Azure/go-autorest/autorest/to v0.3.0 // indirect
github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect
github.com/TheThingsIndustries/magepkg v0.0.0-20190214092847-6c0299b7c3ed
github.com/blang/semver v3.5.1+incompatible
github.com/client9/misspell v0.3.4
github.com/gobuffalo/envy v1.9.0 // indirect
github.com/gohugoio/hugo v0.71.0
github.com/goreleaser/goreleaser v0.135.0
github.com/magefile/mage v1.9.1
github.com/mattn/goveralls v0.0.5
github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f
github.com/mgechev/revive v1.0.2
github.com/pkg/errors v0.9.1
go.thethings.network/lorawan-stack/v3 v3.0.0-00010101000000-000000000000
golang.org/x/tools v0.0.0-20200519205726-57a9e4404bf7
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/yaml.v2 v2.3.0
)