mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-25 14:44:28 +00:00
This will help with test times (in some cases), as nextest cannot figure out whether a given rdep is actually an alive edge of the build graph Closes #ISSUE Before you mark this PR as ready for review, make sure that you have: - [ ] Added a solid test coverage and/or screenshots from doing manual testing - [ ] Done a self-review taking into account security and performance aspects - [ ] Aligned any UI changes with the [UI checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) Release Notes: - N/A
37 lines
No EOL
959 B
TOML
37 lines
No EOL
959 B
TOML
[package]
|
|
name = "dev_container"
|
|
version = "0.1.0"
|
|
publish.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
http_client.workspace = true
|
|
http.workspace = true
|
|
gpui.workspace = true
|
|
futures.workspace = true
|
|
log.workspace = true
|
|
node_runtime.workspace = true
|
|
menu.workspace = true
|
|
paths.workspace = true
|
|
picker.workspace = true
|
|
settings.workspace = true
|
|
smol.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
worktree.workspace = true
|
|
workspace.workspace = true
|
|
|
|
[dev-dependencies]
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
project = { workspace = true, features = ["test-support"] }
|
|
serde_json.workspace = true
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
|
|
workspace = { workspace = true, features = ["test-support"] }
|
|
worktree = { workspace = true, features = ["test-support"] }
|
|
|
|
[lints]
|
|
workspace = true |