Cargo.toml

 1[workspace]
 2members = ["crates/*"]
 3default-members = ["crates/zed"]
 4resolver = "2"
 5
 6[workspace.dependencies]
 7serde = { version = "1.0", features = ["derive", "rc"] }
 8serde_json = { version = "1.0", features = ["preserve_order", "raw_value"] }
 9rand = { version = "0.8" }
10
11[patch.crates-io]
12tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter", rev = "366210ae925d7ea0891bc7a0c738f60c77c04d7b" }
13async-task = { git = "https://github.com/zed-industries/async-task", rev = "341b57d6de98cdfd7b418567b8de2022ca993a6e" }
14
15# TODO - Remove when a version is released with this PR: https://github.com/servo/core-foundation-rs/pull/457
16cocoa = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
17cocoa-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
18core-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
19core-foundation-sys = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
20core-graphics = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
21
22[profile.dev]
23split-debuginfo = "unpacked"
24
25[profile.release]
26debug = true
27