-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 773 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "playground"
version = "0.1.0"
edition = "2024"
[dependencies]
mrubyedge = { version = "1.1.9", default-features = false, features = [
"wasi",
"mruby-regexp",
"mruby-random",
"insn-limit",
] }
mrubyedge-serde-json = "0.1.1"
mrubyedge-math = "0.1.1"
mrubyedge-time = "0.1.2"
[build-dependencies]
bindgen = ">= 0"
cc = ">= 1"
glob = ">= 0"
[profile.dev]
# FIXME: unccomment
# panic = "abort" # Reduce panic handling overhead
[profile.release]
opt-level = "z" # Optimize for size
lto = true # Enable Link Time Optimization
codegen-units = 1 # Better optimization with single codegen unit
strip = true # Strip symbols
panic = "abort" # Reduce panic handling overhead
[workspace]
members = ["mrbe-playground-api/wasm-app"]