* Add feature flags to split parsers into different pkgs * Split wasm parser imports * Use regex-lite, reorganize the parser split * Update imports to the new wasm parser split * Remove panic system on wasm and simplify snake case convert logic * Adapt new imports * Fix to_snake_case + fix tests * Adapt wasm test dependencies * Add publish script * Fix publish script * Publish script relative to script location * pkg diff + publish * Fix TS WASM import + add pakcage lock * Fix lint --------- Co-authored-by: Ruben Fiszel <ruben@windmill.dev> Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
22 lines
472 B
TOML
22 lines
472 B
TOML
[package]
|
|
name = "windmill-parser-graphql"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_parser_graphql"
|
|
path = "./src/lib.rs"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
regex-lite.workspace = true
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
regex.workspace = true
|
|
|
|
[dependencies]
|
|
windmill-parser.workspace = true
|
|
anyhow.workspace = true
|
|
lazy_static.workspace = true
|
|
serde_json.workspace = true
|