mirror of
https://github.com/house-of-vanity/khm.git
synced 2025-08-21 14:27:14 +00:00
24 lines
617 B
TOML
24 lines
617 B
TOML
[package]
|
|
name = "khm-wasm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
log = "0.4"
|
|
eframe = { version = "0.29", default-features = false, features = ["glow"] }
|
|
egui = "0.29"
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
web-sys = { version = "0.3", features = ["console", "Headers", "Request", "RequestInit", "RequestMode", "Response", "Window"] }
|
|
console_error_panic_hook = "0.1"
|
|
tracing-wasm = "0.2"
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
serde-wasm-bindgen = "0.6"
|
|
|
|
[features]
|
|
default = [] |