Skip to content

Commit 3b8efc3

Browse files
authored
Merge pull request #119 from ros2-rust/remove_extern_crate
Remove unnecessary "extern crate" declarations
2 parents 2c9f408 + 5863fa4 commit 3b8efc3

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

rclrs/build.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
extern crate bindgen;
2-
31
use std::env;
42
use std::fs::read_dir;
53
use std::path::{Path, PathBuf};

rclrs/src/lib.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
#![warn(missing_docs)]
2-
//! Rust client library for ROS2.
2+
//! Rust client library for ROS 2.
33
//!
44
//! For getting started, see the [README][1].
55
//!
66
//! [1]: https://github.com/ros2-rust/ros2_rust/blob/master/README.md
77
8-
extern crate parking_lot;
9-
extern crate rosidl_runtime_rs;
10-
extern crate std;
11-
128
mod context;
139
mod error;
1410
mod node;

0 commit comments

Comments
 (0)