Crates.io | gz-msgs |
lib.rs | gz-msgs |
version | 0.7.4 |
source | src |
created_at | 2023-04-06 17:35:50.500407 |
updated_at | 2023-12-03 00:53:58.654751 |
description | Rust implementation of Gazebo messages |
homepage | |
repository | https://github.com/eduidl/gz-rs |
max_upload_size | |
id | 832382 |
size | 13,727,608 |
Rust implementation of Gazebo Messages using rust-protobuf.
Gazebo version | Gazebo Messages version |
---|---|
Fortress | 8.7.0 |
Garden | 9.5.0 |
Harmonic | 10.0.0 |
This crate is supporting multiple versions of Gazebo messages. The version is determined by the feature flag or using pkg-config.
If you specify any feature flag (fortress
, garden
or harmonic
), the messages from the specified version will be used. Naturally, if more than one is specified, a compile error will occur.
[dependencies]
gz-msgs = { version = "0.7.4", features = ["garden"] }
Otherwise, no feature flag is specified, the version is determined by using pkg-config. When multiple versions are installed, the newer version takes precedence. If you want to use an older version, set the feature flag as above.
For consistency with gz-transport, pkg-config checkes the version of Gazebo Transport instead Gazebo Messages. If gz-garden
and libgz-msgs10
are installed, garden
will be used.