/
githubmirror
/
dbus-broker
Обзор
Документация
Войти
/
githubmirror
/
dbus-broker
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib-crate.rs
28 строк
668 B
David Rheinsberg
build: add SPDX annotations
30 июн 2026, 15:45
30 июн 2026, 15:45
0bca774
Код
Авторство
О чём код?
// SPDX-License-Identifier: GPL-3.0-or-later // SPDX-FileCopyrightText: D-Bus Broker Developers //! # Rust Bus Crate //! //! This library combines all Rust utilities of dbus-broker. It is linked to //! most executables of dbus-broker as utility library, relying on link-time //! garbage collection to drop any unneeded code. #![allow( clippy::new_without_default, clippy::redundant_field_names, )] extern crate alloc; extern crate core; pub mod session; pub mod util; #[cfg(test)] mod test { // Simple dummy to show the test-suite in the test results, even if // other tests are conditionally disabled. #[test] fn availability() { } }