2023-11-03 13:47:06 +00:00
|
|
|
[package]
|
|
|
|
name = "editor_extensions"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-03 15:54:17 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
collections = {path = "../collections"}
|
|
|
|
client = {path = "../client"}
|
|
|
|
db = {path = "../db"}
|
2023-11-03 13:47:06 +00:00
|
|
|
editor = {path = "../editor"}
|
2023-11-03 15:54:17 +00:00
|
|
|
gpui = {path = "../gpui"}
|
|
|
|
lsp = {path = "../lsp"}
|
|
|
|
language = {path = "../language"}
|
2023-11-03 13:47:06 +00:00
|
|
|
project = {path = "../project"}
|
2023-11-03 15:54:17 +00:00
|
|
|
project_types = {path = "../project_types"}
|
|
|
|
text = {path = "../text"}
|
2023-11-03 13:47:06 +00:00
|
|
|
workspace = {path = "../workspace"}
|
2023-11-03 15:54:17 +00:00
|
|
|
workspace_types = {path = "../workspace_types"}
|
|
|
|
util = {path = "../util"}
|
|
|
|
theme = {path = "../theme"}
|
|
|
|
smallvec.workspace = true
|
|
|
|
rpc = {path = "../rpc"}
|
|
|
|
futures.workspace = true
|