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"] }
9
10[patch.crates-io]
11tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter", rev = "366210ae925d7ea0891bc7a0c738f60c77c04d7b" }
12async-task = { git = "https://github.com/zed-industries/async-task", rev = "341b57d6de98cdfd7b418567b8de2022ca993a6e" }
13
14# TODO - Remove when a version is released with this PR: https://github.com/servo/core-foundation-rs/pull/457
15cocoa = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
16cocoa-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
17core-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
18core-foundation-sys = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
19core-graphics = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
20# TODO - Remove when a new version of RustRocksDB is released
21rocksdb = { git = "https://github.com/rust-rocksdb/rust-rocksdb", rev = "39dc822dde743b2a26eb160b660e8fbdab079d49" }
22
23[profile.dev]
24split-debuginfo = "unpacked"
25
26[profile.release]
27debug = true
28