-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README fixes to better align with crate.io page (#56)
Signed-off-by: Franco Cipollone <[email protected]>
- Loading branch information
1 parent
ad13ba6
commit f4972cc
Showing
7 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "maliput-sdk" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
authors = ["Franco Cipollone <[email protected]>"] | ||
categories = ["external-ffi-bindings", "simulation"] | ||
description = "Vendor for maliput libraries." | ||
documentation = "https://maliput.readthedocs.io/" | ||
readme = "README.md" | ||
|
||
edition.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
readme.workspace = true | ||
repository.workspace = true | ||
|
||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,18 +5,18 @@ authors = ["Franco Cipollone <[email protected]>"] | |
categories = ["external-ffi-bindings", "simulation"] | ||
description = "FFI Rust bindings for maliput" | ||
documentation = "https://maliput.readthedocs.io/" | ||
readme = "README.md" | ||
|
||
edition.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
readme.workspace = true | ||
repository.workspace = true | ||
|
||
build = "build.rs" | ||
|
||
[dependencies] | ||
cxx = "1.0.78" | ||
maliput-sdk = { version = "0.1.1", path = "../maliput-sdk" } | ||
maliput-sdk = { version = "0.1.2", path = "../maliput-sdk" } | ||
|
||
[build-dependencies] | ||
cxx-build = "1.0.78" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,16 +5,16 @@ authors = ["Franco Cipollone <[email protected]>"] | |
categories = ["simulation"] | ||
description = "Rust API for maliput" | ||
documentation = "https://docs.rs/crate/maliput" | ||
readme = "README.md" | ||
|
||
edition.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
readme.workspace = true | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
cxx = "1.0.78" | ||
maliput-sdk = { version = "0.1.1", path = "../maliput-sdk" } | ||
maliput-sdk = { version = "0.1.2", path = "../maliput-sdk" } | ||
maliput-sys = { version = "0.1.0", path = "../maliput-sys" } | ||
|
||
[dev-dependencies] | ||
|