mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-08 08:04:25 +00:00
* Add rust on frontend * Add parser for rust * Handle rust job execution * Main has to return a result that is serializable * Update parser: parse many rust types * Rust parser dependencies * Frontend wasm parser * Add windmill parser rust to windmill parser wasm (temporarily) * Add rust as a tag on worker__default * Change init code for rust * Cleanup rust_executor.rs * Remove tree-sitter dep and fix unused imports * Add lockfile and build logic * Add cargo and rustup to windmill image * Fix env var to work on docker image and dev env * modify package.json * Deps after parser publish * Add stashed migration * Unify rust versions * Add error message when php or cargo are not present to use another image * Error message conditionally on feature flag * all ci/cd changes * all ci/cd changes --------- Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
30 lines
577 B
Rust
30 lines
577 B
Rust
#[cfg(feature = "enterprise")]
|
|
mod bigquery_executor;
|
|
#[cfg(feature = "enterprise")]
|
|
mod mssql_executor;
|
|
#[cfg(feature = "enterprise")]
|
|
mod snowflake_executor;
|
|
|
|
mod bash_executor;
|
|
mod bun_executor;
|
|
pub mod common;
|
|
mod config;
|
|
#[cfg(feature = "enterprise")]
|
|
mod dedicated_worker;
|
|
mod deno_executor;
|
|
mod global_cache;
|
|
mod go_executor;
|
|
mod graphql_executor;
|
|
mod js_eval;
|
|
mod mysql_executor;
|
|
mod pg_executor;
|
|
mod php_executor;
|
|
mod python_executor;
|
|
mod rust_executor;
|
|
mod worker;
|
|
mod worker_flow;
|
|
mod worker_lockfiles;
|
|
pub use worker::*;
|
|
|
|
pub use deno_executor::generate_deno_lock;
|