Hi! First of all thanks for this package, I have been trying out the examples successfully.
However, if I extend example_package/build.rs that perform code generation on installed ROS packages:
let custom_message_paths: Vec<std::path::PathBuf> = vec![
"/opt/ros/kilted".into(),
];
let (source, dependent_paths) =
roslibrust::codegen::find_and_generate_ros_messages_without_ros_package_path(
custom_message_paths,
)?;
I got the following error indicating that there is no support for wstring as of now:
Error: SimpleError { err: "No Rust type for wstring" }
Is this expected? I saw that code generation for wstring data type might not be have implemented.
If so, what are some steps that might need to be done to enable wstring support?
Hi! First of all thanks for this package, I have been trying out the examples successfully.
However, if I extend example_package/build.rs that perform code generation on installed ROS packages:
I got the following error indicating that there is no support for
wstringas of now:Is this expected? I saw that code generation for wstring data type might not be have implemented.
If so, what are some steps that might need to be done to enable
wstringsupport?