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

#789 in Parser implementations

Download history 7103/week @ 2025-10-07 8735/week @ 2025-10-14 7807/week @ 2025-10-21 7439/week @ 2025-10-28 8012/week @ 2025-11-04 6459/week @ 2025-11-11 7845/week @ 2025-11-18 8460/week @ 2025-11-25 13869/week @ 2025-12-02 12766/week @ 2025-12-09 9902/week @ 2025-12-16 2619/week @ 2025-12-23 3429/week @ 2025-12-30 12376/week @ 2026-01-06 13518/week @ 2026-01-13 18186/week @ 2026-01-20

48,060 downloads per month
Used in 66 crates (21 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–5.5MB
~103K SLoC