mirror of
https://git.asonix.dog/asonix/background-jobs.git
synced 2024-11-22 03:51:00 +00:00
facade: Remove Stats
This commit is contained in:
parent
02733ecc8f
commit
8c09da73d6
2 changed files with 5 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "background-jobs"
|
name = "background-jobs"
|
||||||
description = "Background Jobs implemented with actix and futures"
|
description = "Background Jobs implemented with actix and futures"
|
||||||
version = "0.13.0"
|
version = "0.14.0"
|
||||||
license = "AGPL-3.0"
|
license = "AGPL-3.0"
|
||||||
authors = ["asonix <asonix@asonix.dog>"]
|
authors = ["asonix <asonix@asonix.dog>"]
|
||||||
repository = "https://git.asonix.dog/asonix/background-jobs"
|
repository = "https://git.asonix.dog/asonix/background-jobs"
|
||||||
|
@ -29,10 +29,10 @@ completion-logging = [
|
||||||
error-logging = ["background-jobs-core/error-logging"]
|
error-logging = ["background-jobs-core/error-logging"]
|
||||||
|
|
||||||
[dependencies.background-jobs-core]
|
[dependencies.background-jobs-core]
|
||||||
version = "0.13.0"
|
version = "0.14.0"
|
||||||
path = "jobs-core"
|
path = "jobs-core"
|
||||||
|
|
||||||
[dependencies.background-jobs-actix]
|
[dependencies.background-jobs-actix]
|
||||||
version = "0.13.0"
|
version = "0.14.0"
|
||||||
path = "jobs-actix"
|
path = "jobs-actix"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
//! [dependencies]
|
//! [dependencies]
|
||||||
//! actix-rt = "2.6.0"
|
//! actix-rt = "2.6.0"
|
||||||
//! anyhow = "1.0"
|
//! anyhow = "1.0"
|
||||||
//! background-jobs = "0.12.0"
|
//! background-jobs = "0.14.0"
|
||||||
//! serde = { version = "1.0", features = ["derive"] }
|
//! serde = { version = "1.0", features = ["derive"] }
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
|
@ -161,7 +161,7 @@
|
||||||
//! `background-jobs-core` crate, which provides the Job trait, as well as some
|
//! `background-jobs-core` crate, which provides the Job trait, as well as some
|
||||||
//! other useful types for implementing a jobs processor and job store.
|
//! other useful types for implementing a jobs processor and job store.
|
||||||
|
|
||||||
pub use background_jobs_core::{Backoff, Job, JobStat, MaxRetries, Stats};
|
pub use background_jobs_core::{Backoff, Job, MaxRetries};
|
||||||
|
|
||||||
pub mod dev {
|
pub mod dev {
|
||||||
//! Useful types and methods for developing Storage and Processor implementations.
|
//! Useful types and methods for developing Storage and Processor implementations.
|
||||||
|
|
Loading…
Reference in a new issue