mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-22 11:23:59 +02:00
30 lines
867 B
TOML
30 lines
867 B
TOML
[package]
|
|
name = "yaak-templates"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
wasm-opt = false # Causes errors in CI (haven't figured out why yet)
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = ["wasm"]
|
|
# The `#[wasm_bindgen]` exports (parse_template etc.) that make up the
|
|
# @yaakapp-internal/templates package. Off for crates that link this one into
|
|
# their own wasm module and do not want these re-exported from theirs.
|
|
wasm = []
|
|
|
|
[dependencies]
|
|
base64 = "0.22.1"
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["macros", "rt"] }
|
|
ts-rs = { workspace = true }
|
|
wasm-bindgen = { version = "0.2.100", features = ["serde-serialize"] }
|
|
serde-wasm-bindgen = "0.6.5"
|
|
log = { workspace = true }
|