automata/web/Cargo.toml
2026-01-09 20:13:09 -05:00

16 lines
383 B
TOML

[package]
name = "automata-web"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
automata = {path="..", features = ["serde"]}
console_error_panic_hook = "0.1.7"
wasm-bindgen = "*"
web-sys = { version = "0.3.83", features = ["Window", "Document", "HtmlElement", "Text"] }