2021-02-20 20:02:34 +03:00
|
|
|
[workspace]
|
2021-10-04 22:22:21 +03:00
|
|
|
members = ["crates/*"]
|
|
|
|
default-members = ["crates/zed"]
|
2022-01-26 23:51:29 +03:00
|
|
|
resolver = "2"
|
2021-04-02 20:02:09 +03:00
|
|
|
|
2022-10-11 03:10:42 +03:00
|
|
|
[workspace.dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
|
|
serde_json = { version = "1.0", features = ["preserve_order", "raw_value"] }
|
2022-10-12 01:25:54 +03:00
|
|
|
rand = { version = "0.8" }
|
2022-10-11 03:10:42 +03:00
|
|
|
|
2021-04-02 20:02:09 +03:00
|
|
|
[patch.crates-io]
|
2022-08-25 20:58:46 +03:00
|
|
|
tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter", rev = "366210ae925d7ea0891bc7a0c738f60c77c04d7b" }
|
2021-05-28 23:09:57 +03:00
|
|
|
async-task = { git = "https://github.com/zed-industries/async-task", rev = "341b57d6de98cdfd7b418567b8de2022ca993a6e" }
|
2022-07-09 00:08:35 +03:00
|
|
|
|
2021-05-05 05:04:11 +03:00
|
|
|
# TODO - Remove when a version is released with this PR: https://github.com/servo/core-foundation-rs/pull/457
|
2022-04-27 18:58:55 +03:00
|
|
|
cocoa = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
|
|
cocoa-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
|
|
core-foundation = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
|
|
core-foundation-sys = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
|
|
|
core-graphics = { git = "https://github.com/servo/core-foundation-rs", rev = "079665882507dd5e2ff77db3de5070c1f6c0fb85" }
|
2021-04-20 01:00:10 +03:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
split-debuginfo = "unpacked"
|
2021-05-07 15:42:56 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = true
|
2022-10-11 03:10:42 +03:00
|
|
|
|