-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
40 lines (33 loc) · 1.28 KB
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
36
37
38
39
40
[workspace]
members = ["crates/agentz-host", "src-tauri"]
resolver = "2"
[workspace.lints.rust]
warnings = "deny"
[workspace.lints.clippy]
dbg_macro = "deny"
todo = "deny"
unimplemented = "deny"
needless_return = "allow"
module_inception = "allow"
too_many_arguments = "allow"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
tokio = { version = "1", features = ["full"] }
# Shared agent runtime — pin to tagged releases on piscis-engine.
piscis-core = { git = "https://github.com/njbinbin-piscis/piscis-engine.git", package = "piscis-core", rev = "v0.8.62" }
piscis-kernel = { git = "https://github.com/njbinbin-piscis/piscis-engine.git", package = "piscis-kernel", rev = "v0.8.62" }
piscis-ide-tools = { git = "https://github.com/njbinbin-piscis/piscis-engine.git", package = "piscis-ide-tools", rev = "v0.8.62" }
# Local monorepo override — uncomment when hacking sibling checkouts:
# [patch."https://github.com/njbinbin-piscis/piscis-engine.git"]
# piscis-core = { path = "../piscis-engine/piscis-core" }
# piscis-kernel = { path = "../piscis-engine/piscis-kernel" }
# piscis-ide-tools = { path = "../piscis-engine/piscis-ide-tools" }
[profile.dev]
incremental = true
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
strip = true