ruvector/examples/robotics/Cargo.toml
Claude 85447c0bfc feat: Add unified ruvector-robotics crate with bridge, perception, cognitive, and MCP modules
Consolidates robotics functionality into a single crate with four modules:
- bridge: Core types (Point3D, PointCloud, RobotState, Pose), spatial indexing,
  distance metrics, sensor converters, and perception pipeline
- perception: Scene graph construction, obstacle detection/classification,
  anomaly detection, trajectory prediction, and attention focusing
- cognitive: Behavior trees, perceive-think-act-learn loop, multi-criteria
  decision engine, three-tier memory system, skill learning from demonstration,
  swarm coordination with formations/consensus, and world model tracking
- mcp: Tool registry with 15 registered tools across 6 categories

Includes 26 passing tests (10 unit + 15 integration + 1 doc), 5 crate examples,
10 standalone binary examples, benchmarks covering 10 groups, and user guide.

https://claude.ai/code/session_01H1GkTK5z9ppVVQDQukjBsY
2026-02-27 03:35:54 +00:00

41 lines
936 B
TOML

[package]
name = "ruvector-robotics-examples"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
ruvector-robotics = { path = "../../crates/ruvector-robotics" }
serde_json = "1.0"
rand = "0.8"
[[bin]]
name = "01_basic_perception"
path = "src/bin/01_basic_perception.rs"
[[bin]]
name = "02_obstacle_avoidance"
path = "src/bin/02_obstacle_avoidance.rs"
[[bin]]
name = "03_scene_graph"
path = "src/bin/03_scene_graph.rs"
[[bin]]
name = "04_behavior_tree"
path = "src/bin/04_behavior_tree.rs"
[[bin]]
name = "05_cognitive_robot"
path = "src/bin/05_cognitive_robot.rs"
[[bin]]
name = "06_swarm_coordination"
path = "src/bin/06_swarm_coordination.rs"
[[bin]]
name = "07_skill_learning"
path = "src/bin/07_skill_learning.rs"
[[bin]]
name = "08_world_model"
path = "src/bin/08_world_model.rs"
[[bin]]
name = "09_mcp_tools"
path = "src/bin/09_mcp_tools.rs"
[[bin]]
name = "10_full_pipeline"
path = "src/bin/10_full_pipeline.rs"