Skip to content

Commit

Permalink
Merge pull request #91 from ideal-world/release-0.1.0.rc-4
Browse files Browse the repository at this point in the history
Release 0.1.0.rc 4
  • Loading branch information
4t145 authored Nov 27, 2023
2 parents c46e640 + 2a45601 commit 4ced2b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ codegen-units = 1
opt-level = "z"

[workspace.package]
version = "0.1.0-rc.3"
version = "0.1.0-rc.4"
authors = ["gudaoxuri <[email protected]>"]
description = "Elegant, clean Rust development framework"
keywords = ["http", "database", "web", "redis", "mq"]
Expand Down
6 changes: 3 additions & 3 deletions tardis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ tokio-tungstenite = { version = "0.20", features = [
], optional = true }

# Redis
redis = { version = "0.23", features = [
redis = { version = "=0.23.3", features = [
"tokio-comp",
"tokio-native-tls-comp",
], optional = true }
Expand All @@ -205,8 +205,8 @@ rust-s3 = { version = "0.33", optional = true }
anyhow = { version = "1.0", optional = true }

# K8s
kube = { version = "0.87", features = ["runtime"], optional = true }
k8s-openapi = { version = "0.20", features = ["earliest"], optional = true }
kube = { version = "^0.85", features = ["runtime"], optional = true }
k8s-openapi = { version = "^0.19", features = ["earliest"], optional = true }

# Test
testcontainers = { version = "0.15", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion tardis/src/cache/cache_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ impl TardisCacheClient {
}

pub async fn linsert_before(&self, key: &str, count: isize, value: &str) -> RedisResult<usize> {
trace!("[Tardis.CacheClient] linsert_after, key:{}", key);
trace!("[Tardis.CacheClient] linsert_before, key:{}", key);
self.get_connection().await?.linsert_before(key, count, value).await
}

Expand Down

0 comments on commit 4ced2b2

Please sign in to comment.