From 7df86f8af7fa14d780c9bda8d8238d482c858113 Mon Sep 17 00:00:00 2001 From: Leon Hartley Date: Sat, 27 May 2023 15:44:17 +0100 Subject: [PATCH] coerce 0.8.10, coerce-redis 0.4.3, coerce-k8s 0.1.7 --- coerce/Cargo.toml | 2 +- examples/coerce-sharded-chat-example/Cargo.toml | 2 +- providers/discovery/coerce-k8s/Cargo.toml | 4 ++-- providers/persistence/coerce-redis/Cargo.toml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/coerce/Cargo.toml b/coerce/Cargo.toml index f1c4c71..970cb12 100644 --- a/coerce/Cargo.toml +++ b/coerce/Cargo.toml @@ -2,7 +2,7 @@ name = "coerce" description = "Async actor runtime and distributed systems framework" license = "Apache-2.0" -version = "0.8.9" +version = "0.8.10" authors = ["Leon Hartley "] edition = "2021" readme = "README.md" diff --git a/examples/coerce-sharded-chat-example/Cargo.toml b/examples/coerce-sharded-chat-example/Cargo.toml index 601c987..53d81e3 100644 --- a/examples/coerce-sharded-chat-example/Cargo.toml +++ b/examples/coerce-sharded-chat-example/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -coerce = { path = "../../coerce", features = ["full"] } +coerce = { version = "0.8.10", features = ["full"] } coerce-macros = { version = "0.2.0" } coerce-redis = { path = "../../providers/persistence/coerce-redis" } coerce-k8s = { path = "../../providers/discovery/coerce-k8s" } diff --git a/providers/discovery/coerce-k8s/Cargo.toml b/providers/discovery/coerce-k8s/Cargo.toml index 6ca5856..2553000 100644 --- a/providers/discovery/coerce-k8s/Cargo.toml +++ b/providers/discovery/coerce-k8s/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "coerce-k8s" -version = "0.1.6" +version = "0.1.7" edition = "2021" description = "Kubernetes discovery provider, automatically discover cluster peers hosted in Kubernetes, based on a configurable pod-selection label" license = "Apache-2.0" @@ -11,7 +11,7 @@ repository = "https://github.com/leonhartley/coerce-rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -coerce = { path = "../../../coerce", features = ["remote"] } +coerce = { version = "0.8.10", features = ["remote"] } kube = { version = "0.78.0", default-features = false, features = ["client", "rustls-tls"] } k8s-openapi = { version = "0.17.0", features = ["v1_24", "api"] } tracing = { version = "0.1" } \ No newline at end of file diff --git a/providers/persistence/coerce-redis/Cargo.toml b/providers/persistence/coerce-redis/Cargo.toml index 8fd690f..57eca1d 100644 --- a/providers/persistence/coerce-redis/Cargo.toml +++ b/providers/persistence/coerce-redis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "coerce-redis" -version = "0.4.2" +version = "0.4.3" authors = ["Leon Hartley "] edition = "2021" description = "Redis actor persistence provider for Coerce. Supports event sourcing and snapshots" @@ -16,7 +16,7 @@ cluster = [ ] [dependencies] -coerce = { path = "../../../coerce", features = ["persistence"] } +coerce = { version = "0.8.10", features = ["persistence"] } async-trait = { version = "0.1.64" } redis = { version = "0.23.0", features = ["tokio-comp"] } tokio = { version = "1.28.1", features = ["full"] }