diff --git a/Cargo.toml b/Cargo.toml index 15322af..c35d0e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "background-jobs" description = "Background Jobs implemented with actix and futures" -version = "0.9.0" +version = "0.9.1" license-file = "LICENSE" authors = ["asonix "] repository = "https://git.asonix.dog/Aardwolf/background-jobs" @@ -21,10 +21,10 @@ members = [ default = ["background-jobs-actix"] [dependencies.background-jobs-core] -version = "0.9.0" +version = "0.9.4" path = "jobs-core" [dependencies.background-jobs-actix] -version = "0.9.0" +version = "0.9.4" path = "jobs-actix" optional = true diff --git a/src/lib.rs b/src/lib.rs index be302c1..f030895 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -172,4 +172,7 @@ pub mod dev { } #[cfg(feature = "background-jobs-actix")] -pub use background_jobs_actix::{create_server, ActixJob, QueueHandle, WorkerConfig}; +pub use background_jobs_actix::{ + create_server, create_server_in_arbiter, create_server_in_arbiter_handle, ActixJob, + QueueHandle, WorkerConfig, +};