19 lines
330 B
TOML
19 lines
330 B
TOML
[package]
|
|
name = "hello-world-wasm-rust"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A minimal Bifrost WASM plugin example in Rust"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
lto = true
|
|
strip = true
|
|
panic = "abort"
|