Skip to content

Commit d1179d1

Browse files
committed
fix: lint ollama
1 parent 47910c7 commit d1179d1

File tree

4 files changed

+325
-44
lines changed

4 files changed

+325
-44
lines changed

modules/ollama/go.mod

+53-10
Original file line numberDiff line numberDiff line change
@@ -15,55 +15,98 @@ require (
1515

1616
require (
1717
dario.cat/mergo v1.0.1 // indirect
18+
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 // indirect
19+
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20231105174938-2b5cbb29f3e2 // indirect
1820
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
1921
github.com/Microsoft/go-winio v0.6.2 // indirect
20-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
22+
github.com/Microsoft/hcsshim v0.12.9 // indirect
23+
github.com/beorn7/perks v1.0.1 // indirect
24+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
25+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
26+
github.com/containerd/cgroups/v3 v3.0.3 // indirect
27+
github.com/containerd/containerd/api v1.8.0 // indirect
28+
github.com/containerd/containerd/v2 v2.0.3 // indirect
29+
github.com/containerd/continuity v0.4.4 // indirect
30+
github.com/containerd/errdefs v1.0.0 // indirect
31+
github.com/containerd/errdefs/pkg v0.3.0 // indirect
32+
github.com/containerd/fifo v1.1.0 // indirect
2133
github.com/containerd/log v0.1.0 // indirect
22-
github.com/containerd/platforms v0.2.1 // indirect
34+
github.com/containerd/platforms v1.0.0-rc.1 // indirect
35+
github.com/containerd/plugin v1.0.0 // indirect
36+
github.com/containerd/ttrpc v1.2.7 // indirect
37+
github.com/containerd/typeurl/v2 v2.2.3 // indirect
2338
github.com/cpuguy83/dockercfg v0.3.2 // indirect
2439
github.com/davecgh/go-spew v1.1.1 // indirect
2540
github.com/distribution/reference v0.6.0 // indirect
2641
github.com/dlclark/regexp2 v1.8.1 // indirect
42+
github.com/docker/distribution v2.8.3+incompatible // indirect
43+
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
44+
github.com/docker/go-metrics v0.0.1 // indirect
2745
github.com/docker/go-units v0.5.0 // indirect
2846
github.com/ebitengine/purego v0.8.2 // indirect
2947
github.com/felixge/httpsnoop v1.0.4 // indirect
3048
github.com/go-logr/logr v1.4.2 // indirect
3149
github.com/go-logr/stdr v1.2.2 // indirect
3250
github.com/go-ole/go-ole v1.2.6 // indirect
3351
github.com/gogo/protobuf v1.3.2 // indirect
34-
github.com/klauspost/compress v1.17.4 // indirect
52+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
53+
github.com/golang/protobuf v1.5.4 // indirect
54+
github.com/google/go-cmp v0.7.0 // indirect
55+
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
56+
github.com/hashicorp/go-memdb v1.3.5 // indirect
57+
github.com/hashicorp/golang-lru v0.5.4 // indirect
58+
github.com/klauspost/compress v1.17.11 // indirect
3559
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
3660
github.com/magiconair/properties v1.8.7 // indirect
3761
github.com/moby/docker-image-spec v1.3.1 // indirect
62+
github.com/moby/locker v1.0.1 // indirect
3863
github.com/moby/patternmatcher v0.6.0 // indirect
39-
github.com/moby/sys/sequential v0.5.0 // indirect
40-
github.com/moby/sys/user v0.1.0 // indirect
64+
github.com/moby/swarmkit/v2 v2.0.0-20250103191802-8c1959736554 // indirect
65+
github.com/moby/sys/mount v0.3.4 // indirect
66+
github.com/moby/sys/mountinfo v0.7.2 // indirect
67+
github.com/moby/sys/reexec v0.1.0 // indirect
68+
github.com/moby/sys/sequential v0.6.0 // indirect
69+
github.com/moby/sys/signal v0.7.1 // indirect
70+
github.com/moby/sys/symlink v0.3.0 // indirect
71+
github.com/moby/sys/user v0.3.0 // indirect
4172
github.com/moby/sys/userns v0.1.0 // indirect
4273
github.com/moby/term v0.5.0 // indirect
4374
github.com/morikuni/aec v1.0.0 // indirect
75+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4476
github.com/opencontainers/go-digest v1.0.0 // indirect
4577
github.com/opencontainers/image-spec v1.1.1 // indirect
78+
github.com/opencontainers/runtime-spec v1.2.0 // indirect
79+
github.com/opencontainers/selinux v1.11.1 // indirect
4680
github.com/pkg/errors v0.9.1 // indirect
4781
github.com/pkoukk/tiktoken-go v0.1.2 // indirect
4882
github.com/pmezard/go-difflib v1.0.0 // indirect
4983
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
84+
github.com/prometheus/client_golang v1.20.5 // indirect
85+
github.com/prometheus/client_model v0.6.1 // indirect
86+
github.com/prometheus/common v0.55.0 // indirect
87+
github.com/prometheus/procfs v0.15.1 // indirect
5088
github.com/shirou/gopsutil/v4 v4.25.1 // indirect
5189
github.com/sirupsen/logrus v1.9.3 // indirect
5290
github.com/tklauser/go-sysconf v0.3.12 // indirect
5391
github.com/tklauser/numcpus v0.6.1 // indirect
92+
github.com/vbatts/tar-split v0.11.3 // indirect
5493
github.com/yusufpapurcu/wmi v1.2.4 // indirect
94+
go.etcd.io/etcd/raft/v3 v3.5.6 // indirect
95+
go.opencensus.io v0.24.0 // indirect
5596
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
56-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
97+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 // indirect
5798
go.opentelemetry.io/otel v1.35.0 // indirect
58-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 // indirect
5999
go.opentelemetry.io/otel/metric v1.35.0 // indirect
60100
go.opentelemetry.io/otel/trace v1.35.0 // indirect
61-
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
62101
golang.org/x/crypto v0.31.0 // indirect
63102
golang.org/x/net v0.33.0 // indirect
103+
golang.org/x/sync v0.10.0 // indirect
64104
golang.org/x/sys v0.28.0 // indirect
65-
google.golang.org/genproto/googleapis/api v0.0.0-20240318140521-94a12d6c2237 // indirect
66-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
105+
golang.org/x/text v0.21.0 // indirect
106+
golang.org/x/time v0.5.0 // indirect
107+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 // indirect
108+
google.golang.org/grpc v1.68.1 // indirect
109+
google.golang.org/protobuf v1.35.2 // indirect
67110
gopkg.in/yaml.v3 v3.0.1 // indirect
68111
)
69112

0 commit comments

Comments
 (0)