-
Notifications
You must be signed in to change notification settings - Fork 653
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b3add1
commit 9948a7b
Showing
6 changed files
with
55 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
module github.com/minio/minio-go/examples/minio | ||
|
||
go 1.14 | ||
go 1.17 | ||
|
||
require github.com/minio/minio-go/v7 v7.0.49 | ||
|
||
require ( | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/klauspost/compress v1.15.9 // indirect | ||
github.com/klauspost/cpuid/v2 v2.1.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/klauspost/compress v1.16.0 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.4 // indirect | ||
github.com/minio/md5-simd v1.1.2 // indirect | ||
github.com/minio/minio-go/v7 v7.0.32 | ||
github.com/minio/sha256-simd v1.0.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/rs/xid v1.4.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect | ||
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect | ||
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect | ||
gopkg.in/ini.v1 v1.66.6 // indirect | ||
golang.org/x/crypto v0.6.0 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
) | ||
|
||
replace github.com/minio/minio-go/v7 v7.0.10 => ../.. | ||
replace github.com/minio/minio-go/v7 v7.0.49 => ../.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
module github.com/minio/minio-go/examples/s3 | ||
|
||
go 1.14 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/cheggaaa/pb v1.0.29 | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/mattn/go-runewidth v0.0.13 // indirect | ||
github.com/minio/md5-simd v1.1.2 // indirect | ||
github.com/minio/minio-go/v7 v7.0.32 | ||
github.com/minio/sha256-simd v1.0.0 // indirect | ||
github.com/klauspost/compress v1.16.0 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.4 // indirect | ||
github.com/mattn/go-runewidth v0.0.14 // indirect | ||
github.com/minio/minio-go/v7 v7.0.49 | ||
github.com/minio/sio v0.3.0 | ||
github.com/rs/xid v1.4.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
golang.org/x/crypto v0.6.0 | ||
) | ||
|
||
replace github.com/minio/minio-go/v7 v7.0.32 => ../.. | ||
replace github.com/minio/minio-go/v7 v7.0.49 => ../.. |
Oops, something went wrong.