Add another couple of deps.

This commit is contained in:
Erik Nordstrøm 2025-02-22 23:13:02 +01:00
parent 82ec2c819b
commit 87f1fa67cc
2 changed files with 69 additions and 4 deletions

71
Cargo.lock generated
View file

@ -64,6 +64,9 @@ name = "anyhow"
version = "1.0.96" version = "1.0.96"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b964d184e89d9b6b67dd2715bc8e74cf3107fb2b529990c90cf517326150bf4" checksum = "6b964d184e89d9b6b67dd2715bc8e74cf3107fb2b529990c90cf517326150bf4"
dependencies = [
"backtrace",
]
[[package]] [[package]]
name = "apalis" name = "apalis"
@ -158,6 +161,17 @@ dependencies = [
"futures-lite 1.13.0", "futures-lite 1.13.0",
] ]
[[package]]
name = "async-fs"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
dependencies = [
"async-lock 3.4.0",
"blocking",
"futures-lite 2.6.0",
]
[[package]] [[package]]
name = "async-io" name = "async-io"
version = "1.13.0" version = "1.13.0"
@ -228,6 +242,17 @@ dependencies = [
"futures-lite 1.13.0", "futures-lite 1.13.0",
] ]
[[package]]
name = "async-net"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7"
dependencies = [
"async-io 2.4.0",
"blocking",
"futures-lite 2.6.0",
]
[[package]] [[package]]
name = "async-process" name = "async-process"
version = "1.8.1" version = "1.8.1"
@ -245,6 +270,25 @@ dependencies = [
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
[[package]]
name = "async-process"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
dependencies = [
"async-channel 2.3.1",
"async-io 2.4.0",
"async-lock 3.4.0",
"async-signal",
"async-task",
"blocking",
"cfg-if",
"event-listener 5.3.0",
"futures-lite 2.6.0",
"rustix 0.38.44",
"tracing",
]
[[package]] [[package]]
name = "async-signal" name = "async-signal"
version = "0.2.10" version = "0.2.10"
@ -620,7 +664,7 @@ dependencies = [
"once_cell", "once_cell",
"rs-snowflake", "rs-snowflake",
"rustc_version", "rustc_version",
"smol", "smol 1.3.0",
"thiserror 1.0.69", "thiserror 1.0.69",
"tokio", "tokio",
"tracing", "tracing",
@ -1206,6 +1250,7 @@ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
name = "jobs" name = "jobs"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"anyhow",
"apalis", "apalis",
"chrono", "chrono",
"chrono-tz", "chrono-tz",
@ -1216,6 +1261,7 @@ dependencies = [
"croner", "croner",
"delay_timer", "delay_timer",
"english-to-cron", "english-to-cron",
"smol 2.0.2",
"tokio", "tokio",
"tokio-cron-scheduler", "tokio-cron-scheduler",
"tracing", "tracing",
@ -2152,15 +2198,32 @@ checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1"
dependencies = [ dependencies = [
"async-channel 1.9.0", "async-channel 1.9.0",
"async-executor", "async-executor",
"async-fs", "async-fs 1.6.0",
"async-io 1.13.0", "async-io 1.13.0",
"async-lock 2.8.0", "async-lock 2.8.0",
"async-net", "async-net 1.8.0",
"async-process", "async-process 1.8.1",
"blocking", "blocking",
"futures-lite 1.13.0", "futures-lite 1.13.0",
] ]
[[package]]
name = "smol"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a33bd3e260892199c3ccfc487c88b2da2265080acb316cd920da72fdfd7c599f"
dependencies = [
"async-channel 2.3.1",
"async-executor",
"async-fs 2.1.2",
"async-io 2.4.0",
"async-lock 3.4.0",
"async-net 2.0.0",
"async-process 2.3.0",
"blocking",
"futures-lite 2.6.0",
]
[[package]] [[package]]
name = "socket2" name = "socket2"
version = "0.4.10" version = "0.4.10"

View file

@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
anyhow = { version = "1.0.96", features = ["backtrace"] }
apalis = { version = "0.6.4", features = ["catch-panic", "docsrs", "document-features", "filter", "layers", "limit", "prometheus", "retry", "sentry", "timeout", "ulid", "uuid"] } apalis = { version = "0.6.4", features = ["catch-panic", "docsrs", "document-features", "filter", "layers", "limit", "prometheus", "retry", "sentry", "timeout", "ulid", "uuid"] }
chrono = { version = "0.4.39", features = ["rkyv-64", "serde"] } chrono = { version = "0.4.39", features = ["rkyv-64", "serde"] }
chrono-tz = { version = "0.10.1", features = ["arbitrary", "case-insensitive", "filter-by-regex", "serde"] } chrono-tz = { version = "0.10.1", features = ["arbitrary", "case-insensitive", "filter-by-regex", "serde"] }
@ -14,6 +15,7 @@ cron_tab = { version = "0.2.8", features = ["all"] }
croner = "2.1.0" croner = "2.1.0"
delay_timer = { version = "0.11.6", features = ["full"] } delay_timer = { version = "0.11.6", features = ["full"] }
english-to-cron = "0.1.2" english-to-cron = "0.1.2"
smol = "2.0.2"
tokio = { version = "1.43.0", features = ["full", "mio", "test-util", "tracing"] } tokio = { version = "1.43.0", features = ["full", "mio", "test-util", "tracing"] }
tokio-cron-scheduler = { version = "0.13.0", features = ["english", "log", "postgres_storage", "prost", "signal", "tokio-postgres", "tracing-subscriber"] } tokio-cron-scheduler = { version = "0.13.0", features = ["english", "log", "postgres_storage", "prost", "signal", "tokio-postgres", "tracing-subscriber"] }
tracing = { version = "0.1.41", features = ["async-await", "log", "valuable", "max_level_debug", "release_max_level_debug"] } tracing = { version = "0.1.41", features = ["async-await", "log", "valuable", "max_level_debug", "release_max_level_debug"] }