2020-07-24 11:40:24 +00:00
|
|
|
module github.com/NVIDIA/nvidia-container-toolkit
|
2020-04-12 00:18:00 +00:00
|
|
|
|
2023-04-25 08:42:22 +00:00
|
|
|
go 1.20
|
2020-04-12 00:18:00 +00:00
|
|
|
|
2020-06-03 15:44:23 +00:00
|
|
|
require (
|
2023-12-12 21:00:44 +00:00
|
|
|
github.com/NVIDIA/go-nvlib v0.0.0-20231212194527-f3264c8a6a7a
|
2023-11-15 20:38:54 +00:00
|
|
|
github.com/NVIDIA/go-nvml v0.12.0-1.0.20231020145430-e06766c5e74f
|
2024-02-04 08:26:11 +00:00
|
|
|
github.com/fsnotify/fsnotify v1.7.0
|
2024-03-01 20:21:42 +00:00
|
|
|
github.com/opencontainers/runtime-spec v1.2.0
|
2024-02-05 09:32:35 +00:00
|
|
|
github.com/pelletier/go-toml v1.9.5
|
2024-02-11 08:49:55 +00:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2024-03-01 15:45:26 +00:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2024-02-05 15:04:18 +00:00
|
|
|
github.com/urfave/cli/v2 v2.27.1
|
2024-03-10 08:26:44 +00:00
|
|
|
golang.org/x/mod v0.16.0
|
2024-03-12 11:14:05 +00:00
|
|
|
golang.org/x/sys v0.18.0
|
2023-11-01 11:42:07 +00:00
|
|
|
tags.cncf.io/container-device-interface v0.6.2
|
|
|
|
tags.cncf.io/container-device-interface/specs-go v0.6.0
|
2022-09-28 11:46:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2023-04-24 16:35:16 +00:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
2022-09-28 11:46:25 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2023-12-12 21:00:44 +00:00
|
|
|
github.com/google/uuid v1.4.0 // indirect
|
2022-09-28 11:46:25 +00:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
2023-04-24 16:35:16 +00:00
|
|
|
github.com/kr/pretty v0.3.1 // indirect
|
2023-01-19 10:44:02 +00:00
|
|
|
github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 // indirect
|
2023-04-24 16:35:16 +00:00
|
|
|
github.com/opencontainers/selinux v1.11.0 // indirect
|
2022-09-28 11:46:25 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
|
|
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
|
|
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
|
2024-02-05 15:04:18 +00:00
|
|
|
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
2022-08-19 08:28:00 +00:00
|
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
2022-09-28 11:46:25 +00:00
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
2023-01-19 10:44:02 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2023-04-24 16:35:16 +00:00
|
|
|
sigs.k8s.io/yaml v1.3.0 // indirect
|
2020-06-03 15:44:23 +00:00
|
|
|
)
|