git.delta.rocks / jrsonnet / refs/commits / 3e1d3979f00f

difftreelog

source

bindings/jrsonnet-web/Cargo.toml1.1 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 = ["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"]