-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split action client and server examples
- Loading branch information
Showing
6 changed files
with
51 additions
and
7 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
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
File renamed without changes.
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,22 @@ | ||
[package] | ||
name = "examples_rclrs_minimal_action_server" | ||
version = "0.3.1" | ||
# This project is not military-sponsored, Jacob's employment contract just requires him to use this email address | ||
authors = ["Esteve Fernandez <esteve@apache.org>", "Nikolai Morin <nnmmgit@gmail.com>", "Jacob Hassold <jacob.a.hassold.civ@army.mil>"] | ||
edition = "2021" | ||
|
||
[[bin]] | ||
name = "minimal_action_server" | ||
path = "src/minimal_action_server.rs" | ||
|
||
[dependencies] | ||
anyhow = {version = "1", features = ["backtrace"]} | ||
|
||
[dependencies.rclrs] | ||
version = "0.3" | ||
|
||
[dependencies.rosidl_runtime_rs] | ||
version = "0.3" | ||
|
||
[dependencies.example_interfaces] | ||
version = "*" |
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,26 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model | ||
href="http://download.ros.org/schema/package_format3.xsd" | ||
schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>examples_rclrs_minimal_action_server</name> | ||
<version>0.3.1</version> | ||
<description>Minimal action server examples for rclrs.</description> | ||
<maintainer email="esteve@apache.org">Esteve Fernandez</maintainer> | ||
<maintainer email="nnmmgit@gmail.com">Nikolai Morin</maintainer> | ||
<!-- This project is not military-sponsored, Jacob's employment contract just requires him to use this email address --> | ||
<maintainer email="jacob.a.hassold.civ@army.mil">Jacob Hassold</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
||
<build_depend>rclrs</build_depend> | ||
<build_depend>rosidl_runtime_rs</build_depend> | ||
<build_depend>example_interfaces</build_depend> | ||
|
||
<exec_depend>rclrs</exec_depend> | ||
<exec_depend>rosidl_runtime_rs</exec_depend> | ||
<exec_depend>example_interfaces</exec_depend> | ||
|
||
<export> | ||
<build_type>ament_cargo</build_type> | ||
</export> | ||
</package> |
File renamed without changes.