forked from arjo129/rustros_tf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 1.2 KB
/
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
[workspace]
resolver = "2"
members = [ "launcher", "roslibrust_key_to_joy", "roslibrust_util", "tf_mcap",
"tf_roslibrust",
]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/lucasw/tf_roslibrust"
authors = [
"Arjo Chakravarty <[email protected]>",
"Lucas Walter <[email protected]",
"Michael Maerz <[email protected]>",
"Mitsuharu Kojima <[email protected]>",
]
keywords = ["transforms", "robotics", "ROS", "tf"]
categories = ["science::robotics"]
[workspace.dependencies]
anyhow = "1.0.92"
clap = { version = "4.5.16", features = ["cargo"] }
log = "0.4.22"
nalgebra = "0.30"
serde = { version = "1.0", features = ["derive"] }
serde-big-array = "0.5.1"
serde_derive = "1.0.210"
thiserror = "1.0.65"
tokio = { version = "1.40.0", features = ["io-util", "macros", "process", "rt", "rt-multi-thread", "signal"] }
toml = "0.8.19"
[workspace.dependencies.roslibrust]
git = "https://github.com/lucasw/roslibrust"
branch = "get_rx_msg_def_v0_12"
# path = "../../roslibrust/roslibrust"
version="0.12.2"
features = ["macro", "ros1"]
# [workspace.dependencies.roslibrust_codegen]
# git = "https://github.com/lucasw/roslibrust"
# branch = "get_rx_msg_def_v0_12"