Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README fixes to better align with crate.io page #56

Merged
merged 2 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ members = [
edition = "2021"
keywords = ["maliput"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/maliput/maliput-rs"
4 changes: 2 additions & 2 deletions maliput-sdk/Cargo.toml
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 <franco.c@ekumenlabs.com>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion maliput-sdk/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Maliput SDK!
module(
name = "maliput_sdk",
compatibility_level = 1,
version = "0.1.1",
version = "0.1.2",
)

bazel_dep(name = "rules_cc", version = "0.0.9")
Expand Down
2 changes: 1 addition & 1 deletion maliput-sdk/MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions maliput-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ authors = ["Franco Cipollone <franco.c@ekumenlabs.com>"]
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"
4 changes: 2 additions & 2 deletions maliput/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ authors = ["Franco Cipollone <franco.c@ekumenlabs.com>"]
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]
Expand Down