Skip to content

Commit a8adf50

Browse files
author
Sebastian Frehmel
committed
Made instantiation independent of redis crate
1 parent 57c5883 commit a8adf50

File tree

3 files changed

+154
-146
lines changed

3 files changed

+154
-146
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis_logger"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
edition = "2018"
55
description = "A logger implementing the log::Log trait that writes log messages to a Redis pub/sub channel, a stream or both using the redis_rs crate"
66
repository = "https://github.com/8192K/redis_logger"
@@ -12,13 +12,13 @@ readme = "README.md"
1212

1313
[dependencies]
1414
log = { version = "0.4" , features = ["std"] }
15-
redis = "0.24"
15+
redis = "0.28"
1616
serde_json = { version = "1.0", optional = true }
1717
simplelog = { version = "0.12", optional = true }
1818
serializable_log_record = { version = "0.3", features = ["serde"], optional = true }
1919

2020
[dev-dependencies]
21-
mockall = "0.12"
21+
mockall = "0.13"
2222

2323
[features]
2424
default_encoders = ["dep:serde_json", "dep:serializable_log_record"]

0 commit comments

Comments
 (0)