diff --git a/rustecal-core/Cargo.toml b/rustecal-core/Cargo.toml index 9c104f9..89498e2 100644 --- a/rustecal-core/Cargo.toml +++ b/rustecal-core/Cargo.toml @@ -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"] diff --git a/rustecal-pubsub/Cargo.toml b/rustecal-pubsub/Cargo.toml index e004e0f..77de0fc 100644 --- a/rustecal-pubsub/Cargo.toml +++ b/rustecal-pubsub/Cargo.toml @@ -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"] diff --git a/rustecal-sys/Cargo.toml b/rustecal-sys/Cargo.toml index f51ff0c..6368f89 100644 --- a/rustecal-sys/Cargo.toml +++ b/rustecal-sys/Cargo.toml @@ -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"] diff --git a/rustecal-sys/src/lib.rs b/rustecal-sys/src/lib.rs index 9b07823..8188c23 100644 --- a/rustecal-sys/src/lib.rs +++ b/rustecal-sys/src/lib.rs @@ -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 {} diff --git a/rustecal-types-bytes/Cargo.toml b/rustecal-types-bytes/Cargo.toml index 47c3a41..47f03d5 100644 --- a/rustecal-types-bytes/Cargo.toml +++ b/rustecal-types-bytes/Cargo.toml @@ -1,13 +1,12 @@ [package] name = "rustecal-types-bytes" -version = "0.1.0" +version = "0.1.2" authors = ["Rex Schilasky"] edition = "2021" description = "Vec 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"] diff --git a/rustecal-types-protobuf/Cargo.toml b/rustecal-types-protobuf/Cargo.toml index ad65b8b..b88649f 100644 --- a/rustecal-types-protobuf/Cargo.toml +++ b/rustecal-types-protobuf/Cargo.toml @@ -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"] diff --git a/rustecal-types-string/Cargo.toml b/rustecal-types-string/Cargo.toml index 4e18a8b..7d4c001 100644 --- a/rustecal-types-string/Cargo.toml +++ b/rustecal-types-string/Cargo.toml @@ -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"]