forked from MaxiMaerz/rustros_tf
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
32 lines (29 loc) · 907 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
[workspace]
resolver = "2"
members = ["tf_rosrust", "tf_r2r"]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/smilerobotics/tf_rosrust"
authors = [
"Arjo Chakravarty <[email protected]>",
"Michael Maerz <[email protected]>",
"Mitsuharu Kojima <[email protected]>",
]
keywords = ["transforms", "robotics", "ROS", "tf"]
categories = ["science::robotics"]
[workspace.dependencies]
futures = "0.3"
nalgebra = "0.30"
r2r = "0.9"
rosrust = "0.9"
thiserror = "1.0"
tokio = "1"
[workspace.lints.rust]
# missing_debug_implementations = "warn" # TODO: Most rosrust types don't implement Debug
# missing_docs = "warn" # TODO
rust_2018_idioms = "warn"
single_use_lifetimes = "warn"
unreachable_pub = "warn"
[workspace.lints.clippy]
lint_groups_priority = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/12920