Skip to content

Commit a6a239d

Browse files
committed
build: Added required fields to Cargo
s
1 parent 8355d9e commit a6a239d

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ jobs:
6565
echo "Updated oxmpl-py/Cargo.toml:"
6666
cat oxmpl-py/Cargo.toml
6767
68-
cargo publish --package oxmpl-py --token ${{ secrets.CARGO_TOKEN }}
68+
cargo publish --package oxmpl-py --token ${{ secrets.CARGO_TOKEN }} --allow-dirty

oxmpl-py/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
[package]
22
name = "oxmpl-py"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
authors = ["Junior Sundar <[email protected]>"]
66
description = "Python Bindings for the OxMPL Library"
7-
license = "BSD-3"
7+
license = "BSD-3-Clause"
8+
repository = "https://github.com/juniorsundar/oxmpl"
9+
readme = "../README.md"
10+
keywords = ["robotics", "motion-planning"]
811

912
[lib]
1013
name = "oxmpl_py"

oxmpl/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
22
name = "oxmpl"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
5+
description = "The Open Motion-Planning Library but Oxidised"
6+
license = "BSD-3-Clause"
7+
authors = ["Junior Sundar <[email protected]>"]
8+
repository = "https://github.com/juniorsundar/oxmpl"
9+
readme = "../README.md"
10+
keywords = ["robotics", "motion-planning"]
511

612
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
713
[lib]

0 commit comments

Comments
 (0)