# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "apalis" version = "0.6.0-rc.8" authors = ["Geoffrey Mureithi "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Simple, extensible multithreaded background job processing for Rust" documentation = "https://docs.rs/apalis" readme = "README.md" keywords = [ "job", "task", "scheduler", "worker", "cron", ] categories = ["database"] license = "MIT OR Apache-2.0" repository = "https://github.com/geofmureithi/apalis" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "apalis" path = "src/lib.rs" bench = false [dependencies.apalis-core] version = "0.6.0-rc.8" default-features = false [dependencies.async-std] version = "1.13.0" optional = true [dependencies.document-features] version = "0.2" optional = true [dependencies.futures] version = "0.3.30" [dependencies.metrics] version = "0.23.0" optional = true default-features = false [dependencies.metrics-exporter-prometheus] version = "0.15" optional = true default-features = false [dependencies.pin-project-lite] version = "0.2.14" [dependencies.sentry-core] version = "0.34.0" optional = true default-features = false [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.thiserror] version = "1.0.59" [dependencies.tokio] version = "1" features = ["rt"] optional = true default-features = false [dependencies.tower] version = "0.4" features = ["util"] default-features = false [dependencies.tracing] version = "0.1.40" optional = true default-features = false [dependencies.tracing-futures] version = "0.2.5" optional = true default-features = false [dependencies.ulid] version = "1" optional = true [dependencies.uuid] version = "1.8" optional = true [dev-dependencies.criterion] version = "0.5.1" features = [ "async_tokio", "html_reports", ] [dev-dependencies.paste] version = "1.0.14" [dev-dependencies.pprof] version = "0.13" features = ["flamegraph"] [dev-dependencies.redis] version = "0.25.3" features = [ "tokio-comp", "script", "aio", "connection-manager", ] default-features = false [dev-dependencies.serde] version = "1" [dev-dependencies.sqlx] version = "0.8.1" features = [ "chrono", "mysql", "sqlite", "postgres", "runtime-tokio", ] default-features = false [dev-dependencies.tokio] version = "1" features = [ "macros", "rt-multi-thread", ] [features] async-std-comp = ["async-std"] catch-panic = [] default = [ "tracing", "tokio-comp", ] docsrs = ["document-features"] filter = ["tower/filter"] layers = [ "sentry", "prometheus", "tracing", "retry", "timeout", "limit", "filter", "catch-panic", ] limit = ["tower/limit"] prometheus = [ "metrics", "metrics-exporter-prometheus", ] retry = ["tower/retry"] sentry = [ "sentry-core", "ulid?/uuid", "uuid", ] timeout = ["tower/timeout"] tokio-comp = ["tokio"] tracing = [ "dep:tracing", "dep:tracing-futures", ]