Skip to content

Commit c36f526

Browse files
committed
pub sync changes as results for SyncHandler
1 parent c6b9b6d commit c36f526

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ pub mod internal {
5454
pub use crate::lockfile::Source;
5555
pub use crate::package::{parse_dependencies, parse_description_file, parse_package_file, Dependency, Operator,};
5656
pub use crate::repository_urls::get_distro_name;
57-
pub use crate::sync::LinkMode;
57+
pub use crate::sync::{LinkMode, SyncChange};
5858
}

src/sync/changes.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![allow(missing_docs)]
2+
13
use crate::package::PackageType;
24
use std::time::Duration;
35

src/sync/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ mod link;
66
mod sources;
77

88
pub use build_plan::{BuildPlan, BuildStep};
9+
pub use changes::SyncChange;
910
pub use handler::SyncHandler;
1011
pub use link::{LinkError, LinkMode};

0 commit comments

Comments
 (0)