-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
107 additions
and
673 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,5 @@ | ||
[package] | ||
name = "ros_pointcloud2" | ||
version = "0.5.0-rc.1" | ||
edition = "2021" | ||
authors = ["Christopher Sieh <stelzo@steado.de>"] | ||
description = "Customizable conversions for working with sensor_msgs/PointCloud2." | ||
repository = "https://github.com/stelzo/ros_pointcloud2" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["ros", "pointcloud2", "pointcloud", "message"] | ||
categories = [ | ||
"science::robotics", | ||
"encoding", | ||
"data-structures", | ||
"api-bindings", | ||
] | ||
readme = "README.md" | ||
documentation = "https://docs.rs/ros_pointcloud2" | ||
homepage = "https://github.com/stelzo/ros_pointcloud2" | ||
exclude = [ | ||
"**/.github/**", | ||
"**/tests/**", | ||
"**/examples/**", | ||
"**/benches/**", | ||
"**/target/**", | ||
"**/build/**", | ||
"**/dist/**", | ||
"**/docs/**", | ||
"**/doc/**", | ||
] | ||
rust-version = "1.63" | ||
[workspace] | ||
|
||
[dependencies] | ||
rosrust_msg = { version = "0.1", optional = true } | ||
rosrust = { version = "0.9.11", optional = true } | ||
r2r = { version = "0.8.4", optional = true } | ||
rayon = { version = "1", optional = true } | ||
nalgebra = { version = "0.32.5", optional = true, default-features = false } | ||
rpcl2_derive = { path = "rpcl2_derive", optional = true } | ||
type-layout = { path = "type-layout", optional = true } | ||
|
||
[dev-dependencies] | ||
rand = "0.8" | ||
criterion = { version = "0.5", features = ["html_reports"] } | ||
|
||
[[bench]] | ||
name = "roundtrip" | ||
harness = false | ||
|
||
[features] | ||
rosrust_msg = ["dep:rosrust_msg", "dep:rosrust"] | ||
r2r_msg = ["dep:r2r"] | ||
rayon = ["dep:rayon"] | ||
derive = ["dep:rpcl2_derive", "dep:type-layout"] | ||
nalgebra = ["dep:nalgebra"] | ||
std = ["nalgebra/std"] | ||
|
||
default = ["std", "derive"] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["derive", "nalgebra", "rayon"] | ||
default-target = "x86_64-unknown-linux-gnu" | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
members = ["rpcl2", "rpcl2-derive"] | ||
|
||
resolver = "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[package] | ||
name = "rpcl2-derive" | ||
description = "Derive macros for ros_pointcloud2 crate." | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Christopher Sieh <stelzo@steado.de>"] | ||
homepage = "https://github.com/stelzo/ros_pointcloud2" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["ros", "pointcloud2", "ros_pointcloud2"] | ||
categories = [ | ||
"science::robotics", | ||
"encoding", | ||
"data-structures", | ||
"api-bindings", | ||
] | ||
repository = "https://github.com/stelzo/ros_pointcloud2" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
syn = "2.0" | ||
quote = "1.0" | ||
proc-macro2 = "1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<p align="center"> | ||
<h3 align="center">ROS PointCloud2</h3> | ||
<p align="center">Derive macros for the ros_pointcloud2 library.</p> | ||
<p align="center"><a href="https://crates.io/crates/ros_pointcloud2"><img src="https://img.shields.io/crates/v/ros_pointcloud2.svg" alt=""></a> <a href="https://github.com/stelzo/ros_pointcloud2/tree/main/tests"><img src="https://github.com/stelzo/ros_pointcloud2/actions/workflows/tests.yml/badge.svg" alt=""></a> | ||
</p> | ||
</p> | ||
|
||
This crate should be used in combination with the `ros_pointcloud2` crate. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
[package] | ||
name = "ros_pointcloud2" | ||
version = "0.5.0-rc.1" | ||
edition = "2021" | ||
authors = ["Christopher Sieh <stelzo@steado.de>"] | ||
description = "Customizable conversions for working with sensor_msgs/PointCloud2." | ||
repository = "https://github.com/stelzo/ros_pointcloud2" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["ros", "pointcloud2", "pointcloud", "message"] | ||
categories = [ | ||
"science::robotics", | ||
"encoding", | ||
"data-structures", | ||
"api-bindings", | ||
] | ||
readme = "README.md" | ||
documentation = "https://docs.rs/ros_pointcloud2" | ||
homepage = "https://github.com/stelzo/ros_pointcloud2" | ||
exclude = [ | ||
"**/.github/**", | ||
"**/tests/**", | ||
"**/examples/**", | ||
"**/benches/**", | ||
"**/target/**", | ||
"**/build/**", | ||
"**/dist/**", | ||
"**/docs/**", | ||
"**/doc/**", | ||
] | ||
rust-version = "1.63" | ||
|
||
[dependencies] | ||
rosrust_msg = { version = "0.1", optional = true } | ||
rosrust = { version = "0.9.11", optional = true } | ||
r2r = { version = "0.8.4", optional = true } | ||
rayon = { version = "1", optional = true } | ||
nalgebra = { version = "0.32.5", optional = true, default-features = false } | ||
type-layout = { version = "0.2.0", package = "type-layout-syn2", optional = true } | ||
rpcl2-derive = { version = "0.1.0", optional = true, path = "../rpcl2-derive" } | ||
|
||
[dev-dependencies] | ||
rand = "0.8" | ||
criterion = { version = "0.5", features = ["html_reports"] } | ||
|
||
[[bench]] | ||
name = "roundtrip" | ||
harness = false | ||
path = "benches/roundtrip.rs" | ||
|
||
[features] | ||
rosrust_msg = ["dep:rosrust_msg", "dep:rosrust"] | ||
r2r_msg = ["dep:r2r"] | ||
rayon = ["dep:rayon"] | ||
derive = ["dep:rpcl2-derive", "dep:type-layout"] | ||
nalgebra = ["dep:nalgebra"] | ||
std = ["nalgebra/std"] | ||
|
||
default = ["std", "derive"] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["derive", "nalgebra", "rayon"] | ||
default-target = "x86_64-unknown-linux-gnu" | ||
rustdoc-args = ["--cfg", "docsrs"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.