systemd-resolved-rs 0.1.1

A compatibility-oriented reimplementation of systemd-resolved
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: LGPL-2.1-or-later
#![allow(
    clippy::if_not_else,
    clippy::needless_pass_by_value,
    clippy::type_complexity,
    clippy::unused_self,
    clippy::used_underscore_binding
)]
include!("dbus_core.rs");
include!("dbus_polkit.rs");
include!("dbus_manager.rs");
include!("dbus_link.rs");
include!("dbus_dnssd.rs");
include!("dbus_delegate.rs");
include!("dbus_helpers.rs");
include!("dbus_tests.rs");