From 058d6ed598485c369f9264fbe642592fb40772e9 Mon Sep 17 00:00:00 2001 From: sanojsubran Date: Fri, 23 Aug 2024 11:54:48 +0200 Subject: [PATCH] chore:removing toolchain statement --- example/beego/go.mod | 2 -- example/cosmos/go.mod | 2 -- example/couchbase/go.mod | 2 -- example/gin/go.mod | 2 -- example/gorm-postgres/go.mod | 2 -- example/gorm-sqlite/go.mod | 2 -- example/graphql/go.mod | 2 -- example/grpc-client-server/go.mod | 2 -- example/http-database-greeter/go.mod | 2 -- example/httprouter/go.mod | 2 -- example/kafka-producer-consumer/go.mod | 2 -- example/opentracing/go.mod | 2 -- example/pgxv5/go.mod | 2 -- example/sarama/go.mod | 2 -- example/sql-mysql-gin/go.mod | 2 -- example/sql-mysql/go.mod | 2 -- example/sql-redis/go.mod | 2 -- 17 files changed, 34 deletions(-) diff --git a/example/beego/go.mod b/example/beego/go.mod index 742ce7cb2..1183ea76a 100644 --- a/example/beego/go.mod +++ b/example/beego/go.mod @@ -2,8 +2,6 @@ module github.com/instana/go-sensor/example/beego go 1.22 -toolchain go1.23.0 - require ( github.com/beego/beego/v2 v2.3.0 github.com/instana/go-sensor v1.64.0 diff --git a/example/cosmos/go.mod b/example/cosmos/go.mod index 467102fff..1c7f67418 100644 --- a/example/cosmos/go.mod +++ b/example/cosmos/go.mod @@ -2,8 +2,6 @@ module cosmos.example go 1.22.0 -toolchain go1.22.2 - require ( github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 github.com/Azure/azure-sdk-for-go/sdk/data/azcosmos v1.0.3 diff --git a/example/couchbase/go.mod b/example/couchbase/go.mod index 27f45c2bf..6a7b57754 100644 --- a/example/couchbase/go.mod +++ b/example/couchbase/go.mod @@ -2,8 +2,6 @@ module couchbase.example go 1.22 -toolchain go1.23.0 - require github.com/couchbase/gocb/v2 v2.9.1 require ( diff --git a/example/gin/go.mod b/example/gin/go.mod index 95e9b21e4..a5badd75f 100644 --- a/example/gin/go.mod +++ b/example/gin/go.mod @@ -2,8 +2,6 @@ module github.com/instana/go-sensor/example/gin go 1.22 -toolchain go1.23.0 - require ( github.com/gin-gonic/gin v1.10.0 github.com/instana/go-sensor v1.64.0 diff --git a/example/gorm-postgres/go.mod b/example/gorm-postgres/go.mod index 7c7c31274..c8816a8f7 100644 --- a/example/gorm-postgres/go.mod +++ b/example/gorm-postgres/go.mod @@ -2,8 +2,6 @@ module github.com/instana/go-sensor/gorm-postgres go 1.22 -toolchain go1.23.0 - require ( github.com/instana/go-sensor v1.64.0 github.com/instana/go-sensor/instrumentation/instagorm v1.3.0 diff --git a/example/gorm-sqlite/go.mod b/example/gorm-sqlite/go.mod index a832367f5..4d43d49b0 100644 --- a/example/gorm-sqlite/go.mod +++ b/example/gorm-sqlite/go.mod @@ -2,8 +2,6 @@ module github.com/instana/go-sensor/gorm-sqlite go 1.22 -toolchain go1.23.0 - require ( github.com/instana/go-sensor v1.64.0 github.com/instana/go-sensor/instrumentation/instagorm v1.3.0 diff --git a/example/graphql/go.mod b/example/graphql/go.mod index cb9700556..0f9a9e4b7 100644 --- a/example/graphql/go.mod +++ b/example/graphql/go.mod @@ -2,8 +2,6 @@ module example.com/instagraphql go 1.22 -toolchain go1.23.0 - require ( github.com/google/uuid v1.4.0 github.com/gorilla/websocket v1.5.0 diff --git a/example/grpc-client-server/go.mod b/example/grpc-client-server/go.mod index 6854e162f..02bb4dd8c 100644 --- a/example/grpc-client-server/go.mod +++ b/example/grpc-client-server/go.mod @@ -2,8 +2,6 @@ module github.com/instana/go-sensor/example/grpc-client-server go 1.22 -toolchain go1.23.0 - require ( github.com/instana/go-sensor v1.64.0 github.com/instana/go-sensor/instrumentation/instagrpc v1.11.0 diff --git a/example/http-database-greeter/go.mod b/example/http-database-greeter/go.mod index 1a5544eda..3ff320e82 100644 --- a/example/http-database-greeter/go.mod +++ b/example/http-database-greeter/go.mod @@ -2,8 +2,6 @@ module http-database-greeter go 1.22 -toolchain go1.23.0 - require ( github.com/instana/go-sensor v1.59.0 github.com/lib/pq v1.10.9 diff --git a/example/httprouter/go.mod b/example/httprouter/go.mod index e28d91b6b..21d93044a 100644 --- a/example/httprouter/go.mod +++ b/example/httprouter/go.mod @@ -2,8 +2,6 @@ module github.com/instana/go-sensor/example/httprouter go 1.22 -toolchain go1.23.0 - require ( github.com/instana/go-sensor v1.64.0 github.com/instana/go-sensor/instrumentation/instahttprouter v1.10.0 diff --git a/example/kafka-producer-consumer/go.mod b/example/kafka-producer-consumer/go.mod index 034d1882d..2f787e25f 100644 --- a/example/kafka-producer-consumer/go.mod +++ b/example/kafka-producer-consumer/go.mod @@ -2,8 +2,6 @@ module kafka-producer-consumer go 1.22 -toolchain go1.23.0 - require ( github.com/IBM/sarama v1.43.3 github.com/instana/go-sensor v1.64.0 diff --git a/example/opentracing/go.mod b/example/opentracing/go.mod index af6530488..c3563a650 100644 --- a/example/opentracing/go.mod +++ b/example/opentracing/go.mod @@ -2,8 +2,6 @@ module instana-opentracing go 1.22 -toolchain go1.23.0 - require ( github.com/instana/go-sensor v1.59.0 github.com/opentracing/opentracing-go v1.2.0 diff --git a/example/pgxv5/go.mod b/example/pgxv5/go.mod index b1ec6be66..b3b97cff3 100644 --- a/example/pgxv5/go.mod +++ b/example/pgxv5/go.mod @@ -2,8 +2,6 @@ module pgxsample go 1.22 -toolchain go1.23.0 - require ( github.com/gorilla/mux v1.8.1 github.com/instana/go-sensor v1.64.0 diff --git a/example/sarama/go.mod b/example/sarama/go.mod index 7a4754c5e..5e381cc83 100644 --- a/example/sarama/go.mod +++ b/example/sarama/go.mod @@ -2,8 +2,6 @@ module example.com/instasarama go 1.22 -toolchain go1.23.0 - require ( github.com/IBM/sarama v1.43.3 github.com/instana/go-sensor v1.64.0 diff --git a/example/sql-mysql-gin/go.mod b/example/sql-mysql-gin/go.mod index ea901899c..427f7ccfc 100644 --- a/example/sql-mysql-gin/go.mod +++ b/example/sql-mysql-gin/go.mod @@ -2,8 +2,6 @@ module sql-mysql-gin go 1.22 -toolchain go1.23.0 - require ( github.com/gin-gonic/gin v1.10.0 github.com/go-sql-driver/mysql v1.8.1 diff --git a/example/sql-mysql/go.mod b/example/sql-mysql/go.mod index 4596fe881..376e37c3c 100644 --- a/example/sql-mysql/go.mod +++ b/example/sql-mysql/go.mod @@ -2,8 +2,6 @@ module sql-mysql.com go 1.22 -toolchain go1.23.0 - require ( github.com/go-sql-driver/mysql v1.7.1 github.com/instana/go-sensor v1.59.0 diff --git a/example/sql-redis/go.mod b/example/sql-redis/go.mod index 21ab608fd..a6b0a9412 100644 --- a/example/sql-redis/go.mod +++ b/example/sql-redis/go.mod @@ -2,8 +2,6 @@ module sql-go-redis.com go 1.22 -toolchain go1.23.0 - require ( github.com/bonede/go-redis-driver v0.1.0 github.com/instana/go-sensor v1.59.0