mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-24 16:01:42 +00:00
896aae6794
# Conflicts: # backend/ee-repo-ref.txt # cli/src/commands/sync/sync.ts
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[package]
|
|
name = "windmill-api-workspaces"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_api_workspaces"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
enterprise = ["windmill-common/enterprise"]
|
|
private = [
|
|
"windmill-common/private",
|
|
"windmill-queue/private",
|
|
"windmill-audit/private",
|
|
]
|
|
cloud = ["windmill-common/cloud"]
|
|
no_auth = ["windmill-api-auth/no_auth"]
|
|
parquet = ["windmill-object-store/parquet", "dep:futures"]
|
|
|
|
[dependencies]
|
|
windmill-common = { workspace = true, default-features = false }
|
|
windmill-object-store = { workspace = true, optional = true }
|
|
windmill-types.workspace = true
|
|
windmill-api-auth.workspace = true
|
|
windmill-api-users.workspace = true
|
|
windmill-audit.workspace = true
|
|
windmill-git-sync.workspace = true
|
|
windmill-queue.workspace = true
|
|
windmill-api-jobs.workspace = true
|
|
windmill-dep-map.workspace = true
|
|
windmill-store.workspace = true
|
|
|
|
axum.workspace = true
|
|
chrono.workspace = true
|
|
futures = { workspace = true, optional = true }
|
|
hex.workspace = true
|
|
magic-crypt.workspace = true
|
|
http.workspace = true
|
|
hyper.workspace = true
|
|
lazy_static.workspace = true
|
|
regex.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
sqlx.workspace = true
|
|
tokio.workspace = true
|
|
tokio-postgres.workspace = true
|
|
tracing.workspace = true
|
|
uuid.workspace = true
|
|
strum.workspace = true
|