-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
1,015 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,34 @@ | ||
module github.com/danisla/uinput-device-plugin | ||
|
||
go 1.17 | ||
|
||
require ( | ||
github.com/danisla/fsnotify v1.4.3-0.20200226160403-8a959c1a44e3 | ||
github.com/docker/docker v20.10.12+incompatible | ||
github.com/golang/glog v1.0.0 | ||
golang.org/x/net v0.0.0-20220121210141-e204ce36a2ba | ||
google.golang.org/grpc v1.43.0 | ||
google.golang.org/protobuf v1.27.1 | ||
k8s.io/kubelet v0.19.16 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.17 // indirect | ||
github.com/containerd/containerd v1.5.9 // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v1.13.1 | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/gogo/protobuf v1.3.1 // indirect | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/golang/protobuf v1.4.2 | ||
github.com/nsaway/fsnotify v1.4.3-0.20170303152522-f133d1d12072 //indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.2 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3 // indirect | ||
golang.org/x/net v0.0.0-20200904194848-62affa334b73 | ||
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135 // indirect | ||
google.golang.org/grpc v1.32.0 | ||
google.golang.org/protobuf v1.23.0 | ||
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc // indirect | ||
k8s.io/kubernetes v1.14.0 | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect | ||
google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2 // indirect | ||
gotest.tools/v3 v3.1.0 // indirect | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
syntax = "proto3"; | ||
|
||
option go_package = "pkg/uinput"; | ||
|
||
package uinput; | ||
|
||
service HostService { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters