-
-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 702 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 702 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
[workspace]
members = [
"src-tauri",
"crates/runtime",
"crates/tooling",
"crates/lsp",
"crates/remote",
"crates/project",
"crates/version-control",
"crates/extensions",
"crates/terminal",
"crates/ai",
"crates/github",
"crates/fff-search",
"crates/debugger",
"crates/database",
]
resolver = "2"
[patch.crates-io]
agent-client-protocol = { path = "vendor/agent-client-protocol" }
agent-client-protocol-schema = { path = "vendor/agent-client-protocol-schema" }
tauri = { git = "https://github.com/tauri-apps/tauri", branch = "feat/cef" }
[workspace.lints.clippy]
uninlined_format_args = "allow"
new-without-default = "allow"
[profile.release]
lto = "thin"
codegen-units = 1