lib/proxy: consistently use gopkg.in/yaml.v2 across all the code

This commit is contained in:
Aliaksandr Valialkin 2023-08-29 13:12:38 +02:00
parent e8265a30ca
commit dc88916fea
No known key found for this signature in database
GPG key ID: A72BEC6CD3D0DED1
2 changed files with 2 additions and 3 deletions

3
go.mod
View file

@ -39,8 +39,6 @@ require (
gopkg.in/yaml.v2 v2.4.0
)
require gopkg.in/yaml.v3 v3.0.1
require (
cloud.google.com/go v0.110.7 // indirect
cloud.google.com/go/compute v1.23.0 // indirect
@ -126,4 +124,5 @@ require (
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
google.golang.org/grpc v1.57.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

View file

@ -3,7 +3,7 @@ package proxy
import (
"testing"
"gopkg.in/yaml.v3"
"gopkg.in/yaml.v2"
)
func TestURLParseSuccess(t *testing.T) {