mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 00:01:34 +00:00
1ca49aefd5
* refactor: extract object store code into windmill-object-store crate with filesystem backend Consolidate all object_store-dependent code from windmill-common into a new windmill-object-store crate. Add a filesystem-backed object store implementation using LocalFileSystem for dev/testing without cloud credentials. Includes 30 comprehensive tests covering render_endpoint, lfs_to_object_store_resource, duckdb_connection_settings, error mapping, and filesystem-backed integration tests. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * all * all * all * all * fix: fix raw_app hardcoded path, add missing ObjectStoreResource import, and add tests Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * refactor: move S3ModeFormat to windmill-types, make windmill-parser-sql optional, restore debug logs Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * all --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
577 B
TOML
24 lines
577 B
TOML
[package]
|
|
name = "windmill-parser-sql"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_parser_sql"
|
|
path = "./src/lib.rs"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
regex-lite.workspace = true
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
regex.workspace = true
|
|
|
|
[dependencies]
|
|
windmill-parser.workspace = true
|
|
windmill-types.workspace = true
|
|
anyhow.workspace = true
|
|
lazy_static.workspace = true
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
sqlparser = { version = "0.59.0", features = ["visitor"] } |