mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-04 00:03:02 +00:00
c85d2a4957
* Add csharp stuff and merge after the rewrite
* Add csharp, boilerplate + minimal execution
* Add initial parser
* Frontend + wasm export of the tree sitter parser
* Arg spread and use cache
* More types and req parsing
* Add logo
* Parse async and void to fit the wrapper to the main sig
* Csharp editor resource and var buttons
* Lockfile generation
* Add default parsing using serde_json::from_str
* Update init code for c#
* Nsjail for c#
* Remove c_variadic feature
* Remove unused imports
* Add c_variadic only for wasm32 assembly
* Fix c# test
* Add dotnet to the images
* Update dockerfiles
* Update dockerfile again
* Touch Dockerfile
* npm install c# parser
* Add opt mount in nsjail
* Update ee repo ref
* Add csharp to backend image for tests
* Add setting to set nuget package
* Windows compatibility
* Disable csharp test
* ADd feature flag
47 lines
1.5 KiB
TOML
47 lines
1.5 KiB
TOML
[package]
|
|
name = "windmill-parser-wasm"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
name = "windmill_parser_wasm"
|
|
path = "./src/lib.rs"
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test.workspace = true
|
|
windmill-parser-ts.workspace = true
|
|
windmill-parser-bash.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
go-parser = [ "dep:windmill-parser-go"]
|
|
bash-parser = [ "dep:windmill-parser-bash"]
|
|
sql-parser = [ "dep:windmill-parser-sql"]
|
|
py-parser = [ "dep:windmill-parser-py"]
|
|
ts-parser = [ "dep:windmill-parser-ts"]
|
|
php-parser = [ "dep:windmill-parser-php"]
|
|
rust-parser = [ "dep:windmill-parser-rust"]
|
|
graphql-parser = [ "dep:windmill-parser-graphql"]
|
|
ansible-parser = [ "dep:windmill-parser-yaml"]
|
|
csharp-parser = [ "dep:windmill-parser-csharp"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
windmill-parser.workspace = true
|
|
windmill-parser-go = { workspace = true, optional = true }
|
|
windmill-parser-bash = { workspace = true, optional = true }
|
|
windmill-parser-sql = { workspace = true, optional = true }
|
|
windmill-parser-py = { workspace = true, optional = true }
|
|
windmill-parser-ts = { workspace = true, optional = true }
|
|
windmill-parser-php = { workspace = true, optional = true }
|
|
windmill-parser-graphql = { workspace = true, optional = true }
|
|
windmill-parser-rust = { workspace = true, optional = true }
|
|
windmill-parser-yaml = { workspace = true, optional = true }
|
|
windmill-parser-csharp = { workspace = true, optional = true }
|
|
wasm-bindgen.workspace = true
|
|
serde_json.workspace = true
|
|
getrandom = { workspace = true, features = ["js"] }
|