diff --git a/go.mod b/go.mod index 9602beda..f01b1c1b 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ require ( github.com/pion/logging v0.2.4 github.com/pion/rtcp v1.2.17 github.com/pion/rtp v1.10.5 - github.com/pion/transport/v4 v4.1.1 + github.com/pion/transport/v5 v5.0.0 github.com/stretchr/testify v1.12.1 golang.org/x/time v0.14.0 ) diff --git a/go.sum b/go.sum index dfacca10..2da82552 100644 --- a/go.sum +++ b/go.sum @@ -6,8 +6,8 @@ github.com/pion/rtcp v1.2.17 h1:PxiT6L79yPZKtXIsXdG1eakBl6dtBj4x+4oVEL0DlSw= github.com/pion/rtcp v1.2.17/go.mod h1:7kBpuBJaWwax4hzc/pgexY8vkOpvh8atgYDbaKZq0iU= github.com/pion/rtp v1.10.5 h1:ip0HhO/wYZqQ4bKS+R99KnZh/GRCmIT0jDXikub7vlE= github.com/pion/rtp v1.10.5/go.mod h1:Au8fc6cEByy8RLTwKTQTEeQqDB/SJDxwL4mZuxYA5Pk= -github.com/pion/transport/v4 v4.1.1 h1:kEBtbp1sRad0tnkREDNJ3fmop/CR8p/YxXnpFbn9tqo= -github.com/pion/transport/v4 v4.1.1/go.mod h1:Oxo5oODQvjFF7NkHBBz3f4fZXLB7x03uLVuzfYeA5pE= +github.com/pion/transport/v5 v5.0.0 h1:XWdfCnG6oLaTp07Sr4lbyWVs+MXuaD3eggUsSn6LK90= +github.com/pion/transport/v5 v5.0.0/go.mod h1:Qxw6fCEjFWQkRDZOhS4Vf+neJBcihauvA3uyEa1J1F0= github.com/stretchr/testify v1.12.1 h1:EuwCh5fleGS7H32xRwO3wRGT7DxrDhLAT6FF8MpWDWE= github.com/stretchr/testify v1.12.1/go.mod h1:MDEgiDPPsNp5cuIrHPPCyornHKgEVbtFUmoNlxoYthg= go.yaml.in/yaml/v3 v3.0.5 h1:N6y/pJk8buWs9NY5ERU2HSMfm+IuD/OtfdAnq6kESPw= diff --git a/pkg/twcc/sender_interceptor_test.go b/pkg/twcc/sender_interceptor_test.go index e5f4713b..2f720bb9 100644 --- a/pkg/twcc/sender_interceptor_test.go +++ b/pkg/twcc/sender_interceptor_test.go @@ -12,7 +12,7 @@ import ( "github.com/pion/logging" "github.com/pion/rtcp" "github.com/pion/rtp" - transportTest "github.com/pion/transport/v4/test" + transportTest "github.com/pion/transport/v5/test" "github.com/stretchr/testify/assert" )