2019-07-28 19:47:38 +02:00
|
|
|
module github.com/rclone/rclone
|
2018-08-28 16:27:07 +02:00
|
|
|
|
2024-07-18 17:57:24 +02:00
|
|
|
go 1.21
|
2020-06-27 16:45:12 +02:00
|
|
|
|
2018-08-28 16:27:07 +02:00
|
|
|
require (
|
2023-10-28 19:06:17 +02:00
|
|
|
bazil.org/fuse v0.0.0-20230120002735-62a210ff1fd5
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.13.0
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/storage/azfile v1.2.2
|
2023-01-12 13:21:21 +01:00
|
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358
|
2024-07-23 17:41:40 +02:00
|
|
|
github.com/Files-com/files-sdk-go/v3 v3.2.34
|
2023-01-12 13:21:21 +01:00
|
|
|
github.com/Max-Sum/base32768 v0.0.0-20230304063302-18e6ce5945fd
|
2024-01-13 17:32:42 +01:00
|
|
|
github.com/a8m/tree v0.0.0-20240104212747-2c8764a5f17e
|
2021-11-10 11:28:49 +01:00
|
|
|
github.com/aalpar/deheap v0.0.0-20210914013432-0cc84d79dec3
|
2018-08-28 16:27:07 +02:00
|
|
|
github.com/abbot/go-http-auth v0.4.0
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/anacrolix/dms v1.7.1
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/anacrolix/log v0.15.2
|
2021-04-20 01:00:13 +02:00
|
|
|
github.com/atotto/clipboard v0.1.4
|
2024-08-03 12:35:32 +02:00
|
|
|
github.com/aws/aws-sdk-go-v2 v1.30.3
|
|
|
|
github.com/aws/aws-sdk-go-v2/config v1.27.27
|
|
|
|
github.com/aws/aws-sdk-go-v2/credentials v1.17.27
|
|
|
|
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.10
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/s3 v1.58.3
|
|
|
|
github.com/aws/smithy-go v1.20.3
|
2021-01-31 14:26:50 +01:00
|
|
|
github.com/buengese/sgzip v0.1.1
|
2023-11-29 02:17:41 +01:00
|
|
|
github.com/cloudsoda/go-smb2 v0.0.0-20231124195312-f3ec8ae2c891
|
2023-07-28 15:07:41 +02:00
|
|
|
github.com/colinmarc/hdfs/v2 v2.4.0
|
2023-01-12 13:21:21 +01:00
|
|
|
github.com/coreos/go-semver v0.3.1
|
2023-11-29 10:25:30 +01:00
|
|
|
github.com/coreos/go-systemd/v22 v22.5.0
|
2022-04-01 11:26:47 +02:00
|
|
|
github.com/dop251/scsu v0.0.0-20220106150536-84ac88021d00
|
2022-11-24 12:05:54 +01:00
|
|
|
github.com/dropbox/dropbox-sdk-go-unofficial/v6 v6.0.5
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/gabriel-vasile/mimetype v1.4.4
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/gdamore/tcell/v2 v2.7.4
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/go-chi/chi/v5 v5.1.0
|
local: add server-side copy with xattrs on macOS (part-fix #1710)
Before this change, macOS-specific metadata was not preserved by rclone, even for
local-to-local transfers (it does not use the "user." prefix, nor is Mac metadata
limited to xattrs.) Additionally, rclone did not take advantage of APFS's native
"cloning" functionality for fast and deduplicated transfers.
After this change, local (on macOS only) supports "server-side copy" similarly to
other remotes, and achieves this by using (when possible) macOS's native APFS
"cloning", which is the same underlying mechanism deployed when a user
duplicates a file via the Finder UI. This has several advantages over the
previous behavior:
- It is extremely fast (even large files can be cloned instantly)
- It is very efficient in terms of storage, as it automatically deduplicates when
possible (i.e. so that having two identical files does not consume more storage
than having just one.) (The concept is similar to a "hard link", but subsequent
modifications will not affect the original file.)
- It preserves Mac-specific metadata to the maximum degree, including not only
xattrs but also metadata not easily settable by other methods, including Finder
and Spotlight params.
When server-side "clone" is not available (for example, on non-APFS volumes), it
falls back to server-side "copy" (still preserving metadata but using more disk
storage.) It is only used when both remotes are local (and not wrapped by other
remotes, such as crypt.) The behavior of local on non-mac systems is unchanged.
2023-12-28 18:30:47 +01:00
|
|
|
github.com/go-darwin/apfs v0.0.0-20211011131704-f84b94dbf348
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/go-git/go-billy/v5 v5.5.0
|
2024-05-15 17:53:21 +02:00
|
|
|
github.com/google/uuid v1.6.0
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/hanwen/go-fuse/v2 v2.5.1
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/henrybear327/Proton-API-Bridge v1.0.0
|
|
|
|
github.com/henrybear327/go-proton-api v1.0.0
|
2023-01-12 13:21:21 +01:00
|
|
|
github.com/jcmturner/gokrb5/v8 v8.4.4
|
2023-08-17 13:38:48 +02:00
|
|
|
github.com/jlaffaye/ftp v0.2.0
|
2022-09-28 14:37:38 +02:00
|
|
|
github.com/josephspurrier/goversioninfo v1.4.0
|
2020-10-29 13:03:03 +01:00
|
|
|
github.com/jzelinskie/whirlpool v0.0.0-20201016144138-0675e54bb004
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/klauspost/compress v1.17.9
|
|
|
|
github.com/koofr/go-httpclient v0.0.0-20240520111329-e20f8f203988
|
2023-01-12 13:21:21 +01:00
|
|
|
github.com/koofr/go-koofrclient v0.0.0-20221207135200-cbd7fc9ad6a6
|
2022-11-24 12:05:54 +01:00
|
|
|
github.com/mattn/go-colorable v0.1.13
|
2023-07-28 15:07:41 +02:00
|
|
|
github.com/mattn/go-runewidth v0.0.15
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/minio/minio-go/v7 v7.0.74
|
2019-05-10 23:31:57 +02:00
|
|
|
github.com/mitchellh/go-homedir v1.1.0
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/moby/sys/mountinfo v0.7.2
|
2024-08-29 11:29:22 +02:00
|
|
|
github.com/ncw/swift/v2 v2.0.3
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/oracle/oci-go-sdk/v65 v65.69.2
|
2018-08-28 16:27:07 +02:00
|
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/pkg/sftp v1.13.6
|
2024-05-15 17:53:21 +02:00
|
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/prometheus/client_golang v1.19.1
|
2020-02-25 15:20:57 +01:00
|
|
|
github.com/putdotio/go-putio/putio v0.0.0-20200123120452-16d982cac2b8
|
2024-06-01 12:25:42 +02:00
|
|
|
github.com/quasilyte/go-ruleguard/dsl v0.3.22
|
2024-10-24 12:20:37 +02:00
|
|
|
github.com/rclone/gofakes3 v0.0.3
|
2021-08-20 23:03:38 +02:00
|
|
|
github.com/rfjakob/eme v1.1.2
|
2024-05-15 17:53:21 +02:00
|
|
|
github.com/rivo/uniseg v0.4.7
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/rogpeppe/go-internal v1.12.0
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/shirou/gopsutil/v3 v3.24.5
|
2023-07-22 11:46:21 +02:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2020-02-25 15:20:57 +01:00
|
|
|
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/spf13/cobra v1.8.1
|
2019-11-11 16:04:53 +01:00
|
|
|
github.com/spf13/pflag v1.0.5
|
2024-05-15 17:53:21 +02:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2024-02-21 13:18:03 +01:00
|
|
|
github.com/t3rm1n4l/go-mega v0.0.0-20240219080617-d494b6a8ace7
|
2024-08-23 12:03:27 +02:00
|
|
|
github.com/unknwon/goconfig v1.0.0
|
2024-06-25 12:07:19 +02:00
|
|
|
github.com/willscott/go-nfs v0.0.3-0.20240425122109-91bc38957cc9
|
2022-11-24 12:05:54 +01:00
|
|
|
github.com/winfsp/cgofuse v1.5.1-0.20221118130120-84c0898ad2e0
|
|
|
|
github.com/xanzy/ssh-agent v0.3.3
|
2020-10-29 13:03:03 +01:00
|
|
|
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a
|
2020-02-25 15:20:57 +01:00
|
|
|
github.com/yunify/qingstor-sdk-go/v3 v3.2.0
|
2024-07-18 18:06:58 +02:00
|
|
|
go.etcd.io/bbolt v1.3.10
|
2023-08-22 01:36:17 +02:00
|
|
|
goftp.io/server/v2 v2.0.1
|
2024-07-18 18:06:58 +02:00
|
|
|
golang.org/x/crypto v0.25.0
|
|
|
|
golang.org/x/net v0.27.0
|
|
|
|
golang.org/x/oauth2 v0.21.0
|
2024-07-23 17:41:40 +02:00
|
|
|
golang.org/x/sync v0.8.0
|
2024-07-18 18:06:58 +02:00
|
|
|
golang.org/x/sys v0.22.0
|
2024-07-23 17:41:40 +02:00
|
|
|
golang.org/x/text v0.17.0
|
2024-01-13 17:32:42 +01:00
|
|
|
golang.org/x/time v0.5.0
|
2024-07-18 18:06:58 +02:00
|
|
|
google.golang.org/api v0.188.0
|
2023-11-24 19:18:01 +01:00
|
|
|
gopkg.in/validator.v2 v2.0.1
|
2021-02-03 22:34:38 +01:00
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2024-08-16 20:54:04 +02:00
|
|
|
storj.io/uplink v1.13.1
|
2018-08-28 16:27:07 +02:00
|
|
|
)
|
2021-11-10 11:26:55 +01:00
|
|
|
|
2022-08-02 19:47:43 +02:00
|
|
|
require (
|
2024-07-18 18:06:58 +02:00
|
|
|
cloud.google.com/go/auth v0.7.0 // indirect
|
|
|
|
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
|
|
|
|
cloud.google.com/go/compute/metadata v0.4.0 // indirect
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
|
2023-07-22 11:46:21 +02:00
|
|
|
github.com/ProtonMail/bcrypt v0.0.0-20211005172633-e235017c1baf // indirect
|
2023-09-06 19:50:28 +02:00
|
|
|
github.com/ProtonMail/gluon v0.17.1-0.20230724134000-308be39be96e // indirect
|
2023-07-22 11:46:21 +02:00
|
|
|
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f // indirect
|
|
|
|
github.com/ProtonMail/go-srp v0.0.7 // indirect
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/ProtonMail/gopenpgp/v2 v2.7.4 // indirect
|
2023-07-22 11:46:21 +02:00
|
|
|
github.com/PuerkitoBio/goquery v1.8.1 // indirect
|
2022-09-28 14:37:38 +02:00
|
|
|
github.com/akavel/rsrc v0.10.2 // indirect
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/anacrolix/generics v0.0.1 // indirect
|
2023-07-22 11:46:21 +02:00
|
|
|
github.com/andybalholm/cascadia v1.3.2 // indirect
|
2024-07-23 17:41:40 +02:00
|
|
|
github.com/appscode/go-querystring v0.0.0-20170504095604-0126cfb3f1dc // indirect
|
2024-08-03 12:35:32 +02:00
|
|
|
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.3 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.11 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.15 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.15 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.15 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.3 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.17 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.17 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.15 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/sso v1.22.4 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.26.4 // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2/service/sts v1.30.3 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2024-01-13 17:38:26 +01:00
|
|
|
github.com/bradenaw/juniper v0.15.2 // indirect
|
2024-07-23 17:41:40 +02:00
|
|
|
github.com/bradfitz/iter v0.0.0-20191230175014-e8f45d346db8 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/calebcase/tmpfile v1.0.3 // indirect
|
2023-01-12 13:21:21 +01:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2024-07-23 17:41:40 +02:00
|
|
|
github.com/chilts/sid v0.0.0-20190607042430-660e94789ec9 // indirect
|
2024-01-08 17:54:10 +01:00
|
|
|
github.com/cloudflare/circl v1.3.7 // indirect
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
|
2023-07-22 11:46:21 +02:00
|
|
|
github.com/cronokirby/saferith v0.33.0 // indirect
|
2024-05-15 17:53:21 +02:00
|
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
2023-06-23 06:07:50 +02:00
|
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
2024-01-13 17:38:26 +01:00
|
|
|
github.com/emersion/go-message v0.18.0 // indirect
|
2023-07-22 11:46:21 +02:00
|
|
|
github.com/emersion/go-textwrapper v0.0.0-20200911093747-65d896831594 // indirect
|
2023-09-06 19:50:28 +02:00
|
|
|
github.com/emersion/go-vcard v0.0.0-20230815062825-8fda7d206ec9 // indirect
|
2024-01-13 17:32:42 +01:00
|
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
2024-01-13 17:38:26 +01:00
|
|
|
github.com/flynn/noise v1.0.1 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/gdamore/encoding v1.0.0 // indirect
|
2022-09-30 17:10:57 +02:00
|
|
|
github.com/geoffgarside/ber v1.1.0 // indirect
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/go-ini/ini v1.67.0 // indirect
|
2024-01-13 17:38:26 +01:00
|
|
|
github.com/go-logr/logr v1.4.1 // indirect
|
2024-01-13 17:32:42 +01:00
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
2024-01-03 12:00:59 +01:00
|
|
|
github.com/go-resty/resty/v2 v2.11.0 // indirect
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/goccy/go-json v0.10.3 // indirect
|
2022-10-13 14:04:56 +02:00
|
|
|
github.com/gofrs/flock v0.8.1 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/google/s2a-go v0.1.7 // indirect
|
|
|
|
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/googleapis/gax-go/v2 v2.12.5 // indirect
|
2024-07-18 17:57:24 +02:00
|
|
|
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
2024-07-23 17:41:40 +02:00
|
|
|
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
2024-07-23 17:41:40 +02:00
|
|
|
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
|
2022-08-05 18:43:53 +02:00
|
|
|
github.com/hashicorp/go-uuid v1.0.3 // indirect
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
|
2023-04-05 00:18:49 +02:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
|
|
|
|
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
|
2022-08-05 18:43:53 +02:00
|
|
|
github.com/jcmturner/gofork v1.7.6 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/jcmturner/goidentity/v6 v6.0.1 // indirect
|
|
|
|
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
|
2024-01-13 17:38:26 +01:00
|
|
|
github.com/jtolio/noiseconn v0.0.0-20231127013910-f6d9ecbf1de7 // indirect
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/kr/fs v0.1.0 // indirect
|
2022-11-23 17:46:21 +01:00
|
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
2024-07-23 17:41:40 +02:00
|
|
|
github.com/lpar/date v1.0.0 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/lufia/plan9stats v0.0.0-20231016141302-07b5767bb0ed // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
2023-09-12 12:50:13 +02:00
|
|
|
github.com/minio/md5-simd v1.1.2 // indirect
|
2024-07-18 18:06:58 +02:00
|
|
|
github.com/onsi/ginkgo v1.16.5 // indirect
|
2024-07-23 17:41:40 +02:00
|
|
|
github.com/panjf2000/ants/v2 v2.9.1 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/pengsrc/go-shared v0.2.1-0.20190131101655-1999055a4a14 // indirect
|
2024-01-13 17:38:26 +01:00
|
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
2023-07-22 11:46:21 +02:00
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/power-devops/perfstat v0.0.0-20221212215047-62379fc7944b // indirect
|
|
|
|
github.com/prometheus/client_model v0.5.0 // indirect
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/prometheus/common v0.48.0 // indirect
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
2023-10-04 19:28:41 +02:00
|
|
|
github.com/rasky/go-xdr v0.0.0-20170124162913-1a41d1a06c93 // indirect
|
2023-07-22 11:46:21 +02:00
|
|
|
github.com/relvacode/iso8601 v1.3.0 // indirect
|
2023-06-23 06:07:50 +02:00
|
|
|
github.com/rs/xid v1.5.0 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
2022-09-21 17:09:50 +02:00
|
|
|
github.com/ryszard/goskiplist v0.0.0-20150312221310-2dfbae5fcf46 // indirect
|
2024-07-23 17:41:40 +02:00
|
|
|
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect
|
|
|
|
github.com/samber/lo v1.47.0 // indirect
|
2024-01-13 17:38:26 +01:00
|
|
|
github.com/shabbyrobe/gocovmerge v0.0.0-20230507112040-c3350d9342df // indirect
|
2023-07-28 15:07:41 +02:00
|
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
2022-10-13 14:04:56 +02:00
|
|
|
github.com/sony/gobreaker v0.5.0 // indirect
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/spacemonkeygo/monkit/v3 v3.0.22 // indirect
|
2024-01-13 17:38:26 +01:00
|
|
|
github.com/tklauser/go-sysconf v0.3.13 // indirect
|
|
|
|
github.com/tklauser/numcpus v0.7.0 // indirect
|
2024-01-13 17:32:42 +01:00
|
|
|
github.com/willscott/go-nfs-client v0.0.0-20240104095149-b44639837b00 // indirect
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
2023-01-12 13:21:21 +01:00
|
|
|
github.com/zeebo/blake3 v0.2.3 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
github.com/zeebo/errs v1.3.0 // indirect
|
2022-11-24 12:05:54 +01:00
|
|
|
go.opencensus.io v0.24.0 // indirect
|
2024-05-15 17:53:21 +02:00
|
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
|
|
|
|
go.opentelemetry.io/otel v1.24.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/metric v1.24.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/trace v1.24.0 // indirect
|
2024-09-25 17:02:36 +02:00
|
|
|
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
|
2024-07-18 18:06:58 +02:00
|
|
|
golang.org/x/mod v0.19.0 // indirect
|
|
|
|
golang.org/x/tools v0.23.0 // indirect
|
|
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20240701130421-f6361c86f094 // indirect
|
|
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240708141625-4ad9e859172b // indirect
|
|
|
|
google.golang.org/grpc v1.64.1 // indirect
|
|
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2024-07-23 17:41:40 +02:00
|
|
|
moul.io/http2curl/v2 v2.3.0 // indirect
|
2024-08-16 20:54:04 +02:00
|
|
|
storj.io/common v0.0.0-20240812101423-26b53789c348 // indirect
|
|
|
|
storj.io/drpc v0.0.35-0.20240709171858-0075ac871661 // indirect
|
|
|
|
storj.io/eventkit v0.0.0-20240415002644-1d9596fee086 // indirect
|
2024-01-13 17:38:26 +01:00
|
|
|
storj.io/infectious v0.0.2 // indirect
|
2024-05-15 17:53:21 +02:00
|
|
|
storj.io/picobuf v0.0.3 // indirect
|
2022-08-02 19:47:43 +02:00
|
|
|
)
|
|
|
|
|
2022-04-01 11:26:47 +02:00
|
|
|
require (
|
2023-10-28 19:06:17 +02:00
|
|
|
github.com/Microsoft/go-winio v0.6.1 // indirect
|
2024-05-22 16:50:31 +02:00
|
|
|
github.com/ProtonMail/go-crypto v1.0.0
|
2022-06-25 15:33:12 +02:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.5.0
|
2022-04-01 11:26:47 +02:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
2022-11-24 12:05:54 +01:00
|
|
|
github.com/pkg/xattr v0.4.9
|
2024-07-18 18:06:58 +02:00
|
|
|
golang.org/x/mobile v0.0.0-20240716161057-1ad2df20a8b6
|
|
|
|
golang.org/x/term v0.22.0
|
2021-11-10 11:26:55 +01:00
|
|
|
)
|