latest pushes

This commit is contained in:
2024-11-24 01:17:59 -05:00
parent e91cd8b6a7
commit e67863164f
6 changed files with 461 additions and 0 deletions

24
Package/rust/Cargo.toml Normal file
View File

@@ -0,0 +1,24 @@
[package]
name = "bellande_limit"
version = "0.1.0"
edition = "2021"
authors = ["Bellande Robotics Sensors Research Innovation Center"]
description = "Bellande Adaptive Step Size dynamically adjusts movement increments for optimal robotic path planning and navigation"
license = "GPL-3.0-or-later"
repository = "https://github.com/Robotics-Sensors/bellande_limit"
readme = "README.md"
keywords = ["robotics", "algorithms", "research"]
categories = ["science", "algorithms"]
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
structopt = "0.3"
tokio = { version = "1.0", features = ["full"] }
thiserror = "1.0"
anyhow = "1.0"
[lib]
name = "bellande_limit"
path = "src/bellande_limit.rs"