Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚨 Explicit lifetimes for constant string literals
``` warning: `&` without an explicit lifetime name cannot be used here --> src/fdo/dbus.rs:29:21 | 29 | pub const PATH: &str = "/org/freedesktop/DBus"; | ^ | = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! = note: for more information, see issue #115010 <rust-lang/rust#115010> = note: `#[warn(elided_lifetimes_in_associated_constant)]` on by default help: use the `'static` lifetime | 29 | pub const PATH: &'static str = "/org/freedesktop/DBus"; | +++++++ ```