This repository has been archived by the owner on Dec 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 276
/
go.mod
86 lines (73 loc) · 3.88 KB
/
go.mod
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
module github.com/TheThingsNetwork/ttn
go 1.14
replace github.com/TheThingsNetwork/ttn/api => ./api
replace github.com/TheThingsNetwork/ttn/core/proxy => ./core/proxy
replace github.com/TheThingsNetwork/ttn/core/types => ./core/types
replace github.com/TheThingsNetwork/ttn/mqtt => ./mqtt
replace github.com/TheThingsNetwork/ttn/utils/errors => ./utils/errors
replace github.com/TheThingsNetwork/ttn/utils/random => ./utils/random
replace github.com/TheThingsNetwork/ttn/utils/security => ./utils/security
replace github.com/TheThingsNetwork/ttn/utils/testing => ./utils/testing
replace github.com/TheThingsNetwork/ttn/utils/toa => ./utils/toa
replace github.com/brocaar/lorawan => github.com/ThethingsIndustries/legacy-lorawan-lib v0.0.0-20190212122748-b905ab327304
replace github.com/robertkrimen/otto => github.com/ThethingsIndustries/otto v0.0.0-20181129100957-6ddbbb60554a
require (
github.com/TheThingsNetwork/api v0.0.0-20200807125557-7bae06ae0e7b
github.com/TheThingsNetwork/go-account-lib v0.0.0-20200324111756-39cfe6d39482
github.com/TheThingsNetwork/go-cayenne-lib v1.0.0
github.com/TheThingsNetwork/go-utils v0.0.0-20200807125606-b3493662e4bf
github.com/TheThingsNetwork/ttn/api v0.0.0-20200807123328-b39cc6b19c87
github.com/TheThingsNetwork/ttn/core/proxy v0.0.0-20200807123328-b39cc6b19c87
github.com/TheThingsNetwork/ttn/core/types v0.0.0-20200807123328-b39cc6b19c87
github.com/TheThingsNetwork/ttn/mqtt v0.0.0-20200807123328-b39cc6b19c87
github.com/TheThingsNetwork/ttn/utils/errors v0.0.0-20200807123328-b39cc6b19c87
github.com/TheThingsNetwork/ttn/utils/random v0.0.0-20200807123328-b39cc6b19c87
github.com/TheThingsNetwork/ttn/utils/security v0.0.0-20200807123328-b39cc6b19c87
github.com/TheThingsNetwork/ttn/utils/testing v0.0.0-20190520084050-7adf4a69a7c3
github.com/TheThingsNetwork/ttn/utils/toa v0.0.0-20200807123328-b39cc6b19c87
github.com/apex/log v1.8.0
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 // indirect
github.com/bluele/gcache v0.0.0-20190518031135-bc40bd653833
github.com/brocaar/lorawan v0.0.0-20200726141338-ee070f85d494
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/fatih/color v1.9.0 // indirect
github.com/fatih/structs v1.1.0
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/gogo/protobuf v1.3.1
github.com/golang/mock v1.4.4
github.com/golang/protobuf v1.4.2
github.com/gosuri/uitable v0.0.4
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/grpc-ecosystem/grpc-gateway v1.14.6
github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.3.3 // indirect
github.com/pelletier/go-toml v1.8.0 // indirect
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.7.1
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0
github.com/robertkrimen/otto v0.0.0-20191219234010-c382bd3c16ff
github.com/smartystreets/assertions v1.1.1
github.com/spf13/afero v1.3.3 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.0.0
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.1
github.com/streadway/amqp v1.0.0
github.com/tj/go-elastic v0.0.0-20171221160941-36157cbbebc2
golang.org/x/net v0.0.0-20200707034311-ab3426394381
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/genproto v0.0.0-20200806141610-86f49bd18e98
google.golang.org/grpc v1.31.0
gopkg.in/ini.v1 v1.57.0 // indirect
gopkg.in/redis.v5 v5.2.9
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/yaml.v2 v2.3.0
)