Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions app/consumer-democracy/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ type App struct { // nolint: golint
ParamsKeeper paramskeeper.Keeper
IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly
EvidenceKeeper evidencekeeper.Keeper
TransferKeeper ibctransferkeeper.Keeper
TransferKeeper *ibctransferkeeper.Keeper
FeeGrantKeeper feegrantkeeper.Keeper
AuthzKeeper authzkeeper.Keeper
ConsumerKeeper consumerkeeper.Keeper
Expand Down Expand Up @@ -420,7 +420,6 @@ func New(
app.IBCKeeper = ibckeeper.NewKeeper(
appCodec,
runtime.NewKVStoreService(keys[ibchost.StoreKey]),
app.GetSubspace(ibchost.ModuleName),
app.UpgradeKeeper,
authtypes.NewModuleAddress(govtypes.ModuleName).String(),
)
Expand All @@ -435,7 +434,7 @@ func New(
app.SlashingKeeper,
app.BankKeeper,
app.AccountKeeper,
&app.TransferKeeper,
app.TransferKeeper,
app.IBCKeeper,
authtypes.FeeCollectorName,
authtypes.NewModuleAddress(govtypes.ModuleName).String(),
Expand Down Expand Up @@ -463,8 +462,6 @@ func New(
app.TransferKeeper = ibctransferkeeper.NewKeeper(
appCodec,
runtime.NewKVStoreService(keys[ibctransfertypes.StoreKey]),
app.GetSubspace(ibctransfertypes.ModuleName),
app.IBCKeeper.ChannelKeeper,
app.IBCKeeper.ChannelKeeper,
app.MsgServiceRouter(),
app.AccountKeeper,
Expand All @@ -477,7 +474,7 @@ func New(
// create static IBC router, add transfer route, then set and seal it
ibcRouter := porttypes.NewRouter()
ibcRouter.AddRoute(ibctransfertypes.ModuleName, ibcmodule)
ibcRouter.AddRoute(ccvtypes.ConsumerPortID, consumerModule)
ibcRouter.AddRoute(ccvtypes.ConsumerPortID, &consumerModule)
app.IBCKeeper.SetRouter(ibcRouter)

// create evidence keeper with router
Expand Down
9 changes: 3 additions & 6 deletions app/consumer/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"path/filepath"

dbm "github.com/cosmos/cosmos-db"
"github.com/cosmos/ibc-go/v10/modules/apps/transfer"

Check failure on line 12 in app/consumer/app.go

View workflow job for this annotation

GitHub Actions / test-integration

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist
ibctransferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper"
ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"
ibc "github.com/cosmos/ibc-go/v10/modules/core"
Expand Down Expand Up @@ -179,7 +179,7 @@
ParamsKeeper paramskeeper.Keeper
IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly
EvidenceKeeper evidencekeeper.Keeper
TransferKeeper ibctransferkeeper.Keeper
TransferKeeper *ibctransferkeeper.Keeper
FeeGrantKeeper feegrantkeeper.Keeper
AuthzKeeper authzkeeper.Keeper
ConsumerKeeper ibcconsumerkeeper.Keeper
Expand Down Expand Up @@ -339,7 +339,6 @@
app.IBCKeeper = ibckeeper.NewKeeper(
appCodec,
runtime.NewKVStoreService(keys[ibchost.StoreKey]),
app.GetSubspace(ibchost.ModuleName),
app.UpgradeKeeper,
authtypes.NewModuleAddress(govtypes.ModuleName).String(),
)
Expand All @@ -354,7 +353,7 @@
app.SlashingKeeper,
app.BankKeeper,
app.AccountKeeper,
&app.TransferKeeper,
app.TransferKeeper,
app.IBCKeeper,
authtypes.FeeCollectorName,
authtypes.NewModuleAddress(govtypes.ModuleName).String(),
Expand All @@ -369,8 +368,6 @@
app.TransferKeeper = ibctransferkeeper.NewKeeper(
appCodec,
runtime.NewKVStoreService(keys[ibctransfertypes.StoreKey]),
app.GetSubspace(ibctransfertypes.ModuleName),
app.IBCKeeper.ChannelKeeper,
app.IBCKeeper.ChannelKeeper,
app.MsgServiceRouter(),
app.AccountKeeper,
Expand All @@ -383,7 +380,7 @@
// create static IBC router, add transfer route, then set and seal it
ibcRouter := porttypes.NewRouter()
ibcRouter.AddRoute(ibctransfertypes.ModuleName, ibcmodule)
ibcRouter.AddRoute(ccvtypes.ConsumerPortID, consumerModule)
ibcRouter.AddRoute(ccvtypes.ConsumerPortID, &consumerModule)
app.IBCKeeper.SetRouter(ibcRouter)

// create evidence keeper with router
Expand Down
7 changes: 2 additions & 5 deletions app/provider/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

dbm "github.com/cosmos/cosmos-db"
"github.com/cosmos/gogoproto/proto"
"github.com/cosmos/ibc-go/v10/modules/apps/transfer"

Check failure on line 13 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist

Check failure on line 13 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist
ibctransferkeeper "github.com/cosmos/ibc-go/v10/modules/apps/transfer/keeper"

Check failure on line 14 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist

Check failure on line 14 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist
ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types"

Check failure on line 15 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist

Check failure on line 15 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist
ibc "github.com/cosmos/ibc-go/v10/modules/core"

Check failure on line 16 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist

Check failure on line 16 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist
ibcconnectiontypes "github.com/cosmos/ibc-go/v10/modules/core/03-connection/types"

Check failure on line 17 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist

Check failure on line 17 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist
porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types"

Check failure on line 18 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist

Check failure on line 18 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist
ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported"

Check failure on line 19 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist

Check failure on line 19 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist
ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper"
ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint"

Check failure on line 21 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist

Check failure on line 21 in app/provider/app.go

View workflow job for this annotation

GitHub Actions / Analyze

github.com/cosmos/ibc-go/[email protected]: replacement directory ../../ibc-go-tmp does not exist
ibctesting "github.com/cosmos/ibc-go/v10/testing"
"github.com/spf13/cast"

Expand Down Expand Up @@ -206,7 +206,7 @@
ParamsKeeper paramskeeper.Keeper
IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly
EvidenceKeeper evidencekeeper.Keeper
TransferKeeper ibctransferkeeper.Keeper
TransferKeeper *ibctransferkeeper.Keeper
ProviderKeeper ibcproviderkeeper.Keeper
ConsensusParamsKeeper consensusparamkeeper.Keeper

Expand Down Expand Up @@ -397,7 +397,6 @@
app.IBCKeeper = ibckeeper.NewKeeper(
appCodec,
runtime.NewKVStoreService(keys[ibcexported.StoreKey]),
app.GetSubspace(ibcexported.ModuleName),
app.UpgradeKeeper,
authtypes.NewModuleAddress(govtypes.ModuleName).String(),
)
Expand Down Expand Up @@ -483,8 +482,6 @@
app.TransferKeeper = ibctransferkeeper.NewKeeper(
appCodec,
runtime.NewKVStoreService(keys[ibctransfertypes.StoreKey]),
app.GetSubspace(ibctransfertypes.ModuleName),
app.IBCKeeper.ChannelKeeper,
app.IBCKeeper.ChannelKeeper,
app.MsgServiceRouter(),
app.AccountKeeper,
Expand All @@ -500,7 +497,7 @@
// create static IBC router, add transfer route, then set and seal it
ibcRouter := porttypes.NewRouter()
ibcRouter.AddRoute(ibctransfertypes.ModuleName, transferStack)
ibcRouter.AddRoute(providertypes.ModuleName, providerModule)
ibcRouter.AddRoute(providertypes.ModuleName, &providerModule)
app.IBCKeeper.SetRouter(ibcRouter)

skipGenesisInvariants := cast.ToBool(appOpts.Get(crisis.FlagSkipGenesisInvariants))
Expand Down
5 changes: 1 addition & 4 deletions app/sovereign/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ type App struct { // nolint: golint
ParamsKeeper paramskeeper.Keeper
IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly
EvidenceKeeper evidencekeeper.Keeper
TransferKeeper ibctransferkeeper.Keeper
TransferKeeper *ibctransferkeeper.Keeper
FeeGrantKeeper feegrantkeeper.Keeper
AuthzKeeper authzkeeper.Keeper

Expand Down Expand Up @@ -407,7 +407,6 @@ func New(
app.IBCKeeper = ibckeeper.NewKeeper(
appCodec,
runtime.NewKVStoreService(keys[ibchost.StoreKey]),
app.GetSubspace(ibchost.ModuleName),
app.UpgradeKeeper,
authtypes.NewModuleAddress(govtypes.ModuleName).String(),
)
Expand All @@ -423,8 +422,6 @@ func New(
app.TransferKeeper = ibctransferkeeper.NewKeeper(
appCodec,
runtime.NewKVStoreService(keys[ibctransfertypes.StoreKey]),
app.GetSubspace(ibctransfertypes.ModuleName),
app.IBCKeeper.ChannelKeeper,
app.IBCKeeper.ChannelKeeper,
app.MsgServiceRouter(),
app.AccountKeeper,
Expand Down
103 changes: 54 additions & 49 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,30 +1,32 @@
module github.com/cosmos/interchain-security/v7

go 1.23.6
go 1.24.3

replace github.com/cosmos/ibc-go/v10 => ../../ibc-go-tmp

require (
cosmossdk.io/errors v1.0.2
cosmossdk.io/math v1.5.2
cosmossdk.io/math v1.5.3
github.com/cometbft/cometbft v0.38.17
github.com/cometbft/cometbft-db v0.14.1 // indirect
github.com/cosmos/cosmos-sdk v0.53.0-rc.2
github.com/cosmos/cosmos-sdk v0.53.2
github.com/cosmos/gogoproto v1.7.0
github.com/cosmos/ics23/go v0.11.0
github.com/golang/mock v1.6.0
github.com/golang/protobuf v1.5.4
github.com/gorilla/mux v1.8.1 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/kylelemons/godebug v1.1.0
github.com/spf13/cast v1.7.1
github.com/spf13/cast v1.9.2
github.com/spf13/cobra v1.9.1
github.com/stretchr/testify v1.10.0
github.com/tidwall/gjson v1.18.0
golang.org/x/crypto v0.36.0 // indirect
golang.org/x/crypto v0.38.0 // indirect
golang.org/x/exp v0.0.0-20250305212735-054e65f0b394
golang.org/x/net v0.38.0 // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/net v0.40.0 // indirect
golang.org/x/sys v0.33.0 // indirect
google.golang.org/genproto v0.0.0-20241118233622-e639e219e697 // indirect
google.golang.org/grpc v1.71.1
google.golang.org/grpc v1.73.0
google.golang.org/protobuf v1.36.6
gopkg.in/yaml.v2 v2.4.0
)
Expand All @@ -34,13 +36,13 @@ require (
cloud.google.com/go/compute/metadata v0.6.0 // indirect
cloud.google.com/go/iam v1.2.2 // indirect
cloud.google.com/go/storage v1.49.0 // indirect
cosmossdk.io/api v0.9.0
cosmossdk.io/api v0.9.2
cosmossdk.io/core v0.11.3
cosmossdk.io/depinject v1.2.0-rc.1 // indirect
cosmossdk.io/depinject v1.2.1 // indirect
filippo.io/edwards25519 v1.1.0 // indirect
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
github.com/99designs/keyring v1.2.2 // indirect
github.com/aws/aws-sdk-go v1.44.224 // indirect
github.com/aws/aws-sdk-go v1.49.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/bgentry/speakeasy v0.2.0 // indirect
Expand All @@ -62,7 +64,7 @@ require (
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/dvsekhvalnov/jose2go v1.7.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.8.0 // indirect
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/go-kit/kit v0.13.0 // indirect
github.com/go-kit/log v0.2.1 // indirect
github.com/go-logfmt/logfmt v0.6.0 // indirect
Expand All @@ -71,7 +73,7 @@ require (
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v1.2.4 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
github.com/golang/snappy v0.0.5-0.20231225225746-43d5d4cd4e0e // indirect
github.com/google/btree v1.1.3 // indirect
github.com/google/go-cmp v0.7.0
github.com/google/orderedcode v0.0.1 // indirect
Expand Down Expand Up @@ -103,11 +105,11 @@ require (
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mtibben/percent v0.2.1 // indirect
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
github.com/petermattis/goid v0.0.0-20240813172612-4fcff4a6cae7 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/prometheus/client_golang v1.21.1 // indirect
github.com/prometheus/client_golang v1.22.0 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.63.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
Expand All @@ -127,9 +129,9 @@ require (
github.com/zondax/ledger-go v0.14.3 // indirect
go.etcd.io/bbolt v1.4.0-alpha.1 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/oauth2 v0.27.0 // indirect
golang.org/x/term v0.30.0 // indirect
golang.org/x/text v0.23.0 // indirect
golang.org/x/oauth2 v0.28.0 // indirect
golang.org/x/term v0.32.0 // indirect
golang.org/x/text v0.25.0 // indirect
google.golang.org/api v0.222.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
nhooyr.io/websocket v1.8.11 // indirect
Expand All @@ -139,55 +141,55 @@ require (

require (
cosmossdk.io/client/v2 v2.0.0-beta.7
cosmossdk.io/log v1.5.1
cosmossdk.io/log v1.6.0
cosmossdk.io/store v1.1.2
cosmossdk.io/tools/confix v0.1.2
cosmossdk.io/x/evidence v0.2.0-rc.2
cosmossdk.io/x/feegrant v0.2.0-rc.2
cosmossdk.io/x/tx v0.14.0-rc.1
cosmossdk.io/x/upgrade v0.2.0-rc.2
github.com/cosmos/cosmos-db v1.1.1
cosmossdk.io/x/tx v0.14.0
cosmossdk.io/x/upgrade v0.2.0
github.com/cosmos/cosmos-db v1.1.3
github.com/cosmos/ibc-go/v10 v10.1.1
github.com/informalsystems/itf-go v0.0.1
github.com/spf13/viper v1.20.1
golang.org/x/mod v0.24.0
google.golang.org/genproto/googleapis/api v0.0.0-20250324211829-b45e905df463
google.golang.org/genproto/googleapis/api v0.0.0-20250528174236-200df99c418a
)

require (
cel.dev/expr v0.19.1 // indirect
cel.dev/expr v0.23.0 // indirect
cloud.google.com/go/auth v0.14.1 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect
cloud.google.com/go/monitoring v1.21.2 // indirect
cosmossdk.io/collections v1.2.0 // indirect
cosmossdk.io/schema v1.0.0 // indirect
cosmossdk.io/collections v1.3.1 // indirect
cosmossdk.io/schema v1.1.0 // indirect
github.com/DataDog/datadog-go v4.8.3+incompatible // indirect
github.com/DataDog/zstd v1.5.6 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0 // indirect
github.com/DataDog/zstd v1.5.7 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.27.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/bits-and-blooms/bitset v1.22.0 // indirect
github.com/bytedance/sonic v1.13.1 // indirect
github.com/bytedance/sonic v1.13.2 // indirect
github.com/bytedance/sonic/loader v0.2.4 // indirect
github.com/cloudwego/base64x v0.1.5 // indirect
github.com/cncf/xds/go v0.0.0-20241223141626-cff3c89139a3 // indirect
github.com/cockroachdb/apd/v3 v3.2.1 // indirect
github.com/cockroachdb/errors v1.11.3 // indirect
github.com/cncf/xds/go v0.0.0-20250326154945-ae57f3c0d45f // indirect
github.com/cockroachdb/errors v1.12.0 // indirect
github.com/cockroachdb/fifo v0.0.0-20240616162244-4768e80dfb9a // indirect
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
github.com/cockroachdb/pebble v1.1.2 // indirect
github.com/cockroachdb/redact v1.1.5 // indirect
github.com/cockroachdb/logtags v0.0.0-20241215232642-bb51bb14a506 // indirect
github.com/cockroachdb/pebble v1.1.5 // indirect
github.com/cockroachdb/redact v1.1.6 // indirect
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect
github.com/creachadair/atomicfile v0.3.1 // indirect
github.com/creachadair/tomledit v0.0.24 // indirect
github.com/dgraph-io/badger/v4 v4.2.0 // indirect
github.com/emicklei/dot v1.6.2 // indirect
github.com/envoyproxy/go-control-plane/envoy v1.32.4 // indirect
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
github.com/ethereum/go-ethereum v1.15.5 // indirect
github.com/ethereum/go-ethereum v1.15.11 // indirect
github.com/fatih/color v1.17.0 // indirect
github.com/getsentry/sentry-go v0.28.1 // indirect
github.com/getsentry/sentry-go v0.33.0 // indirect
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect
Expand All @@ -197,8 +199,9 @@ require (
github.com/hashicorp/go-metrics v0.5.4 // indirect
github.com/hashicorp/go-plugin v1.6.3 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/hashicorp/yamux v0.1.1 // indirect
github.com/hashicorp/yamux v0.1.2 // indirect
github.com/holiman/uint256 v1.3.2 // indirect
github.com/iancoleman/orderedmap v0.3.0 // indirect
github.com/iancoleman/strcase v0.3.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.10 // indirect
github.com/kr/pretty v0.3.1 // indirect
Expand All @@ -213,22 +216,24 @@ require (
github.com/rs/zerolog v1.34.0 // indirect
github.com/sagikazarmark/locafero v0.7.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spiffe/go-spiffe/v2 v2.5.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/zeebo/errs v1.4.0 // indirect
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
go.opentelemetry.io/contrib/detectors/gcp v1.34.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
go.opentelemetry.io/otel v1.34.0 // indirect
go.opentelemetry.io/otel/metric v1.34.0 // indirect
go.opentelemetry.io/otel/sdk v1.34.0 // indirect
go.opentelemetry.io/otel/sdk/metric v1.34.0 // indirect
go.opentelemetry.io/otel/trace v1.34.0 // indirect
go.uber.org/mock v0.5.0 // indirect
go.opentelemetry.io/contrib/detectors/gcp v1.35.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.60.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.59.0 // indirect
go.opentelemetry.io/otel v1.35.0 // indirect
go.opentelemetry.io/otel/metric v1.35.0 // indirect
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
go.opentelemetry.io/otel/trace v1.35.0 // indirect
go.uber.org/mock v0.5.2 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/arch v0.15.0 // indirect
golang.org/x/sync v0.12.0 // indirect
golang.org/x/sync v0.14.0 // indirect
golang.org/x/time v0.10.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250324211829-b45e905df463 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
gotest.tools/v3 v3.5.2 // indirect
rsc.io/qr v0.2.0 // indirect
)
Expand Down
Loading
Loading