fix errors in inclusion of cargo.toml and .cargo/config.toml

This commit is contained in:
Sturdyfool10 2025-08-08 15:17:26 -07:00
parent 8a737ebf5d
commit 196238d03e
2 changed files with 2 additions and 8 deletions

View file

@ -21,8 +21,6 @@ rustflags = [
"target-feature=+crt-static", # This fixes the linking issue when compiling livekit on Windows
"-C",
"link-arg=-fuse-ld=lld",
"-C",
"target-cpu=x86-64-v4"
]
[env]

View file

@ -796,13 +796,9 @@ ui_input = { codegen-units = 1 }
zed_actions = { codegen-units = 1 }
[profile.release]
debug = false
lto = "fat"
debug = "limited"
lto = "thin"
codegen-units = 1
opt-level = 3
strip = true
overflow-checks = false
panic = "abort"
[profile.release.package]
zed = { codegen-units = 16 }