mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
9fbb1992e5
* detecting trigger kind on job error * v0 done * done * updat .sqlx and add mgrations * fix: set back vs code settings and unused * fix unused import * add feature flag * update ref * nits * nits * done * update repo ref * remove * add isCloudHosted * update sqlx * big * fix * use extra args instead of new col * nits * update .sqllx * update ref * update email * fix * fix * fix * nits * update script and use env base_internal_url * update sqlx and fix query * remove * fix unused import * update ref
48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
[package]
|
|
name = "windmill-queue"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_queue"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
private = []
|
|
enterprise = ["windmill-common/enterprise"]
|
|
cloud = []
|
|
benchmark = ["windmill-common/benchmark"]
|
|
prometheus = ["dep:prometheus"]
|
|
smtp = []
|
|
|
|
[dependencies]
|
|
windmill-audit.workspace = true
|
|
windmill-common = { workspace = true, default-features = false }
|
|
anyhow.workspace = true
|
|
hmac.workspace = true
|
|
sql-builder.workspace = true
|
|
sqlx.workspace = true
|
|
tracing.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
ulid.workspace = true
|
|
uuid.workspace = true
|
|
chrono.workspace = true
|
|
chrono-tz.workspace = true
|
|
hex.workspace = true
|
|
reqwest.workspace = true
|
|
lazy_static.workspace = true
|
|
prometheus = { workspace = true, optional = true }
|
|
cron.workspace = true
|
|
tokio.workspace = true
|
|
futures-core.workspace = true
|
|
futures.workspace = true
|
|
itertools.workspace = true
|
|
async-recursion.workspace = true
|
|
axum.workspace = true
|
|
serde_urlencoded.workspace = true
|
|
regex.workspace = true
|
|
backon.workspace = true
|