safe_drive_msg 0.2.2

A transpiler from ROS2's message types to Rust's types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Message Transpiler for safe_drive

A transpiler from ROS2's message types to Rust's types.
This library is used by [cargo-ament-build](https://github.com/tier4/cargo-ament-build) internally.

```rust
use safe_drive_msg;
use std::path::Path;

let dependencies = ["std_msgs", "std_srvs"];
safe_drive_msg::depends(&Path::new("/tmp/output_dir"), &dependencies, safe_drive_msg::SafeDrive::Version("0.2"));
```

## Limitation

This does not support C/C++ like preprocessor.