mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-30 20:24:08 +00:00
#2874 on steroids 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 --------- Co-authored-by: Eric Holk <eric@zed.dev>
46 lines
977 B
TOML
46 lines
977 B
TOML
[package]
|
|
name = "component_preview"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/component_preview.rs"
|
|
|
|
[features]
|
|
default = []
|
|
test-support = ["db/test-support"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
client.workspace = true
|
|
collections.workspace = true
|
|
component.workspace = true
|
|
db.workspace = true
|
|
fs.workspace = true
|
|
gpui.workspace = true
|
|
language.workspace = true
|
|
log.workspace = true
|
|
node_runtime.workspace = true
|
|
notifications.workspace = true
|
|
project.workspace = true
|
|
release_channel.workspace = true
|
|
reqwest_client.workspace = true
|
|
session.workspace = true
|
|
settings.workspace = true
|
|
theme.workspace = true
|
|
ui.workspace = true
|
|
ui_input.workspace = true
|
|
uuid.workspace = true
|
|
workspace.workspace = true
|
|
|
|
[dev-dependencies]
|
|
gpui_platform = { workspace = true, features = ["screen-capture"] }
|
|
|
|
[[example]]
|
|
name = "component_preview"
|
|
path = "examples/component_preview.rs"
|