Skip to content

Commit

Permalink
client/dbus: make Algorithm enum public under unstable feature
Browse files Browse the repository at this point in the history
We need this change for server side implementation.
See: #56 (comment)

Signed-off-by: Dhanuka Warusadura <dhanuka@gnome.org>
  • Loading branch information
warusadura committed Feb 15, 2024
1 parent 070fa20 commit e79448f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions client/src/dbus/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ pub mod api;
mod api;

mod algorithm;
#[cfg(not(feature = "unstable"))]
pub(crate) use algorithm::Algorithm;
#[cfg(feature = "unstable")]
#[cfg_attr(docsrs, doc(cfg(feature = "unstable")))]
pub use algorithm::Algorithm;
mod item;
pub use item::Item;
mod error;
Expand Down

0 comments on commit e79448f

Please sign in to comment.