containerd/vendor/github.com/godbus/dbus/v5
Kazuyoshi Kato 040babe003 Vendor dependencies with module graph pruning
The empty-mod hack no longer works with Go 1.18.

This commit fixes #6586.

Signed-off-by: Kazuyoshi Kato <katokazu@amazon.com>
2022-03-18 16:49:09 +00:00
..
auth_anonymous.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
auth_external.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
auth_sha1.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
auth.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
call.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
conn_darwin.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
conn_other.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
conn_unix.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
conn_windows.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
conn.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
CONTRIBUTING.md Go mod vendor 2020-12-01 01:41:25 +08:00
dbus.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
decoder.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
default_handler.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
doc.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
encoder.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
export.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
homedir_dynamic.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
homedir_static.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
homedir.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
LICENSE revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
MAINTAINERS Go mod vendor 2020-12-01 01:41:25 +08:00
match.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
message.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
object.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
README.md go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
sequence.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
sequential_handler.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
server_interfaces.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
sig.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
transport_darwin.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_generic.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
transport_nonce_tcp.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_tcp.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_unix.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
transport_unixcred_dragonfly.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_unixcred_freebsd.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
transport_unixcred_linux.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_unixcred_netbsd.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
transport_unixcred_openbsd.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
variant_lexer.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
variant_parser.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
variant.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00

Build Status

dbus

dbus is a simple library that implements native Go client bindings for the D-Bus message bus system.

Features

  • Complete native implementation of the D-Bus message protocol
  • Go-like API (channels for signals / asynchronous method calls, Goroutine-safe connections)
  • Subpackages that help with the introspection / property interfaces

Installation

This packages requires Go 1.12 or later. It can be installed by running the command below:

go get github.com/godbus/dbus/v5

Usage

The complete package documentation and some simple examples are available at godoc.org. Also, the _examples directory gives a short overview over the basic usage.

Projects using godbus

  • fyne a cross platform GUI in Go inspired by Material Design.
  • fynedesk a full desktop environment for Linux/Unix using Fyne.
  • go-bluetooth provides a bluetooth client over bluez dbus API.
  • iwd go bindings for the internet wireless daemon "iwd".
  • notify provides desktop notifications over dbus into a library.
  • playerbm a bookmark utility for media players.

Please note that the API is considered unstable for now and may change without further notice.

License

go.dbus is available under the Simplified BSD License; see LICENSE for the full text.

Nearly all of the credit for this library goes to github.com/guelfey/go.dbus.