-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (35 loc) · 987 Bytes
/
Cargo.toml
File metadata and controls
47 lines (35 loc) · 987 Bytes
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
[package]
name = "dynamixel2"
version = "0.9.1"
license = "BSD-2-Clause"
description = "dynamixel protocol 2.0"
keywords = ["dynamixel", "servo", "motor", "serial"]
categories = ["science::robotics"]
repository = "https://github.com/robohouse-delft/dynamixel2-rs"
readme = "README.md"
edition = "2021"
publish = ["crates-io"]
[features]
default = ["std", "serial2"]
# Enable features that require `std`.
std = ["alloc"]
# Enable support for `Vec`.
alloc = []
# Add logging statements.
log = ["dep:log"]
# Enable support for the `serial2` crate.
serial2 = ["dep:serial2", "std"]
# Enable rs4xx support of the `serial2` crate.
rs4xx = ["serial2?/rs4xx"]
# Enable integration tests that use a real servo motor.
integration-tests = []
[dependencies]
log = { version = "0.4.8", optional = true }
serial2 = { version = "0.2.24", optional = true }
[dev-dependencies]
assert2 = "0.3.3"
env_logger = "0.11.5"
test-log = "0.2.16"
log = "0.4.8"
[workspace]
members = ["dynamixel2-cli"]