2026-01-23 19:30:29 +00:00
|
|
|
[package]
|
|
|
|
|
name = "giallo-js"
|
|
|
|
|
version = "0.0.1"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
# The EU Public License follows from Giallo, of which a WASM version is bundled
|
|
|
|
|
# with the library.
|
|
|
|
|
license = "EUPL-1.2"
|
|
|
|
|
description = ""
|
|
|
|
|
|
|
|
|
|
include = [
|
|
|
|
|
"src/**/*.rs",
|
|
|
|
|
"Cargo.toml",
|
|
|
|
|
"/LICENSE",
|
|
|
|
|
"/README.md",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[lib]
|
2026-01-23 21:13:33 +00:00
|
|
|
crate-type = ["cdylib"]
|
2026-01-23 19:30:29 +00:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
giallo = { version = "0.2.2", features = ["dump"] }
|
|
|
|
|
js-sys = "0.3.85"
|
|
|
|
|
wasm-bindgen = "0.2.108"
|
|
|
|
|
wit-bindgen = "0.51.0"
|