+1
-1
flake.nix
+1
-1
flake.nix
+4
-1
go.mod
+4
-1
go.mod
···
17
github.com/jpillora/backoff v1.0.0
18
github.com/kankanreno/go-snowflake v1.2.0
19
github.com/klauspost/compress v1.18.2
20
-
github.com/maypok86/otter/v2 v2.2.1
21
github.com/minio/minio-go/v7 v7.0.97
22
github.com/pelletier/go-toml/v2 v2.2.4
23
github.com/pquerna/cachecontrol v0.2.0
···
36
github.com/cespare/xxhash/v2 v2.3.0 // indirect
37
github.com/cloudflare/circl v1.6.1 // indirect
38
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
39
github.com/dustin/go-humanize v1.0.1 // indirect
40
github.com/emirpasic/gods v1.18.1 // indirect
41
github.com/go-git/gcfg/v2 v2.0.2 // indirect
···
55
github.com/philhofer/fwd v1.2.0 // indirect
56
github.com/pjbgf/sha1cd v0.5.0 // indirect
57
github.com/pkg/errors v0.9.1 // indirect
58
github.com/prometheus/client_model v0.6.2 // indirect
59
github.com/prometheus/common v0.66.1 // indirect
60
github.com/prometheus/procfs v0.16.1 // indirect
···
62
github.com/samber/lo v1.52.0 // indirect
63
github.com/samber/slog-common v0.19.0 // indirect
64
github.com/sergi/go-diff v1.4.0 // indirect
65
github.com/tinylib/msgp v1.3.0 // indirect
66
github.com/tj/assert v0.0.3 // indirect
67
github.com/valyala/bytebufferpool v1.0.0 // indirect
···
17
github.com/jpillora/backoff v1.0.0
18
github.com/kankanreno/go-snowflake v1.2.0
19
github.com/klauspost/compress v1.18.2
20
+
github.com/maypok86/otter/v2 v2.3.0
21
github.com/minio/minio-go/v7 v7.0.97
22
github.com/pelletier/go-toml/v2 v2.2.4
23
github.com/pquerna/cachecontrol v0.2.0
···
36
github.com/cespare/xxhash/v2 v2.3.0 // indirect
37
github.com/cloudflare/circl v1.6.1 // indirect
38
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
39
+
github.com/davecgh/go-spew v1.1.1 // indirect
40
github.com/dustin/go-humanize v1.0.1 // indirect
41
github.com/emirpasic/gods v1.18.1 // indirect
42
github.com/go-git/gcfg/v2 v2.0.2 // indirect
···
56
github.com/philhofer/fwd v1.2.0 // indirect
57
github.com/pjbgf/sha1cd v0.5.0 // indirect
58
github.com/pkg/errors v0.9.1 // indirect
59
+
github.com/pmezard/go-difflib v1.0.0 // indirect
60
github.com/prometheus/client_model v0.6.2 // indirect
61
github.com/prometheus/common v0.66.1 // indirect
62
github.com/prometheus/procfs v0.16.1 // indirect
···
64
github.com/samber/lo v1.52.0 // indirect
65
github.com/samber/slog-common v0.19.0 // indirect
66
github.com/sergi/go-diff v1.4.0 // indirect
67
+
github.com/stretchr/testify v1.11.1 // indirect
68
github.com/tinylib/msgp v1.3.0 // indirect
69
github.com/tj/assert v0.0.3 // indirect
70
github.com/valyala/bytebufferpool v1.0.0 // indirect
+2
-2
go.sum
+2
-2
go.sum
···
90
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
91
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
92
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
93
-
github.com/maypok86/otter/v2 v2.2.1 h1:hnGssisMFkdisYcvQ8L019zpYQcdtPse+g0ps2i7cfI=
94
-
github.com/maypok86/otter/v2 v2.2.1/go.mod h1:1NKY9bY+kB5jwCXBJfE59u+zAwOt6C7ni1FTlFFMqVs=
95
github.com/minio/crc64nvme v1.1.0 h1:e/tAguZ+4cw32D+IO/8GSf5UVr9y+3eJcxZI2WOO/7Q=
96
github.com/minio/crc64nvme v1.1.0/go.mod h1:eVfm2fAzLlxMdUGc0EEBGSMmPwmXD5XiNRpnu9J3bvg=
97
github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34=
···
90
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
91
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
92
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
93
+
github.com/maypok86/otter/v2 v2.3.0 h1:8H8AVVFUSzJwIegKwv1uF5aGitTY+AIrtktg7OcLs8w=
94
+
github.com/maypok86/otter/v2 v2.3.0/go.mod h1:XgIdlpmL6jYz882/CAx1E4C1ukfgDKSaw4mWq59+7l8=
95
github.com/minio/crc64nvme v1.1.0 h1:e/tAguZ+4cw32D+IO/8GSf5UVr9y+3eJcxZI2WOO/7Q=
96
github.com/minio/crc64nvme v1.1.0/go.mod h1:eVfm2fAzLlxMdUGc0EEBGSMmPwmXD5XiNRpnu9J3bvg=
97
github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34=