From 338310bd2b8373fa11d9c5a7bf6a3bda4aef715e Mon Sep 17 00:00:00 2001 From: Marco Munizaga Date: Tue, 2 Apr 2024 16:08:23 -0700 Subject: [PATCH] Update go.mod to 1.19 --- go.mod | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index ac0a5bf6..2f004cae 100644 --- a/go.mod +++ b/go.mod @@ -1,12 +1,18 @@ module github.com/pion/sctp require ( - github.com/kr/pretty v0.1.0 // indirect github.com/pion/logging v0.2.2 github.com/pion/randutil v0.1.0 github.com/pion/transport/v3 v3.0.2 github.com/stretchr/testify v1.9.0 +) + +require ( + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/kr/pretty v0.1.0 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect + gopkg.in/yaml.v3 v3.0.1 // indirect ) -go 1.13 +go 1.19