Skip to content

Commit 0fce463

Browse files
committed
fix go.mod by tidying after a significant rebase
1 parent 5d5dd03 commit 0fce463

File tree

5 files changed

+25
-90
lines changed

5 files changed

+25
-90
lines changed

go.mod

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,23 @@ require (
1111
github.com/MicahParks/keyfunc/v2 v2.1.0
1212
github.com/MicahParks/keyfunc/v3 v3.3.11
1313
github.com/Nerzal/gocloak/v13 v13.9.0
14+
github.com/ProtonMail/go-crypto v1.1.5
1415
github.com/bbalet/stopwords v1.0.0
1516
github.com/beevik/etree v1.6.0
1617
github.com/blevesearch/bleve/v2 v2.5.7
18+
github.com/brianvoe/gofakeit/v7 v7.7.3
1719
github.com/cenkalti/backoff v2.2.1+incompatible
1820
github.com/coreos/go-oidc/v3 v3.17.0
1921
github.com/cs3org/go-cs3apis v0.0.0-20250908152307-4ca807afe54e
2022
github.com/davidbyttow/govips/v2 v2.16.0
2123
github.com/dhowden/tag v0.0.0-20240417053706-3d75831295e8
2224
github.com/dutchcoders/go-clamd v0.0.0-20170520113014-b970184f4d9e
23-
github.com/gabriel-vasile/mimetype v1.4.12
2425
github.com/emersion/go-imap/v2 v2.0.0-beta.5
26+
github.com/gabriel-vasile/mimetype v1.4.12
2527
github.com/ggwhite/go-masker v1.1.0
2628
github.com/go-chi/chi/v5 v5.2.4
2729
github.com/go-chi/render v1.0.3
30+
github.com/go-crypt/crypt v0.4.5
2831
github.com/go-jose/go-jose/v3 v3.0.4
2932
github.com/go-ldap/ldap/v3 v3.4.12
3033
github.com/go-ldap/ldif v0.0.0-20200320164324-fd88d9b715b3
@@ -45,16 +48,20 @@ require (
4548
github.com/google/uuid v1.6.0
4649
github.com/gookit/config/v2 v2.2.7
4750
github.com/gorilla/mux v1.8.1
51+
github.com/gorilla/websocket v1.5.3
4852
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.4
4953
github.com/invopop/validation v0.8.0
5054
github.com/jellydator/ttlcache/v2 v2.11.1
5155
github.com/jellydator/ttlcache/v3 v3.4.0
56+
github.com/jhillyerd/enmime/v2 v2.2.0
5257
github.com/jinzhu/now v1.1.5
5358
github.com/justinas/alice v1.2.0
5459
github.com/kovidgoyal/imaging v1.8.19
5560
github.com/leonelquinteros/gotext v1.7.2
5661
github.com/libregraph/idm v0.5.0
5762
github.com/libregraph/lico v0.66.0
63+
github.com/microcosm-cc/bluemonday v1.0.27
64+
github.com/miekg/dns v1.1.57
5865
github.com/mitchellh/mapstructure v1.5.0
5966
github.com/mna/pigeon v1.3.0
6067
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
@@ -79,6 +86,7 @@ require (
7986
github.com/rogpeppe/go-internal v1.14.1
8087
github.com/rs/cors v1.11.1
8188
github.com/rs/zerolog v1.34.0
89+
github.com/sethvargo/go-password v0.3.1
8290
github.com/sirupsen/logrus v1.9.4
8391
github.com/spf13/afero v1.15.0
8492
github.com/spf13/cobra v1.10.2
@@ -91,10 +99,13 @@ require (
9199
github.com/theckman/yacspin v0.13.12
92100
github.com/thejerf/suture/v4 v4.0.6
93101
github.com/tidwall/gjson v1.18.0
102+
github.com/tidwall/pretty v1.2.1
94103
github.com/tidwall/sjson v1.2.5
95104
github.com/tus/tusd/v2 v2.8.0
96105
github.com/unrolled/secure v1.16.0
106+
github.com/urfave/cli/v2 v2.27.7
97107
github.com/vmihailenco/msgpack/v5 v5.4.1
108+
github.com/wk8/go-ordered-map v1.0.0
98109
github.com/xhit/go-simple-mail/v2 v2.16.0
99110
go-micro.dev/v4 v4.11.0
100111
go.etcd.io/bbolt v1.4.3
@@ -133,7 +144,6 @@ require (
133144
github.com/Masterminds/semver/v3 v3.4.0 // indirect
134145
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
135146
github.com/Microsoft/go-winio v0.6.2 // indirect
136-
github.com/ProtonMail/go-crypto v1.1.5 // indirect
137147
github.com/RoaringBitmap/roaring/v2 v2.4.5 // indirect
138148
github.com/agnivade/levenshtein v1.2.1 // indirect
139149
github.com/ajg/form v1.5.1 // indirect
@@ -165,11 +175,10 @@ require (
165175
github.com/blevesearch/zapx/v16 v16.2.8 // indirect
166176
github.com/bluele/gcache v0.0.2 // indirect
167177
github.com/bombsimon/logrusr/v3 v3.1.0 // indirect
168-
github.com/brianvoe/gofakeit/v7 v7.7.3 // indirect
169178
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
170179
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
171-
github.com/ceph/go-ceph v0.37.0 // indirect
172180
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a // indirect
181+
github.com/ceph/go-ceph v0.37.0 // indirect
173182
github.com/cespare/xxhash/v2 v2.3.0 // indirect
174183
github.com/cevaris/ordered_map v0.0.0-20190319150403-3adeae072e73 // indirect
175184
github.com/clipperhouse/displaywidth v0.6.0 // indirect
@@ -201,11 +210,10 @@ require (
201210
github.com/docker/go-connections v0.6.0 // indirect
202211
github.com/docker/go-units v0.5.0 // indirect
203212
github.com/dustin/go-humanize v1.0.1 // indirect
204-
github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0 // indirect
205213
github.com/ebitengine/purego v0.8.4 // indirect
206214
github.com/egirna/icap v0.0.0-20181108071049-d5ee18bd70bc // indirect
207215
github.com/emersion/go-message v0.18.1 // indirect
208-
github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43 // indirect
216+
github.com/emersion/go-sasl v0.0.0-20241020182733-b788ff22d5a6 // indirect
209217
github.com/emirpasic/gods v1.18.1 // indirect
210218
github.com/emvi/iso-639-1 v1.1.1 // indirect
211219
github.com/evanphx/json-patch/v5 v5.5.0 // indirect
@@ -215,7 +223,6 @@ require (
215223
github.com/gdexlab/go-render v1.0.1 // indirect
216224
github.com/go-acme/lego/v4 v4.4.0 // indirect
217225
github.com/go-asn1-ber/asn1-ber v1.5.8-0.20250403174932-29230038a667 // indirect
218-
github.com/go-crypt/crypt v0.4.5 // indirect
219226
github.com/go-crypt/x v0.4.7 // indirect
220227
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
221228
github.com/go-git/go-billy/v5 v5.6.2 // indirect
@@ -236,7 +243,6 @@ require (
236243
github.com/go-sql-driver/mysql v1.9.3 // indirect
237244
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
238245
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
239-
github.com/go-test/deep v1.1.1 // indirect
240246
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
241247
github.com/gobwas/glob v0.2.3 // indirect
242248
github.com/gobwas/httphead v0.1.0 // indirect
@@ -260,7 +266,6 @@ require (
260266
github.com/gorilla/css v1.0.1 // indirect
261267
github.com/gorilla/handlers v1.5.1 // indirect
262268
github.com/gorilla/schema v1.4.1 // indirect
263-
github.com/gorilla/websocket v1.5.3 // indirect
264269
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
265270
github.com/hashicorp/go-hclog v1.6.3 // indirect
266271
github.com/hashicorp/go-plugin v1.7.0 // indirect
@@ -272,7 +277,6 @@ require (
272277
github.com/inbucket/html2text v0.9.0 // indirect
273278
github.com/inconshreveable/mousetrap v1.1.0 // indirect
274279
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
275-
github.com/jhillyerd/enmime/v2 v2.2.0 // indirect
276280
github.com/jonboulle/clockwork v0.5.0 // indirect
277281
github.com/json-iterator/go v1.1.12 // indirect
278282
github.com/juliangruber/go-intersect v1.1.0 // indirect
@@ -303,8 +307,6 @@ require (
303307
github.com/mattn/go-sqlite3 v1.14.33 // indirect
304308
github.com/maxymania/go-system v0.0.0-20170110133659-647cc364bf0b // indirect
305309
github.com/mendsley/gojwk v0.0.0-20141217222730-4d5ec6e58103 // indirect
306-
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
307-
github.com/miekg/dns v1.1.57 // indirect
308310
github.com/mileusna/useragent v1.3.5 // indirect
309311
github.com/minio/crc64nvme v1.1.1 // indirect
310312
github.com/minio/highwayhash v1.0.4-0.20251030100505-070ab1a87a76 // indirect
@@ -365,7 +367,6 @@ require (
365367
github.com/sercand/kuberesolver/v5 v5.1.1 // indirect
366368
github.com/sergi/go-diff v1.4.0 // indirect
367369
github.com/sethvargo/go-diceware v0.5.0 // indirect
368-
github.com/sethvargo/go-password v0.3.1 // indirect
369370
github.com/shamaton/msgpack/v2 v2.4.0 // indirect
370371
github.com/shirou/gopsutil/v4 v4.25.6 // indirect
371372
github.com/shurcooL/httpfs v0.0.0-20230704072500-f1e31cf0ba5c // indirect
@@ -374,24 +375,20 @@ require (
374375
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
375376
github.com/spacewander/go-suffix-tree v0.0.0-20191010040751-0865e368c784 // indirect
376377
github.com/spf13/cast v1.10.0 // indirect
377-
github.com/spf13/pflag v1.0.10 // indirect
378378
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
379379
github.com/stretchr/objx v0.5.2 // indirect
380380
github.com/studio-b12/gowebdav v0.9.0 // indirect
381381
github.com/subosito/gotenv v1.6.0 // indirect
382382
github.com/tchap/go-patricia/v2 v2.3.3 // indirect
383383
github.com/tidwall/match v1.1.1 // indirect
384-
github.com/tidwall/pretty v1.2.1 // indirect
385384
github.com/tinylib/msgp v1.6.1 // indirect
386385
github.com/tklauser/go-sysconf v0.3.14 // indirect
387386
github.com/tklauser/numcpus v0.8.0 // indirect
388387
github.com/toorop/go-dkim v0.0.0-20201103131630-e1cd1a0a5208 // indirect
389388
github.com/trustelem/zxcvbn v1.0.1 // indirect
390-
github.com/urfave/cli/v2 v2.27.7 // indirect
391389
github.com/valyala/fastjson v1.6.4 // indirect
392390
github.com/vektah/gqlparser/v2 v2.5.31 // indirect
393391
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
394-
github.com/wk8/go-ordered-map v1.0.0 // indirect
395392
github.com/xanzy/ssh-agent v0.3.3 // indirect
396393
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
397394
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
@@ -417,7 +414,6 @@ require (
417414
google.golang.org/genproto v0.0.0-20250303144028-a0af3efb3deb // indirect
418415
google.golang.org/genproto/googleapis/rpc v0.0.0-20251222181119-0a764e51fe1b // indirect
419416
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
420-
gopkg.in/loremipsum.v1 v1.1.2 // indirect
421417
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
422418
gopkg.in/warnings.v0 v0.1.2 // indirect
423419
sigs.k8s.io/yaml v1.6.0 // indirect

go.sum

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,10 @@ github.com/cenkalti/backoff/v5 v5.0.3 h1:ZN+IMa753KfX5hd8vVaMixjnqRZ3y8CuJKRKj1x
218218
github.com/cenkalti/backoff/v5 v5.0.3/go.mod h1:rkhZdG3JZukswDf7f0cwqPNk4K0sa+F97BxZthm/crw=
219219
github.com/census-instrumentation/opencensus-proto v0.2.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
220220
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
221-
github.com/ceph/go-ceph v0.37.0 h1:KXliBe3ZDr3/AtfY7n9d1MG7ippYNCVhMPcAgm05CFI=
222-
github.com/ceph/go-ceph v0.37.0/go.mod h1:3y2tOlITlyuVFhy8v6PpCEfjMwKPfXJiH0/2hKZZQRE=
223221
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a h1:MISbI8sU/PSK/ztvmWKFcI7UGb5/HQT7B+i3a2myKgI=
224222
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a/go.mod h1:2GxOXOlEPAMFPfp014mK1SWq8G8BN8o7/dfYqJrVGn8=
223+
github.com/ceph/go-ceph v0.37.0 h1:KXliBe3ZDr3/AtfY7n9d1MG7ippYNCVhMPcAgm05CFI=
224+
github.com/ceph/go-ceph v0.37.0/go.mod h1:3y2tOlITlyuVFhy8v6PpCEfjMwKPfXJiH0/2hKZZQRE=
225225
github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
226226
github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
227227
github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
@@ -328,8 +328,6 @@ github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4
328328
github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
329329
github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY=
330330
github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto=
331-
github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0 h1:aYo8nnk3ojoQkP5iErif5Xxv0Mo0Ga/FR5+ffl/7+Nk=
332-
github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0/go.mod h1:8AuBTZBRSFqEYBPYULd+NN474/zZBLP+6WeT5S9xlAc=
333331
github.com/dutchcoders/go-clamd v0.0.0-20170520113014-b970184f4d9e h1:rcHHSQqzCgvlwP0I/fQ8rQMn/MpHE5gWSLdtpxtP6KQ=
334332
github.com/dutchcoders/go-clamd v0.0.0-20170520113014-b970184f4d9e/go.mod h1:Byz7q8MSzSPkouskHJhX0er2mZY/m0Vj5bMeMCkkyY4=
335333
github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs=
@@ -345,8 +343,8 @@ github.com/emersion/go-imap/v2 v2.0.0-beta.5 h1:H3858DNmBuXyMK1++YrQIRdpKE1MwBc+
345343
github.com/emersion/go-imap/v2 v2.0.0-beta.5/go.mod h1:BZTFHsS1hmgBkFlHqbxGLXk2hnRqTItUgwjSSCsYNAk=
346344
github.com/emersion/go-message v0.18.1 h1:tfTxIoXFSFRwWaZsgnqS1DSZuGpYGzSmCZD8SK3QA2E=
347345
github.com/emersion/go-message v0.18.1/go.mod h1:XpJyL70LwRvq2a8rVbHXikPgKj8+aI0kGdHlg16ibYA=
348-
github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43 h1:hH4PQfOndHDlpzYfLAAfl63E8Le6F2+EL/cdhlkyRJY=
349-
github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43/go.mod h1:iL2twTeMvZnrg54ZoPDNfJaJaqy0xIQFuBdrLsmspwQ=
346+
github.com/emersion/go-sasl v0.0.0-20241020182733-b788ff22d5a6 h1:oP4q0fw+fOSWn3DfFi4EXdT+B+gTtzx8GC9xsc26Znk=
347+
github.com/emersion/go-sasl v0.0.0-20241020182733-b788ff22d5a6/go.mod h1:iL2twTeMvZnrg54ZoPDNfJaJaqy0xIQFuBdrLsmspwQ=
350348
github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=
351349
github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ=
352350
github.com/emvi/iso-639-1 v1.1.1 h1:7jrl1Sqw9ZYWmCOaH+cpQotLbGr/khwlLPXlBvE8WXU=
@@ -493,8 +491,7 @@ github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEe
493491
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls=
494492
github.com/go-task/slim-sprig/v3 v3.0.0 h1:sUs3vkvUymDpBKi3qH1YSqBQk9+9D/8M2mN1vB6EwHI=
495493
github.com/go-task/slim-sprig/v3 v3.0.0/go.mod h1:W848ghGpv3Qj3dhTPRyJypKRiqCdHZiAzKg9hl15HA8=
496-
github.com/go-test/deep v1.1.0 h1:WOcxcdHcvdgThNXjw0t76K42FXTU7HpNQWHpA2HHNlg=
497-
github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE=
494+
github.com/go-test/deep v1.1.1 h1:0r/53hagsehfO4bzD2Pgr/+RgHqhmf+k1Bpse2cTu1U=
498495
github.com/go-test/deep v1.1.1/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE=
499496
github.com/go-viper/mapstructure/v2 v2.4.0 h1:EBsztssimR/CONLSZZ04E8qAkxNYq4Qp9LvH92wZUgs=
500497
github.com/go-viper/mapstructure/v2 v2.4.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
@@ -1210,6 +1207,8 @@ github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An
12101207
github.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
12111208
github.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk=
12121209
github.com/spf13/pflag v1.0.10/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
1210+
github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=
1211+
github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=
12131212
github.com/spf13/viper v1.21.0 h1:x5S+0EU27Lbphp4UKm1C+1oQO+rKx36vfCoaVebLFSU=
12141213
github.com/spf13/viper v1.21.0/go.mod h1:P0lhsswPGWD/1lZJ9ny3fYnVqxiegrlNrEmgLjbTCAY=
12151214
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf h1:pvbZ0lM0XWPBqUKqFU8cmavspvIl9nulOYwdy6IFRRo=
@@ -1837,8 +1836,6 @@ gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
18371836
gopkg.in/ini.v1 v1.51.1/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
18381837
gopkg.in/ini.v1 v1.57.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
18391838
gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
1840-
gopkg.in/loremipsum.v1 v1.1.2 h1:12APklfJKuGszqZsrArW5QoQh03/W+qyCCjvnDuS6Tw=
1841-
gopkg.in/loremipsum.v1 v1.1.2/go.mod h1:TuRvzFuzuejXj+odBU6Tubp/EPUyGb9wmSvHenyP2Ts=
18421839
gopkg.in/ns1/ns1-go.v2 v2.4.4/go.mod h1:GMnKY+ZuoJ+lVLL+78uSTjwTz2jMazq6AfGKQOYhsPk=
18431840
gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=
18441841
gopkg.in/square/go-jose.v2 v2.5.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI=

vendor/github.com/emersion/go-sasl/README.md

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/emersion/go-sasl/login.go

Lines changed: 0 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,11 @@ github.com/cenkalti/backoff/v4
250250
# github.com/cenkalti/backoff/v5 v5.0.3
251251
## explicit; go 1.23
252252
github.com/cenkalti/backoff/v5
253-
# github.com/ceph/go-ceph v0.37.0
254-
## explicit; go 1.24.0
255253
# github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a
256254
## explicit
257255
github.com/cention-sany/utf7
256+
# github.com/ceph/go-ceph v0.37.0
257+
## explicit; go 1.24.0
258258
github.com/ceph/go-ceph/cephfs
259259
github.com/ceph/go-ceph/cephfs/admin
260260
github.com/ceph/go-ceph/common/admin/manager
@@ -435,8 +435,6 @@ github.com/docker/go-units
435435
# github.com/dustin/go-humanize v1.0.1
436436
## explicit; go 1.16
437437
github.com/dustin/go-humanize
438-
# github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0
439-
## explicit; go 1.20
440438
# github.com/dutchcoders/go-clamd v0.0.0-20170520113014-b970184f4d9e
441439
## explicit
442440
github.com/dutchcoders/go-clamd
@@ -462,7 +460,7 @@ github.com/emersion/go-imap/v2/internal/utf7
462460
github.com/emersion/go-message
463461
github.com/emersion/go-message/mail
464462
github.com/emersion/go-message/textproto
465-
# github.com/emersion/go-sasl v0.0.0-20231106173351-e73c9f7bad43
463+
# github.com/emersion/go-sasl v0.0.0-20241020182733-b788ff22d5a6
466464
## explicit; go 1.12
467465
github.com/emersion/go-sasl
468466
# github.com/emirpasic/gods v1.18.1
@@ -695,8 +693,6 @@ github.com/go-task/slim-sprig
695693
# github.com/go-task/slim-sprig/v3 v3.0.0
696694
## explicit; go 1.20
697695
github.com/go-task/slim-sprig/v3
698-
# github.com/go-test/deep v1.1.1
699-
## explicit; go 1.16
700696
# github.com/go-viper/mapstructure/v2 v2.4.0
701697
## explicit; go 1.18
702698
github.com/go-viper/mapstructure/v2
@@ -2793,8 +2789,6 @@ google.golang.org/protobuf/types/known/wrapperspb
27932789
# gopkg.in/cenkalti/backoff.v1 v1.1.0
27942790
## explicit
27952791
gopkg.in/cenkalti/backoff.v1
2796-
# gopkg.in/loremipsum.v1 v1.1.2
2797-
## explicit; go 1.17
27982792
# gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
27992793
## explicit
28002794
gopkg.in/tomb.v1

0 commit comments

Comments
 (0)