Skip to content

Commit 7eaf213

Browse files
committed
Update vendored message packages
This updates the message packages vendored under the rclrs `vendor` module. The vendor_interfaces.py script was used for reproducibility. The existing packages – rcl_interfaces, rosgraph_msgs, and builtin_interfaces – are only modified in that they now use the std::ffi::c_void naming for c_void instead of the std::os::raw::c_void alias and disable certain clippy lints. The action_msgs and unique_identifier_msgs packages are newly added to enable adding action support to rclrs. action_msgs is needed for interaction with action goal info and statuses, and has a dependency on unique_identifier_msgs.
1 parent 47f18a1 commit 7eaf213

File tree

13 files changed

+1054
-77
lines changed

13 files changed

+1054
-77
lines changed

rclrs/src/vendor/action_msgs/mod.rs

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#![allow(non_camel_case_types)]
2+
#![allow(clippy::derive_partial_eq_without_eq)]
3+
#![allow(clippy::upper_case_acronyms)]
4+
5+
pub mod msg;
6+
7+
pub mod srv;

0 commit comments

Comments
 (0)