generated from edgexfoundry-holding/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Upgrade influx-export to use V3 (#205)
* refactor: Upgrade influx-export to use V3 Signed-off-by: Marc-Philippe Fuller <[email protected]>
- Loading branch information
1 parent
2084fa7
commit 63baaf5
Showing
6 changed files
with
196 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,70 @@ | ||
module app-service-influx | ||
|
||
go 1.16 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/edgexfoundry/app-functions-sdk-go/v2 v2.3.0 | ||
github.com/edgexfoundry/go-mod-core-contracts/v2 v2.3.0 | ||
github.com/edgexfoundry/app-functions-sdk-go/v3 v3.0.0-dev.61 | ||
github.com/edgexfoundry/go-mod-core-contracts/v3 v3.0.0-dev.41 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.6.0 // indirect | ||
github.com/armon/go-metrics v0.3.10 // indirect | ||
github.com/cenkalti/backoff v2.2.1+incompatible // indirect | ||
github.com/diegoholiveira/jsonlogic/v3 v3.2.7 // indirect | ||
github.com/eclipse/paho.mqtt.golang v1.4.2 // indirect | ||
github.com/edgexfoundry/go-mod-bootstrap/v3 v3.0.0-dev.81 // indirect | ||
github.com/edgexfoundry/go-mod-configuration/v3 v3.0.0-dev.10 // indirect | ||
github.com/edgexfoundry/go-mod-messaging/v3 v3.0.0-dev.28 // indirect | ||
github.com/edgexfoundry/go-mod-registry/v3 v3.0.0-dev.7 // indirect | ||
github.com/edgexfoundry/go-mod-secrets/v3 v3.0.0-dev.15 // indirect | ||
github.com/fatih/color v1.9.0 // indirect | ||
github.com/fxamacker/cbor/v2 v2.4.0 // indirect | ||
github.com/go-jose/go-jose/v3 v3.0.0 // indirect | ||
github.com/go-kit/log v0.2.1 // indirect | ||
github.com/go-logfmt/logfmt v0.5.1 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/go-playground/validator/v10 v10.13.0 // indirect | ||
github.com/go-redis/redis/v7 v7.3.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/gomodule/redigo v1.8.9 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gorilla/mux v1.8.0 // indirect | ||
github.com/gorilla/websocket v1.4.2 // indirect | ||
github.com/hashicorp/consul/api v1.20.0 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/hashicorp/go-hclog v0.14.1 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.3.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.2 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/hashicorp/serf v0.10.1 // indirect | ||
github.com/leodido/go-urn v1.2.3 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mitchellh/consulstructure v0.0.0-20190329231841-56fdc4d2da54 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/nats-io/nats.go v1.25.0 // indirect | ||
github.com/nats-io/nkeys v0.4.4 // indirect | ||
github.com/nats-io/nuid v1.0.1 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect | ||
github.com/spiffe/go-spiffe/v2 v2.1.4 // indirect | ||
github.com/x448/float16 v0.8.4 // indirect | ||
github.com/zeebo/errs v1.3.0 // indirect | ||
golang.org/x/crypto v0.8.0 // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/net v0.9.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230223222841-637eb2293923 // indirect | ||
google.golang.org/grpc v1.53.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.