mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
d475f1373a
This commit mostly fixes invalid URLs in docstrings. It also encapsulates crates we reexport (serde stuff + linkme) into a public module named "private" in order to reduce the API surfaced through docs. Moreover, I fixed up a bunch of crates that were pulling serde_json in through gpui explicitly instead of using Cargo manifest. Release Notes: - N/A
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "terminal_view"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/terminal_view.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
editor = { path = "../editor" }
|
|
language = { path = "../language" }
|
|
gpui = { path = "../gpui" }
|
|
project = { path = "../project" }
|
|
search = { path = "../search" }
|
|
settings = { path = "../settings" }
|
|
theme = { path = "../theme" }
|
|
util = { path = "../util" }
|
|
workspace = { path = "../workspace" }
|
|
db = { path = "../db" }
|
|
procinfo = { git = "https://github.com/zed-industries/wezterm", rev = "5cd757e5f2eb039ed0c6bb6512223e69d5efc64d", default-features = false }
|
|
terminal = { path = "../terminal" }
|
|
ui = { path = "../ui" }
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
mio-extras = "2.0.6"
|
|
futures.workspace = true
|
|
ordered-float.workspace = true
|
|
itertools = "0.10"
|
|
dirs = "4.0.0"
|
|
shellexpand = "2.1.0"
|
|
libc = "0.2"
|
|
anyhow.workspace = true
|
|
thiserror.workspace = true
|
|
lazy_static.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
client = { path = "../client", features = ["test-support"]}
|
|
project = { path = "../project", features = ["test-support"]}
|
|
workspace = { path = "../workspace", features = ["test-support"] }
|
|
rand.workspace = true
|