mirror of https://github.com/rclone/rclone.git
build: update gopkg.in/yaml.v2 to v3
This commit is contained in:
parent
b4ed7fb7d7
commit
11ba4ac539
|
@ -9,7 +9,7 @@ import (
|
||||||
"github.com/rclone/rclone/cmd/bisync/bilib"
|
"github.com/rclone/rclone/cmd/bisync/bilib"
|
||||||
"github.com/rclone/rclone/fs"
|
"github.com/rclone/rclone/fs"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"gopkg.in/yaml.v2"
|
"gopkg.in/yaml.v3"
|
||||||
)
|
)
|
||||||
|
|
||||||
const configFile = "../../fstest/test_all/config.yaml"
|
const configFile = "../../fstest/test_all/config.yaml"
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"slices"
|
"slices"
|
||||||
|
|
||||||
"github.com/rclone/rclone/fs"
|
"github.com/rclone/rclone/fs"
|
||||||
yaml "gopkg.in/yaml.v2"
|
yaml "gopkg.in/yaml.v3"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Test describes an integration test to run with `go test`
|
// Test describes an integration test to run with `go test`
|
||||||
|
|
4
go.mod
4
go.mod
|
@ -89,7 +89,7 @@ require (
|
||||||
golang.org/x/time v0.9.0
|
golang.org/x/time v0.9.0
|
||||||
google.golang.org/api v0.216.0
|
google.golang.org/api v0.216.0
|
||||||
gopkg.in/validator.v2 v2.0.1
|
gopkg.in/validator.v2 v2.0.1
|
||||||
gopkg.in/yaml.v2 v2.4.0
|
gopkg.in/yaml.v3 v3.0.1
|
||||||
storj.io/uplink v1.13.1
|
storj.io/uplink v1.13.1
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -212,7 +212,7 @@ require (
|
||||||
google.golang.org/genproto/googleapis/rpc v0.0.0-20250102185135-69823020774d // indirect
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20250102185135-69823020774d // indirect
|
||||||
google.golang.org/grpc v1.69.2 // indirect
|
google.golang.org/grpc v1.69.2 // indirect
|
||||||
google.golang.org/protobuf v1.36.1 // indirect
|
google.golang.org/protobuf v1.36.1 // indirect
|
||||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
||||||
moul.io/http2curl/v2 v2.3.0 // indirect
|
moul.io/http2curl/v2 v2.3.0 // indirect
|
||||||
storj.io/common v0.0.0-20240812101423-26b53789c348 // indirect
|
storj.io/common v0.0.0-20240812101423-26b53789c348 // indirect
|
||||||
storj.io/drpc v0.0.35-0.20240709171858-0075ac871661 // indirect
|
storj.io/drpc v0.0.35-0.20240709171858-0075ac871661 // indirect
|
||||||
|
|
Loading…
Reference in New Issue