-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
31 lines (29 loc) · 791 Bytes
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
[workspace]
resolver = "2"
package.rust-version = "1.90"
members = [
"example_package",
"example_package_macro",
"roslibrust_codegen_macro",
"roslibrust_codegen",
"roslibrust_common",
"roslibrust_genmsg",
"roslibrust_mcap",
"roslibrust_mock",
"roslibrust_ros1",
"roslibrust_rosbridge",
"roslibrust_test",
"roslibrust_transforms",
"roslibrust_zenoh",
"roslibrust",
"roslibrust_rosapi",
"roslibrust_ros2",
]
[workspace.dependencies]
log = "0.4"
tokio = {version = "1", features = ["full", "test-util"] }
serde = { version = "1.0", features = ["derive"] }
# Someday we may move this crate into this workspace
# For now this is how we keep from repeating the verison everywhere
roslibrust_serde_rosmsg = "0.5.1"
test-log = "0.2"