Files
windmill/backend/windmill-queue/Cargo.toml
claude[bot] 46edc9ce99 refactor: rename *_ee files to *_oss
This commit implements the renaming of *_ee files to use a more structured approach:

1. For each *_ee.rs file, create a corresponding *_oss.rs file with the OSS implementation
2. Add a private feature flag to control which implementation is used
3. Update the imports in lib.rs files to conditionally import the correct module
   - If private feature is enabled: use *_ee.rs implementations
   - If private feature is not enabled: use *_oss.rs implementations

Co-Authored-By: centdix <centdix@users.noreply.github.com>

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-05-20 11:16:01 +00:00

47 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 = []
enterprise = ["windmill-common/enterprise"]
private = ["windmill-common/private"]
cloud = []
benchmark = ["windmill-common/benchmark"]
prometheus = ["dep:prometheus"]
[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