From 147a15b2fee56866c7e4041a53e5ba45567a9a60 Mon Sep 17 00:00:00 2001 From: asonix Date: Tue, 5 Nov 2019 16:09:23 -0600 Subject: [PATCH] Bump core and actix versions --- jobs-actix/Cargo.toml | 2 +- jobs-core/Cargo.toml | 2 +- jobs-core/src/processor.rs | 4 +--- jobs-core/src/storage.rs | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/jobs-actix/Cargo.toml b/jobs-actix/Cargo.toml index 516eb0a..2e2ec55 100644 --- a/jobs-actix/Cargo.toml +++ b/jobs-actix/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "background-jobs-actix" description = "in-process jobs processor based on Actix" -version = "0.6.0" +version = "0.6.1" license-file = "../LICENSE" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/background-jobs" diff --git a/jobs-core/Cargo.toml b/jobs-core/Cargo.toml index 7e575dd..cec7ed0 100644 --- a/jobs-core/Cargo.toml +++ b/jobs-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "background-jobs-core" description = "Core types for implementing an asynchronous jobs processor" -version = "0.6.0" +version = "0.6.1" license-file = "../LICENSE" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/background-jobs" diff --git a/jobs-core/src/processor.rs b/jobs-core/src/processor.rs index ded35cb..4bdc52b 100644 --- a/jobs-core/src/processor.rs +++ b/jobs-core/src/processor.rs @@ -152,9 +152,7 @@ pub trait Processor: Clone { /// /// Patterns like this could be useful if you want to use the same job type for multiple /// scenarios. Defining the `process` method for multiple `Processor`s with different - /// before/after logic for the same - /// [`Job`](https://docs.rs/background-jobs/0.4.0/background_jobs/trait.Job.html) type is - /// supported. + /// before/after logic for the same [`Job`] supported. fn process( &self, args: Value, diff --git a/jobs-core/src/storage.rs b/jobs-core/src/storage.rs index 4f5abdf..70cfbed 100644 --- a/jobs-core/src/storage.rs +++ b/jobs-core/src/storage.rs @@ -8,7 +8,7 @@ use crate::{JobInfo, NewJobInfo, ReturnJobInfo, Stats}; /// /// This crate provides a default implementation in the `memory_storage` module, which is backed by /// HashMaps and uses counting to assign IDs. If jobs must be persistent across application -/// restarts, look into the `[sled-backed](https://github.com/spacejam/sled)` implementation from +/// restarts, look into the [`sled-backed`](https://github.com/spacejam/sled) implementation from /// the `background-jobs-sled-storage` crate. pub trait Storage: Clone + Send { /// The error type used by the storage mechansim.