24 lines
602 B
TOML
24 lines
602 B
TOML
[package]
|
|
name = "decodal-wasm"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
description = "WebAssembly wrapper for evaluating Decodal in browser playgrounds."
|
|
keywords = ["decodal", "wasm", "dsl", "config"]
|
|
categories = ["wasm", "config"]
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
decodal = { version = "0.1.0", path = "../decodal-core" }
|
|
serde_json.workspace = true
|
|
wasm-bindgen.workspace = true
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|