-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (39 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
43 lines (39 loc) · 1.51 KB
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
[workspace]
members = [
"crates/rust_robotics_core",
"crates/rust_robotics_planning",
"crates/rust_robotics_localization",
"crates/rust_robotics_control",
"crates/rust_robotics_mapping",
"crates/rust_robotics_slam",
"crates/rust_robotics_viz",
"crates/rust_robotics",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.80"
license = "MIT"
repository = "https://github.com/rsasaki0109/rust_robotics"
authors = ["ryohei sasaki <rsasaki0109@gmail.com>"]
keywords = ["robotics", "path-planning", "localization", "slam", "control"]
categories = ["algorithms", "science::robotics", "simulation"]
[workspace.dependencies]
nalgebra = "0.33"
rand = "0.9.3"
rand_distr = "0.5.1"
itertools = "0.13"
ordered-float = "4.2"
gnuplot = "0.0.43"
# Internal crate dependencies
rust_robotics_core = { path = "crates/rust_robotics_core", version = "0.1.0" }
rust_robotics_planning = { path = "crates/rust_robotics_planning", version = "0.1.0" }
rust_robotics_localization = { path = "crates/rust_robotics_localization", version = "0.1.0" }
rust_robotics_control = { path = "crates/rust_robotics_control", version = "0.1.0" }
rust_robotics_mapping = { path = "crates/rust_robotics_mapping", version = "0.1.0" }
rust_robotics_slam = { path = "crates/rust_robotics_slam", version = "0.1.0" }
rust_robotics_viz = { path = "crates/rust_robotics_viz", version = "0.1.0" }
[patch.crates-io]
raw_sync_2 = { path = "vendor/raw_sync_2" }
shared_memory_extended = { path = "vendor/shared_memory_extended" }