-
Notifications
You must be signed in to change notification settings - Fork 6
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
carter
committed
Jan 7, 2025
1 parent
7bcb0c8
commit 90c3cd9
Showing
12 changed files
with
78 additions
and
34 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "roslibrust" | ||
version = "0.11.1" | ||
version = "0.12.0" | ||
authors = ["carter <[email protected]>", "ssnover <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
@@ -11,13 +11,13 @@ keywords = ["ROS", "robotics", "websocket", "json", "async"] | |
categories = ["science::robotics"] | ||
|
||
[dependencies] | ||
roslibrust_common = { path = "../roslibrust_common" } | ||
roslibrust_ros1 = { path = "../roslibrust_ros1", optional = true } | ||
roslibrust_rosbridge = { path = "../roslibrust_rosbridge", optional = true } | ||
roslibrust_zenoh = { path = "../roslibrust_zenoh", optional = true } | ||
roslibrust_mock = { path = "../roslibrust_mock", optional = true } | ||
roslibrust_codegen = { path = "../roslibrust_codegen", optional = true } | ||
roslibrust_codegen_macro = { path = "../roslibrust_codegen_macro", optional = true } | ||
roslibrust_common = { path = "../roslibrust_common", version = "0.12" } | ||
roslibrust_ros1 = { path = "../roslibrust_ros1", version = "0.12", optional = true } | ||
roslibrust_rosbridge = { path = "../roslibrust_rosbridge", version = "0.12", optional = true } | ||
roslibrust_zenoh = { path = "../roslibrust_zenoh", version = "0.12", optional = true } | ||
roslibrust_mock = { path = "../roslibrust_mock", version = "0.12", optional = true } | ||
roslibrust_codegen = { path = "../roslibrust_codegen", version = "0.12", optional = true } | ||
roslibrust_codegen_macro = { path = "../roslibrust_codegen_macro", version = "0.12", optional = true } | ||
|
||
[dev-dependencies] | ||
env_logger = "0.11" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "roslibrust_codegen" | ||
version = "0.11.1" | ||
version = "0.12.0" | ||
edition = "2021" | ||
authors = ["carter <[email protected]>", "ssnover <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -16,7 +16,7 @@ categories = ["science::robotics"] | |
tokio = { workspace = true, optional = true} | ||
log = { workspace = true } | ||
serde = { workspace = true } | ||
roslibrust_common = { path = "../roslibrust_common" } | ||
roslibrust_common = { path = "../roslibrust_common", version = "0.12.0" } | ||
lazy_static = "1.4" | ||
md5 = "0.7" | ||
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
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,7 +1,12 @@ | ||
[package] | ||
name = "roslibrust_common" | ||
version = "0.1.0" | ||
version = "0.12.0" | ||
edition = "2021" | ||
authors = [ "carter <[email protected]>" ] | ||
license = "MIT" | ||
description = "Common types and traits used throughout the roslibrust ecosystem." | ||
repository = "https://github.com/roslibrust/roslibrust" | ||
categories = ["science::robotics"] | ||
|
||
[dependencies] | ||
# Used for error handling | ||
|
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,10 +1,16 @@ | ||
[package] | ||
name = "roslibrust_mock" | ||
version = "0.1.0" | ||
version = "0.12.0" | ||
edition = "2021" | ||
authors = [ "carter <[email protected]>" ] | ||
license = "MIT" | ||
description = "Mock implementation of roslibrust's generic traits useful for testing ROS behaviors." | ||
repository = "https://github.com/roslibrust/roslibrust" | ||
categories = ["science::robotics"] | ||
|
||
|
||
[dependencies] | ||
roslibrust_common = { path = "../roslibrust_common" } | ||
roslibrust_common = { path = "../roslibrust_common", version = "0.12.0" } | ||
tokio = { workspace = true } | ||
# Used for serializing messages | ||
bincode = "1.3" | ||
|
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,11 +1,16 @@ | ||
[package] | ||
name = "roslibrust_ros1" | ||
version = "0.1.0" | ||
version = "0.12.0" | ||
edition = "2021" | ||
authors = [ "carter <[email protected]>", "ssnover <[email protected]>" ] | ||
license = "MIT" | ||
description = "A implementation of roslibrust's generic traits for native ROS1 communication." | ||
repository = "https://github.com/roslibrust/roslibrust" | ||
categories = ["science::robotics"] | ||
|
||
[dependencies] | ||
# Provides common types and traits used throughout the roslibrust ecosystem. | ||
roslibrust_common = { path = "../roslibrust_common" } | ||
roslibrust_common = { path = "../roslibrust_common", version = "0.12" } | ||
|
||
# Standard dependencies: | ||
tokio = { workspace = true } | ||
|
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,10 +1,15 @@ | ||
[package] | ||
name = "roslibrust_rosbridge" | ||
version = "0.1.0" | ||
version = "0.12.0" | ||
edition = "2021" | ||
authors = [ "carter <[email protected]>", "ssnover <[email protected]>" ] | ||
license = "MIT" | ||
description = "An implementation of roslibrust's generic traits for rosbridge_suite communication." | ||
repository = "https://github.com/roslibrust/roslibrust" | ||
categories = ["science::robotics"] | ||
|
||
[dependencies] | ||
roslibrust_common = { path = "../roslibrust_common" } | ||
roslibrust_common = { path = "../roslibrust_common", version = "0.12" } | ||
tokio = { workspace = true } | ||
log = { workspace = true } | ||
tokio-tungstenite = { version = "0.17" } | ||
|
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,15 +1,20 @@ | ||
[package] | ||
name = "roslibrust_zenoh" | ||
version = "0.1.0" | ||
version = "0.12.0" | ||
edition = "2021" | ||
authors = [ "carter <[email protected]>" ] | ||
license = "MIT" | ||
description = "A zenoh backend for roslibrust compatible with zenoh-ros1-plugin / zenoh-ros1-bridge." | ||
repository = "https://github.com/roslibrust/roslibrust" | ||
categories = ["science::robotics"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
roslibrust_serde_rosmsg = { workspace = true } | ||
log = { workspace = true } | ||
tokio = { workspace = true } | ||
roslibrust_common = { path = "../roslibrust_common" } | ||
roslibrust_common = { path = "../roslibrust_common", version = "0.12" } | ||
zenoh = "1.0" | ||
hex = "0.4" | ||
anyhow = "1.0" | ||
|