mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
bd7156682d
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
52 lines
1.7 KiB
TOML
52 lines
1.7 KiB
TOML
[package]
|
|
name = "windmill-api-scripts"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_api_scripts"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = []
|
|
enterprise = ["windmill-common/enterprise", "windmill-native-triggers?/enterprise"]
|
|
private = ["windmill-common/private", "windmill-dep-map/private"]
|
|
python = ["dep:windmill-parser-py", "dep:windmill-parser-py-asset"]
|
|
prometheus = ["dep:prometheus", "windmill-common/prometheus"]
|
|
native_trigger = ["dep:windmill-native-triggers", "windmill-native-triggers/native_trigger"]
|
|
[dependencies]
|
|
windmill-common = { workspace = true, default-features = false }
|
|
windmill-native-triggers = { workspace = true, optional = true }
|
|
windmill-object-store.workspace = true
|
|
windmill-api-auth.workspace = true
|
|
windmill-queue.workspace = true
|
|
windmill-audit.workspace = true
|
|
windmill-git-sync.workspace = true
|
|
windmill-dep-map.workspace = true
|
|
windmill-parser-ts.workspace = true
|
|
windmill-parser.workspace = true
|
|
windmill-parser-ts-asset.workspace = true
|
|
windmill-parser-sql-asset.workspace = true
|
|
windmill-parser-sql.workspace = true
|
|
windmill-parser-yaml.workspace = true
|
|
|
|
axum.workspace = true
|
|
futures.workspace = true
|
|
http.workspace = true
|
|
hyper.workspace = true
|
|
itertools.workspace = true
|
|
quick_cache.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sql-builder.workspace = true
|
|
sqlx.workspace = true
|
|
tracing.workspace = true
|
|
chrono.workspace = true
|
|
lazy_static.workspace = true
|
|
tokio.workspace = true
|
|
prometheus = { workspace = true, optional = true }
|
|
windmill-parser-py = { workspace = true, optional = true }
|
|
windmill-parser-py-asset = { workspace = true, optional = true }
|