shim: expose in_arbiter server builders

This commit is contained in:
Aode (lion) 2021-10-29 14:56:08 -05:00
parent c48d42ead6
commit 95a7dcf6a6
2 changed files with 7 additions and 4 deletions

View file

@ -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 <asonix@asonix.dog>"]
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

View file

@ -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,
};