Skip to content

Commit

Permalink
Merge branch 'fix-semver-check-hickup' into dcutr-rename-public-api
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaseizinger authored Dec 8, 2022
2 parents 6995ff0 + 9f70789 commit 1c17568
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions protocols/dcutr/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@ pub use behaviour_impl::Error;
pub use behaviour_impl::Event;
pub use protocol::PROTOCOL_NAME;
pub mod inbound {
pub use crate::protocol::inbound::InboundUpgradeError as UpgradeError; // TODO: Rename the inner error once `cargo-semver-checks` supports it: https://github.com/obi1kenobi/cargo-semver-checks/issues/152
pub use crate::protocol::inbound::InboundUpgradeError; // TODO: Rename the inner error once `cargo-semver-checks` supports it: https://github.com/obi1kenobi/cargo-semver-checks/issues/152
pub type UpgradeError = InboundUpgradeError;
}

pub mod outbound {
pub use crate::protocol::outbound::OutboundUpgradeError as UpgradeError; // TODO: Rename the inner error once `cargo-semver-checks` supports it: https://github.com/obi1kenobi/cargo-semver-checks/issues/152
pub use crate::protocol::outbound::OutboundUpgradeError; // TODO: Rename the inner error once `cargo-semver-checks` supports it: https://github.com/obi1kenobi/cargo-semver-checks/issues/152
pub type UpgradeError = OutboundUpgradeError;
}

#[deprecated(
Expand Down

0 comments on commit 1c17568

Please sign in to comment.