-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 789 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 789 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
35
[workspace]
members = [
"crates/kernel",
"crates/kernel-wasm",
"crates/kernel-napi",
"crates/template-catalog",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
license = "MIT"
repository = "https://github.com/ruvnet/agent-harness-generator"
homepage = "https://github.com/ruvnet/agent-harness-generator"
authors = ["rUv <ruv@ruv.net>"]
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
anyhow = "1.0"
wasm-bindgen = "0.2"
serde-wasm-bindgen = "0.6"
napi = { version = "2", default-features = false, features = ["napi6", "serde-json"] }
napi-derive = "2"
js-sys = "0.3"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"