mirror of
https://github.com/containerd/containerd.git
synced 2026-08-10 01:48:39 +00:00
Silence a govulncheck noise: ``` Vulnerability #1: GO-2025-3595 Incorrect Neutralization of Input During Web Page Generation in x/net in golang.org/x/net More info: https://pkg.go.dev/vuln/GO-2025-3595 Module: golang.org/x/net Found in: golang.org/x/net@v0.37.0 Fixed in: golang.org/x/net@v0.38.0 Your code is affected by 0 vulnerabilities. This scan also found 0 vulnerabilities in packages you import and 1 vulnerability in modules you require, but your code doesn't appear to call these vulnerabilities. ``` Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
25 lines
742 B
Modula-2
25 lines
742 B
Modula-2
module github.com/containerd/containerd/api
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/containerd/ttrpc v1.2.5
|
|
github.com/containerd/typeurl/v2 v2.1.1
|
|
github.com/opencontainers/image-spec v1.1.1
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda
|
|
google.golang.org/grpc v1.59.0
|
|
google.golang.org/protobuf v1.33.0
|
|
)
|
|
|
|
require (
|
|
github.com/containerd/log v0.1.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
golang.org/x/net v0.38.0 // indirect
|
|
golang.org/x/sys v0.31.0 // indirect
|
|
golang.org/x/text v0.23.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|