Skip to content

Commit

Permalink
coerce 0.8.7, coerce-redis 0.4.0, coerce-k8s 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonHartley committed Apr 1, 2023
1 parent fc14e61 commit 5f94d4a
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 26 deletions.
37 changes: 19 additions & 18 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion coerce/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "coerce"
description = "Async actor runtime and distributed systems framework"
license = "Apache-2.0"
version = "0.8.6"
version = "0.8.7"
authors = ["Leon Hartley <ljph@outlook.com>"]
edition = "2021"
readme = "README.md"
Expand Down
4 changes: 1 addition & 3 deletions coerce/src/remote/net/security/auth/mod.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
use crate::remote::net::security::jwt::Jwt;

#[cfg(feature = "client-auth-jwt")]
pub mod jwt;

pub enum ClientAuth {
None,

#[cfg(feature = "client-auth-jwt")]
Jwt(Jwt),
Jwt(jwt::Jwt),
}

impl Default for ClientAuth {
Expand Down
4 changes: 2 additions & 2 deletions providers/discovery/coerce-k8s/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "coerce-k8s"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
description = "Kubernetes discovery provider, automatically discover cluster peers hosted in Kubernetes, based on a configurable pod-selection label"
license = "Apache-2.0"
Expand All @@ -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 = { version = "0.8.3", features = ["remote"] }
coerce = { version = "0.8.7", 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" }
4 changes: 2 additions & 2 deletions providers/persistence/coerce-redis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "coerce-redis"
version = "0.3.0"
version = "0.4.0"
authors = ["Leon Hartley <ljph@outlook.com>"]
edition = "2021"
description = "Redis actor persistence provider for Coerce. Supports event sourcing and snapshots"
Expand All @@ -16,7 +16,7 @@ cluster = [
]

[dependencies]
coerce = { path = "../../../coerce", features = ["persistence"] }
coerce = { version = "0.8.7", features = ["persistence"] }
async-trait = { version = "0.1.64" }
redis = { version = "0.22.3", features = ["tokio-comp"] }
tokio = { version = "1.25.0", features = ["full"] }
Expand Down

0 comments on commit 5f94d4a

Please sign in to comment.