forked from sequenceplanner/r2r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 1.12 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
[package]
name = "r2r"
version = "0.5.2"
authors = ["Martin Dahl <martin.dahl@gmail.com>"]
description = "Easy to use, runtime-agnostic, async rust bindings for ROS2."
license = "MIT OR Apache-2.0"
edition = "2018"
readme = "README.md"
homepage = "https://github.com/sequenceplanner/r2r"
repository = "https://github.com/sequenceplanner/r2r"
documentation = "https://sequenceplanner.github.io/r2r/"
[lib]
doctest = false
[dependencies]
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.62"
thiserror = "1.0"
lazy_static = "1.4.0"
r2r_common = { path = "r2r_common", version = "0.2.0" }
r2r_rcl = { path = "r2r_rcl", version = "0.2.0" }
r2r_msg_gen = { path = "r2r_msg_gen", version = "0.2.0" }
r2r_actions = { path = "r2r_actions", version = "0.2.0" }
uuid = { version = "0.8", features = ["serde", "v4"] }
retain_mut = "0.1.3"
futures = "0.3.15"
[dev-dependencies]
serde_json = "1.0.62"
futures = "0.3.15"
tokio = { version = "1", features = ["full"] }
rand = "0.8.4"
[build-dependencies]
r2r_common = { path = "r2r_common", version = "0.2.0" }
r2r_msg_gen = { path = "r2r_msg_gen", version = "0.2.0" }
[workspace]