-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathCargo.toml
46 lines (34 loc) · 1014 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "examples_rclrs_minimal_pub_sub"
version = "0.4.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_subscriber"
path = "src/minimal_subscriber.rs"
[[bin]]
name = "minimal_publisher"
path = "src/minimal_publisher.rs"
[[bin]]
name = "minimal_two_nodes"
path = "src/minimal_two_nodes.rs"
[[bin]]
name = "zero_copy_subscriber"
path = "src/zero_copy_subscriber.rs"
[[bin]]
name = "zero_copy_publisher"
path = "src/zero_copy_publisher.rs"
[[bin]]
name = "first_rclrs_node"
path = "src/first_rclrs_node.rs"
[dependencies]
anyhow = {version = "1", features = ["backtrace"]}
[dependencies.rclrs]
version = "0.4"
[dependencies.rosidl_runtime_rs]
version = "0.4"
[dependencies.std_msgs]
version = "*"
[package.metadata.ros]
install_to_share = ["launch"]