diff --git a/examples/basic-example/Cargo.toml b/examples/basic-example/Cargo.toml index a01d1ab..3778a06 100644 --- a/examples/basic-example/Cargo.toml +++ b/examples/basic-example/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] actix-rt = "2.0.0" -background-jobs = { version = "0.18.0", path = "../..", features = [ "error-logging", "sled" ] } +background-jobs = { version = "0.19.0", path = "../..", features = [ "error-logging", "sled" ] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } serde = { version = "1.0", features = ["derive"] } diff --git a/examples/error-example/Cargo.toml b/examples/error-example/Cargo.toml index d5c11e1..8738c34 100644 --- a/examples/error-example/Cargo.toml +++ b/examples/error-example/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] actix-rt = "2.0.0" -background-jobs = { version = "0.18.0", path = "../..", features = [ +background-jobs = { version = "0.19.0", path = "../..", features = [ "error-logging", "sled", ] } diff --git a/examples/long-example/Cargo.toml b/examples/long-example/Cargo.toml index 480d833..9d74676 100644 --- a/examples/long-example/Cargo.toml +++ b/examples/long-example/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] actix-rt = "2.0.0" -background-jobs = { version = "0.18.0", path = "../..", features = [ "error-logging", "sled" ] } +background-jobs = { version = "0.19.0", path = "../..", features = [ "error-logging", "sled" ] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } serde = { version = "1.0", features = ["derive"] } diff --git a/examples/managed-example/Cargo.toml b/examples/managed-example/Cargo.toml index 802f33a..fcc7b0b 100644 --- a/examples/managed-example/Cargo.toml +++ b/examples/managed-example/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] actix-rt = "2.0.0" -background-jobs = { version = "0.18.0", path = "../..", features = [ "error-logging", "sled"] } +background-jobs = { version = "0.19.0", path = "../..", features = [ "error-logging", "sled"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } serde = { version = "1.0", features = ["derive"] } diff --git a/examples/metrics-example/Cargo.toml b/examples/metrics-example/Cargo.toml index 85d6f08..0d50433 100644 --- a/examples/metrics-example/Cargo.toml +++ b/examples/metrics-example/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] actix-rt = "2.0.0" -background-jobs = { version = "0.18.0", path = "../..", features = [ "error-logging", "sled" ] } +background-jobs = { version = "0.19.0", path = "../..", features = [ "error-logging", "sled" ] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } serde = { version = "1.0", features = ["derive"] } diff --git a/examples/panic-example/Cargo.toml b/examples/panic-example/Cargo.toml index 0d9e8d0..199cdd1 100644 --- a/examples/panic-example/Cargo.toml +++ b/examples/panic-example/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -background-jobs = { version = "0.18.0", path = "../..", default-features = false, features = [ "error-logging", "sled", "tokio" ] } +background-jobs = { version = "0.19.0", path = "../..", default-features = false, features = [ "error-logging", "sled", "tokio" ] } time = "0.3" tokio = { version = "1", features = ["full"] } tracing = "0.1" diff --git a/examples/postgres-example/Cargo.toml b/examples/postgres-example/Cargo.toml index 86e37a8..052c7e3 100644 --- a/examples/postgres-example/Cargo.toml +++ b/examples/postgres-example/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] actix-rt = "2.9.0" -background-jobs = { version = "0.18.0", features = ["postgres"], path = "../.." } +background-jobs = { version = "0.19.0", features = ["postgres"], path = "../.." } serde = { version = "1.0.195", features = ["derive"] } tokio = { version = "1.35.1", features = ["full"] } tracing = "0.1.40" diff --git a/examples/tokio-example/Cargo.toml b/examples/tokio-example/Cargo.toml index 717c137..3d717ba 100644 --- a/examples/tokio-example/Cargo.toml +++ b/examples/tokio-example/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -background-jobs = { version = "0.18.0", path = "../..", default-features = false, features = [ "error-logging", "sled", "tokio"] } +background-jobs = { version = "0.19.0", path = "../..", default-features = false, features = [ "error-logging", "sled", "tokio"] } tokio = { version = "1", features = ["full"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }