Skip to content
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
3 changes: 1 addition & 2 deletions rustecal-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[package]
name = "rustecal-core"
version = "0.1.0"
version = "0.1.1"
authors = ["Rex Schilasky"]
edition = "2021"
description = "Idiomatic Rust API for Eclipse eCAL - Core Functionality"
license = "Apache-2.0"
repository = "https://github.com/eclipse-ecal/rustecal"
homepage = "https://github.com/eclipse-ecal/rustecal"
documentation = "https://docs.rs/rustecal-core"
readme = "README.md"
keywords = ["ecal", "ipc", "pubsub", "server-client", "middleware"]
Expand Down
3 changes: 1 addition & 2 deletions rustecal-pubsub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[package]
name = "rustecal-pubsub"
version = "0.1.1"
version = "0.1.2"
authors = ["Rex Schilasky"]
edition = "2021"
description = "Publish/Subscribe API for Eclipse eCAL"
license = "Apache-2.0"
repository = "https://github.com/eclipse-ecal/rustecal"
homepage = "https://github.com/eclipse-ecal/rustecal"
documentation = "https://docs.rs/rustecal-pubsub"
readme = "README.md"
keywords = ["ecal", "ipc", "pubsub", "middleware"]
Expand Down
3 changes: 1 addition & 2 deletions rustecal-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
[package]
name = "rustecal-sys"
version = "0.1.1"
version = "0.1.2"
authors = ["Rex Schilasky"]
edition = "2021"
build = "build.rs"
description = "Raw FFI bindings to Eclipse eCAL C API"
license = "Apache-2.0"
repository = "https://github.com/eclipse-ecal/rustecal"
homepage = "https://github.com/eclipse-ecal/rustecal"
documentation = "https://docs.rs/rustecal-sys"
readme = "README.md"
keywords = ["ecal", "ipc", "pubsub", "server-client", "middleware"]
Expand Down
4 changes: 4 additions & 0 deletions rustecal-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@

#[cfg(not(docsrs))]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

// stub out on docs.rs so include! never fails
#[cfg(docsrs)]
mod bindings {}
5 changes: 2 additions & 3 deletions rustecal-types-bytes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
[package]
name = "rustecal-types-bytes"
version = "0.1.0"
version = "0.1.2"
authors = ["Rex Schilasky"]
edition = "2021"
description = "Vec<u8> type support for rustecal TypedPublisher / TypedSubscriber"
license = "Apache-2.0"
repository = "https://github.com/eclipse-ecal/rustecal"
homepage = "https://github.com/eclipse-ecal/rustecal"
documentation = "https://docs.rs/rustecal-pubsub"
documentation = "https://docs.rs/rustecal-types-bytes"
readme = "README.md"
keywords = ["ecal", "ipc", "pubsub", "message-support", "middleware"]
categories = ["network-programming", "api-bindings"]
Expand Down
3 changes: 1 addition & 2 deletions rustecal-types-protobuf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ edition = "2021"
description = "Google Protobuf type support for rustecal TypedPublisher / TypedSubscriber"
license = "Apache-2.0"
repository = "https://github.com/eclipse-ecal/rustecal"
homepage = "https://github.com/eclipse-ecal/rustecal"
documentation = "https://docs.rs/rustecal-pubsub"
documentation = "https://docs.rs/rustecal-types-protobuf"
readme = "README.md"
keywords = ["ecal", "ipc", "pubsub", "message-support", "middleware"]
categories = ["network-programming", "api-bindings"]
Expand Down
3 changes: 1 addition & 2 deletions rustecal-types-string/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ edition = "2021"
description = "String type support for rustecal TypedPublisher / TypedSubscriber"
license = "Apache-2.0"
repository = "https://github.com/eclipse-ecal/rustecal"
homepage = "https://github.com/eclipse-ecal/rustecal"
documentation = "https://docs.rs/rustecal-pubsub"
documentation = "https://docs.rs/rustecal-types-string"
readme = "README.md"
keywords = ["ecal", "ipc", "pubsub", "message-support", "middleware"]
categories = ["network-programming", "api-bindings"]
Expand Down