-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
67 lines (55 loc) · 1.43 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
63
64
65
66
67
[package]
name = "safe_drive"
version = "0.4.3"
edition = "2021"
authors = ["Yuuki Takano <yuuki.takano@tier4.jp>, TIER IV, Inc.", "Seio Inoue"]
description = "safe_drive: Formally Specified Rust Bindings for ROS2"
license-file = "LICENSE"
readme = "README.md"
keywords = ["Robotics", "ROS2"]
categories = ["science::robotics"]
repository = "https://github.com/tier4/safe_drive"
homepage = "https://tier4.github.io/safe_drive"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num-traits = "0.2"
num-derive = "0.4"
once_cell = "1.14"
crossbeam-channel = "0.5"
parking_lot = "0.12"
signal-hook = "0.3"
libc = "0.2"
pin-project = "1.0"
regex = "1.10.4"
futures = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dependencies.serde_json]
version = "1"
optional = true
[dev-dependencies.memac]
version = "0.5"
[dev-dependencies]
futures = "0.3"
rand = "0.8"
[dev-dependencies.async-std]
version = "1.12"
features = ["attributes"]
[features]
default = []
statistics = ["serde", "serde_json"]
rcl_stat = ["statistics"]
jazzy = []
iron = []
humble = []
galactic = []
custom_alloc = []
[package.metadata.docs.rs]
# Features to pass to Cargo (default: [])
features = ["jazzy", "custom_alloc"]
# Whether to pass `--all-features` to Cargo (default: false)
all-features = false
# Whether to pass `--no-default-features` to Cargo (default: false)
no-default-features = true