20 lines
383 B
TOML
20 lines
383 B
TOML
[package]
|
|
name = "haku-wasm"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
arrayvec = { version = "0.7.4", default-features = false }
|
|
dlmalloc = { version = "0.2.6", features = ["global"] }
|
|
haku.workspace = true
|
|
log.workspace = true
|
|
tiny-skia = { workspace = true, features = ["no-std-float"] }
|
|
paste = "1.0.15"
|
|
|
|
[features]
|
|
default = []
|
|
std = []
|
|
|