git.delta.rocks / jrsonnet / refs/commits / db1fd8f12920

difftreelog

source

bindings/jrsonnet-web/Cargo.toml1.4 KiBsourcehistory
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"]