32 releases

0.9.0 Sep 6, 2024
0.8.0 Nov 6, 2023
0.7.3 Aug 18, 2023
0.7.2 May 10, 2023
0.1.5 May 15, 2017

#204 in Parser implementations

Download history 1722/week @ 2024-12-09 643/week @ 2024-12-16 438/week @ 2024-12-23 1306/week @ 2024-12-30 1545/week @ 2025-01-06 2182/week @ 2025-01-13 925/week @ 2025-01-20 826/week @ 2025-01-27 1682/week @ 2025-02-03 571/week @ 2025-02-10 1979/week @ 2025-02-17 2025/week @ 2025-02-24 4584/week @ 2025-03-03 6304/week @ 2025-03-10 5091/week @ 2025-03-17 3853/week @ 2025-03-24

20,287 downloads per month
Used in 28 crates (17 directly)

Apache-2.0

47KB
1K SLoC

urdf-rs

Build Status crates.io docs discord

URDF parser for Rust.

Only link and joint are supported.

Example

You can access urdf elements like below example.

let urdf_robot = urdf_rs::read_file("sample.urdf").unwrap();
let links = urdf_robot.links;
println!("{:?}", links[0].visual[0].origin.xyz);
let joints = urdf_robot.joints;
println!("{:?}", joints[0].origin.xyz);

OpenRR Community

Here is a discord server for OpenRR users and developers.

Dependencies

~4–6MB
~105K SLoC