podman/vendor/github.com/godbus/dbus/v5
dependabot[bot] c65b43a0fa
Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5
Bumps [github.com/godbus/dbus/v5](https://github.com/godbus/dbus) from 5.0.4 to 5.0.5.
- [Release notes](https://github.com/godbus/dbus/releases)
- [Commits](https://github.com/godbus/dbus/compare/v5.0.4...v5.0.5)

---
updated-dependencies:
- dependency-name: github.com/godbus/dbus/v5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-09-09 16:16:56 +00:00
..
CONTRIBUTING.md
LICENSE
MAINTAINERS
README.md Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
auth.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
auth_anonymous.go
auth_external.go
auth_sha1.go
call.go Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1 2021-04-02 07:58:47 +00:00
conn.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
conn_darwin.go
conn_other.go
conn_unix.go
conn_windows.go
dbus.go Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1 2021-04-02 07:58:47 +00:00
decoder.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
default_handler.go Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1 2021-04-02 07:58:47 +00:00
doc.go
encoder.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
export.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
go.mod
go.sum
homedir.go
homedir_dynamic.go
homedir_static.go
match.go Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1 2021-04-02 07:58:47 +00:00
message.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
object.go Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1 2021-04-02 07:58:47 +00:00
sequence.go Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1 2021-04-02 07:58:47 +00:00
sequential_handler.go Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1 2021-04-02 07:58:47 +00:00
server_interfaces.go
sig.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
transport_darwin.go
transport_generic.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
transport_nonce_tcp.go
transport_tcp.go
transport_unix.go Bump github.com/godbus/dbus/v5 from 5.0.4 to 5.0.5 2021-09-09 16:16:56 +00:00
transport_unixcred_dragonfly.go
transport_unixcred_freebsd.go Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1 2021-04-02 07:58:47 +00:00
transport_unixcred_linux.go
transport_unixcred_openbsd.go
variant.go Bump github.com/coreos/go-systemd/v22 from 22.3.0 to 22.3.1 2021-04-02 07:58:47 +00:00
variant_lexer.go
variant_parser.go

README.md

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.