24 lines
558 B
TOML
24 lines
558 B
TOML
[package]
|
|
name = "symclaw-wasm"
|
|
description = "WASM bindings for the SymClaw symbolic math engine"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false
|
|
|
|
[dependencies]
|
|
symclaw-core = { path = "../symclaw-core" }
|
|
wasm-bindgen.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
ordered-float.workspace = true
|
|
getrandom.workspace = true
|