mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-25 08:00:59 +00:00
522f32c6c0
* feat: keep pg columns ordering * feat: pass column order through flow status * feat: sql ordering for all sql langs * fix: sqlx build on mac + rename to _metadata * Update JobPreview.svelte * Update +page.svelte * Update +page.svelte * Update LogPanel.svelte * Update +page.svelte * Update LogPanel.svelte * Update JobPreview.svelte * fix: build --------- Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
49 lines
1.3 KiB
TOML
49 lines
1.3 KiB
TOML
[package]
|
|
name = "windmill-common"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
enterprise = []
|
|
prometheus = ["dep:prometheus"]
|
|
flamegraph = ["dep:tracing-flame"]
|
|
loki = ["dep:tracing-loki"]
|
|
parquet = ["dep:object_store", "dep:aws-config", "dep:aws-sdk-sts"]
|
|
|
|
[lib]
|
|
name = "windmill_common"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
hmac.workspace = true
|
|
sha2.workspace = true
|
|
thiserror.workspace = true
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
chrono.workspace = true
|
|
hex.workspace = true
|
|
rand.workspace = true
|
|
sqlx = { workspace = true, features = ["postgres"] }
|
|
uuid.workspace = true
|
|
tracing = { workspace = true }
|
|
axum = { workspace = true }
|
|
hyper = { workspace = true }
|
|
tokio = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
lazy_static.workspace = true
|
|
tracing-flame = { version = "^0", optional = true }
|
|
itertools.workspace = true
|
|
regex.workspace = true
|
|
git-version.workspace = true
|
|
cron.workspace = true
|
|
tracing-loki = { version = "^0", optional = true }
|
|
magic-crypt.workspace = true
|
|
object_store = { workspace = true, optional = true }
|
|
prometheus = { workspace = true, optional = true }
|
|
aws-config = { workspace = true, optional = true }
|
|
aws-sdk-sts = { workspace = true, optional = true }
|
|
indexmap.workspace = true |