Skip to content

Commit

Permalink
[CHORE] (cu_iceoryx2_sink/src) bump iceoryx2 to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
makeecat committed Jan 14, 2025
1 parent f0f9f73 commit 048b4d6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/sinks/cu_iceoryx2_sink/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ repository.workspace = true
description = "Copper sink task for Iceoryx2."

[dependencies]
iceoryx2 = { version = "0.4.1" }
iceoryx2 = { version = "0.5.0" }
cu29 = { workspace = true }
4 changes: 2 additions & 2 deletions components/sinks/cu_iceoryx2_sink/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use iceoryx2::service::port_factory::publish_subscribe::PortFactory;
/// Copper messages and Iceoryx2 payloads are compatible.
pub struct IceoryxSink<P>
where
P: CuMsgPayload, // TODO: Maybe with something a little more generic we can be ROS2 compatible
P: CuMsgPayload + 'static, // TODO: Maybe with something a little more generic we can be ROS2 compatible
{
service_name: ServiceName,
node: iceoryx2::prelude::Node<ipc::Service>,
Expand All @@ -22,7 +22,7 @@ impl<P> Freezable for IceoryxSink<P> where P: CuMsgPayload {}

impl<'cl, P> CuSinkTask<'cl> for IceoryxSink<P>
where
P: CuMsgPayload + 'cl,
P: CuMsgPayload + 'cl + 'static,
{
type Input = input_msg!('cl, P);

Expand Down
2 changes: 1 addition & 1 deletion components/sources/cu_iceoryx2_src/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ homepage.workspace = true
repository.workspace = true

[dependencies]
iceoryx2 = { version = "0.4.1" }
iceoryx2 = { version = "0.5.0" }
cu29 = { workspace = true }
4 changes: 2 additions & 2 deletions components/sources/cu_iceoryx2_src/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use iceoryx2::service::port_factory::publish_subscribe::PortFactory;
/// P is the payload type of the messages.
pub struct IceoryxSrc<P>
where
P: CuMsgPayload,
P: CuMsgPayload + 'static,
{
service_name: ServiceName,
node: iceoryx2::prelude::Node<ipc::Service>,
Expand All @@ -20,7 +20,7 @@ impl<P> Freezable for IceoryxSrc<P> where P: CuMsgPayload {}

impl<'cl, P> CuSrcTask<'cl> for IceoryxSrc<P>
where
P: CuMsgPayload + 'cl,
P: CuMsgPayload + 'cl + 'static,
{
type Output = output_msg!('cl, P);

Expand Down

0 comments on commit 048b4d6

Please sign in to comment.