difftreelog
feat experimental regexp in web
in: master
1 file changed
bindings/jrsonnet-web/Cargo.tomldiffbeforeafterboth1[package]2name = "jrsonnet-web"3description = "WebAssembly JavaScript bindings for jrsonnet"4keywords = ["jsonnet", "wasm", "web"]5categories = ["wasm"]6authors.workspace = true7edition.workspace = true8license.workspace = true9repository.workspace = true10version.workspace = true1112[features]13experimental = ["exp-preserve-order", "exp-bigint"]14exp-preserve-order = [15 "jrsonnet-evaluator/exp-preserve-order",16 "jrsonnet-stdlib/exp-preserve-order",17]18exp-bigint = [19 "dep:num-bigint",20 "jrsonnet-evaluator/exp-bigint",21 "jrsonnet-stdlib/exp-bigint",22 "jrsonnet-types/exp-bigint",23]2425[dependencies]26console_error_panic_hook.workspace = true27getrandom = { workspace = true, features = ["wasm_js"] }28hi-doc.workspace = true29jrsonnet-evaluator.workspace = true30jrsonnet-formatter.workspace = true31jrsonnet-gcmodule.workspace = true32jrsonnet-stdlib.workspace = true33jrsonnet-types.workspace = true34js-sys.workspace = true35num-bigint = { workspace = true, optional = true }36rustc-hash.workspace = true37url.workspace = true38wasm-bindgen.workspace = true39wasm-bindgen-futures.workspace = true4041[lints]42workspace = true4344[lib]45name = "jsonnet_web"46crate-type = ["cdylib"]1[package]2name = "jrsonnet-web"3description = "WebAssembly JavaScript bindings for jrsonnet"4keywords = ["jsonnet", "wasm", "web"]5categories = ["wasm"]6authors.workspace = true7edition.workspace = true8license.workspace = true9repository.workspace = true10version.workspace = true1112[features]13experimental = [14 "exp-preserve-order",15 "exp-destruct",16 "exp-null-coaelse",17 "exp-object-iteration",18 "exp-bigint",19]20exp-preserve-order = [21 "jrsonnet-evaluator/exp-preserve-order",22 "jrsonnet-stdlib/exp-preserve-order",23]24exp-destruct = ["jrsonnet-evaluator/exp-destruct"]25exp-object-iteration = ["jrsonnet-evaluator/exp-object-iteration"]26exp-bigint = [27 "dep:num-bigint",28 "jrsonnet-stdlib/exp-bigint",29 "jrsonnet-types/exp-bigint",30]31exp-regex = ["jrsonnet-stdlib/exp-regex"]32exp-null-coaelse = ["jrsonnet-stdlib/exp-null-coaelse"]3334[dependencies]35console_error_panic_hook.workspace = true36getrandom = { workspace = true, features = ["wasm_js"] }37hi-doc.workspace = true38jrsonnet-evaluator.workspace = true39jrsonnet-formatter.workspace = true40jrsonnet-gcmodule.workspace = true41jrsonnet-stdlib.workspace = true42jrsonnet-types.workspace = true43js-sys.workspace = true44num-bigint = { workspace = true, optional = true }45rustc-hash.workspace = true46url.workspace = true47wasm-bindgen.workspace = true48wasm-bindgen-futures.workspace = true4950[lints]51workspace = true5253[lib]54name = "jsonnet_web"55crate-type = ["cdylib"]