-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (29 loc) · 941 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
33
34
[package]
name = "abbegm"
version = "0.7.5"
license = "BSD-2-Clause OR Apache-2.0"
authors = [
"Maarten de Vries <maarten@de-vri.es>",
"RoboHouse <robohouse@robovalley.com>",
]
description = "externally guided motion for ABB industrial robots"
keywords = ["robotics", "abb", "egm", "motion", "industrial"]
categories = ["science::robotics", "network-programming"]
repository = "https://github.com/robohouse-delft/abbegm-rs"
documentation = "https://docs.rs/abbegm"
readme = "README.md"
edition = "2018"
[features]
default = ["tokio"]
[dependencies]
nalgebra = { version = ">=0.21.0, <0.34", optional = true }
prost = "0.13.3"
tokio = { version = "1.11.0", optional = true, features = ["net"] }
[dev-dependencies]
abbegm = { path = ".", features = ["nalgebra", "tokio"] }
assert2 = "0.3.2"
structopt = "0.3.0"
tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros"] }
log = "0.4.11"
env_logger = "0.11.5"
rand = "0.8.4"