* 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
22 lines
464 B
TOML
22 lines
464 B
TOML
[package]
|
|
name = "windmill-parser-csharp"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_parser_csharp"
|
|
path = "./src/lib.rs"
|
|
|
|
[dependencies]
|
|
windmill-parser.workspace = true
|
|
tree-sitter.workspace = true
|
|
tree-sitter-c-sharp.workspace = true
|
|
anyhow.workspace = true
|
|
wasm-bindgen.workspace = true
|
|
serde_json.workspace = true
|
|
# convert_case.workspace = true
|
|
# lazy_static.workspace = true
|
|
# regex.workspace = true
|
|
|