mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-21 16:02:28 +00:00
87f3de9ae5
* Support column detection on S3 objects in DuckDB * Compilation fix * support direct s3 path without read_parquet() * package update * npm i
26 lines
552 B
TOML
26 lines
552 B
TOML
[package]
|
|
name = "windmill-types"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_types"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
chrono.workspace = true
|
|
uuid.workspace = true
|
|
rand.workspace = true
|
|
hex.workspace = true
|
|
anyhow.workspace = true
|
|
tracing.workspace = true
|
|
itertools.workspace = true
|
|
strum.workspace = true
|
|
bitflags.workspace = true
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
sqlx = { workspace = true, features = ["postgres"] }
|