Files
windmill/backend/windmill-trigger-http/Cargo.toml
Ruben Fiszel 6bf544f507 refactor: extract object store into dedicated crate with filesystem backend (#7996)
* 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>
2026-02-18 12:24:45 +00:00

48 lines
1.1 KiB
TOML

[package]
name = "windmill-trigger-http"
version.workspace = true
authors.workspace = true
edition.workspace = true
[lib]
name = "windmill_trigger_http"
path = "src/lib.rs"
[features]
default = []
enterprise = ["windmill-common/enterprise"]
cloud = ["windmill-common/cloud"]
[dependencies]
windmill-api-auth.workspace = true
windmill-common = { workspace = true, default-features = false }
windmill-types.workspace = true
windmill-trigger.workspace = true
windmill-audit.workspace = true
windmill-git-sync.workspace = true
axum.workspace = true
serde.workspace = true
serde_json.workspace = true
sqlx.workspace = true
http.workspace = true
tracing.workspace = true
tokio.workspace = true
async-trait.workspace = true
lazy_static.workspace = true
quick_cache.workspace = true
regex.workspace = true
matchit.workspace = true
hyper.workspace = true
futures.workspace = true
# http_trigger_auth deps
base64.workspace = true
hmac.workspace = true
sha1.workspace = true
sha2.workspace = true
constant_time_eq.workspace = true
itertools.workspace = true
thiserror.workspace = true
anyhow.workspace = true
hex.workspace = true