forked from Atostek/ros2-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (52 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "ros2-client"
version = "0.7.0"
edition = "2018"
authors = ["Juhana Helovuo <juhana.helovuo@atostek.com>"]
description = "ROS2 client library based on RustDDS"
readme = "README.md"
keywords = ["network","protocol","dds","rtps"]
license = "Apache-2.0"
homepage = "https://atostek.com/en/products/rustdds/"
repository = "https://github.com/jhelovuo/ros2-client/"
categories = ["network-programming", "science::robotics"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# declare the existence of "security" feature (Secure ROS 2 support)
security = [
"rustdds/security" # Requires "security" in RustDDS also
]
[dependencies]
# rustdds = { path = "../RustDDS" } # dev setting
# rustdds = { git = "https://github.com/jhelovuo/RustDDS.git" }
rustdds = { version = "~0.9.2" } # release setting
mio = "^0.6.23"
mio-extras = "2.0.6"
log = "0.4.11"
serde = { version = "1.0", features = ["derive"] }
serde_repr = "0.1"
cdr-encoding-size = { version="^0.5" }
lazy_static = "1.4.0"
uuid = { version = "1.3.1", features = ["v4", "fast-rng", "macro-diagnostics", "serde"] }
futures = "0.3.28"
pin-utils = "0.1.0"
async-channel = "2.1.0"
bytes = { version = "1.5.0", features = ["serde", "std"]}
chrono = { version = ">=0.4.35" } # actions need timestamps
nom = {version = "7.1.3", features = ["alloc"] } # for msggen
clap = "4.4.3" # for msggen
itertools = "0.11.0" # for msggen
bstr = "1.6.2"
widestring = "1.0" # msggen
libc = "0.2.153"
[dev-dependencies]
log = "0.4"
termion = "1.5.5"
pretty_env_logger = "0.4.0"
# turle_teleop
log4rs = "1.2"
test-case = "1.2.0"
ctrlc = "3.1.6"
# async examples
smol = "1.3"
async-io = "2.2.0"