* 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>
131 lines
4.0 KiB
TypeScript
131 lines
4.0 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_deno(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_outputs(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_ts_imports(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_bash(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_powershell(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_go(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_python(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_sql(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_mysql(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_bigquery(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_snowflake(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_mssql(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string | undefined}
|
|
*/
|
|
export function parse_db_resource(code: string): string | undefined;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_graphql(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_php(code: string): string;
|
|
/**
|
|
* @param {string} code
|
|
* @returns {string}
|
|
*/
|
|
export function parse_rust(code: string): string;
|
|
|
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
|
|
export interface InitOutput {
|
|
readonly memory: WebAssembly.Memory;
|
|
readonly parse_deno: (a: number, b: number, c: number) => void;
|
|
readonly parse_outputs: (a: number, b: number, c: number) => void;
|
|
readonly parse_ts_imports: (a: number, b: number, c: number) => void;
|
|
readonly parse_bash: (a: number, b: number, c: number) => void;
|
|
readonly parse_powershell: (a: number, b: number, c: number) => void;
|
|
readonly parse_go: (a: number, b: number, c: number) => void;
|
|
readonly parse_python: (a: number, b: number, c: number) => void;
|
|
readonly parse_sql: (a: number, b: number, c: number) => void;
|
|
readonly parse_mysql: (a: number, b: number, c: number) => void;
|
|
readonly parse_bigquery: (a: number, b: number, c: number) => void;
|
|
readonly parse_snowflake: (a: number, b: number, c: number) => void;
|
|
readonly parse_mssql: (a: number, b: number, c: number) => void;
|
|
readonly parse_db_resource: (a: number, b: number, c: number) => void;
|
|
readonly parse_graphql: (a: number, b: number, c: number) => void;
|
|
readonly parse_php: (a: number, b: number, c: number) => void;
|
|
readonly parse_rust: (a: number, b: number, c: number) => void;
|
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|
|
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
}
|
|
|
|
export type SyncInitInput = BufferSource | WebAssembly.Module;
|
|
/**
|
|
* Instantiates the given `module`, which can either be bytes or
|
|
* a precompiled `WebAssembly.Module`.
|
|
*
|
|
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
|
|
*
|
|
* @returns {InitOutput}
|
|
*/
|
|
export function initSync(module: { module: SyncInitInput } | SyncInitInput): InitOutput;
|
|
|
|
/**
|
|
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
*
|
|
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
*
|
|
* @returns {Promise<InitOutput>}
|
|
*/
|
|
export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise<InitInput> } | InitInput | Promise<InitInput>): Promise<InitOutput>;
|