Skip to content

Commit 88bc290

Browse files
committed
Rename package
1 parent 4180784 commit 88bc290

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
2-
name = "bitbots_pathplanning_rust"
2+
name = "bitbots_rust_nav"
33
version = "0.1.2"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77
[lib]
8-
name = "bitbots_pathplanning_rust"
8+
name = "bitbots_rust_nav"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# bitbots_pathplanning_rust
1+
# bitbots_rust_nav
22

33
A best-effort A*-on-visibility-graph implementation for pathplanning in obstacles maps where obstacles and the robot itself are assumed to be round.
44

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["maturin>=1.7,<2.0"]
33
build-backend = "maturin"
44

55
[project]
6-
name = "bitbots_pathplanning_rust"
6+
name = "bitbots_rust_nav"
77
requires-python = ">=3.8"
88
classifiers = [
99
"Programming Language :: Rust",

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ mod obstacle;
77
mod planner;
88

99
#[pymodule]
10-
fn bitbots_pathplanning_rust(m: &Bound<'_, PyModule>) -> PyResult<()> {
10+
fn bitbots_rust_nav(m: &Bound<'_, PyModule>) -> PyResult<()> {
1111
m.add_class::<RoundObstacle>()?;
1212
m.add_class::<ObstacleMap>()?;
1313
m.add_class::<ObstacleMapConfig>()?;

0 commit comments

Comments
 (0)