-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (69 loc) · 1.65 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (69 loc) · 1.65 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[workspace]
resolver = "2"
members = [
"crates/kinetic",
"crates/kinetic-core",
"crates/kinetic-robot",
"crates/kinetic-kinematics",
"crates/kinetic-collision",
"crates/kinetic-scene",
"crates/kinetic-trajectory",
"crates/kinetic-planning",
"crates/kinetic-reactive",
"crates/kinetic-task",
"crates/kinetic-grasp",
"crates/kinetic-gpu",
"crates/kinetic-execution",
"crates/kinetic-viewer",
"crates/kinetic-dynamics",
"crates/kinetic-perception",
]
exclude = [
"crates/kinetic-python",
"crates/horus-kinetic",
]
[workspace.package]
edition = "2021"
rust-version = "1.75"
license = "Apache-2.0"
repository = "https://github.com/softmata/kinetic"
[workspace.dependencies]
# Math
nalgebra = { version = "0.33", features = ["serde-serialize"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Error handling
thiserror = "2"
anyhow = "1"
# Parallelism
rayon = "1.10"
rand = "0.8"
# Collision detection (f64 precision)
parry3d-f64 = "0.17"
# URDF/SRDF parsing
urdf-rs = "0.8"
roxmltree = "0.20"
# GPU compute
wgpu = "24"
bytemuck = { version = "1", features = ["derive"] }
# Python bindings
pyo3 = { version = "0.23", features = ["extension-module"] }
numpy = "0.23"
# Spatial indexing
kiddo = "4"
# Mesh loading
stl_io = "0.7"
# Windowing & UI
winit = "0.30"
egui = "0.31"
egui-wgpu = "0.31"
egui-winit = "0.31"
pollster = "0.4"
clap = { version = "4", features = ["derive"] }
image = { version = "0.25", default-features = false, features = ["png"] }
log = "0.4"
env_logger = "0.11"
# Benchmarking
criterion = { version = "0.5", features = ["html_reports"] }