Skip to content

Commit 4665263

Browse files
Follow standard macro package naming convention
1 parent 36de62a commit 4665263

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[workspace]
22
members = [
33
"rclrs",
4-
"rclrs_proc_macros",
4+
"rclrs-macros",
55
]
66
resolver = "2"

rclrs_proc_macros/Cargo.toml renamed to rclrs-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name= "rclrs_proc_macros"
2+
name= "rclrs-macros"
33
version = "0.0.1"
44
authors = ["Balthasar Schüss <[email protected]>"]
55
edition = "2021"
File renamed without changes.
File renamed without changes.

rclrs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ serde-big-array = { version = "0.5.1", optional = true }
4242
tempfile = "3.3.0"
4343
# Needed for parameter service tests
4444
tokio = { version = "1", features = ["rt", "time", "macros"] }
45-
rclrs_proc_macros = {path = "../rclrs_proc_macros"}
45+
rclrs-macros = {path = "../rclrs-macros"}
4646

4747
[build-dependencies]
4848
# Needed for uploading documentation to docs.rs

rclrs/src/parameter/structured.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ mod tests {
128128

129129
use crate as rclrs;
130130
use rclrs::{parameter::structured::*, CreateBasicExecutor};
131-
use rclrs_proc_macros::StructuredParameters;
131+
use rclrs_macros::StructuredParameters;
132132

133133
#[derive(StructuredParameters, Debug)]
134134
struct SimpleStructuredParameters {

0 commit comments

Comments
 (0)