Rename buffer crate to text and name its entrypoint after the crate

Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
This commit is contained in:
Nathan Sobo 2021-11-30 12:26:12 -07:00
parent eacd2a45bb
commit d3f28166cb
31 changed files with 84 additions and 85 deletions

View file

@ -15,7 +15,7 @@ path = "src/main.rs"
[features]
test-support = [
"buffer/test-support",
"text/test-support",
"client/test-support",
"editor/test-support",
"gpui/test-support",
@ -28,7 +28,7 @@ test-support = [
]
[dependencies]
buffer = { path = "../buffer" }
text = { path = "../text" }
chat_panel = { path = "../chat_panel" }
client = { path = "../client" }
clock = { path = "../clock" }
@ -89,7 +89,7 @@ tree-sitter-rust = "0.19.0"
url = "2.2"
[dev-dependencies]
buffer = { path = "../buffer", features = ["test-support"] }
text = { path = "../text", features = ["test-support"] }
editor = { path = "../editor", features = ["test-support"] }
gpui = { path = "../gpui", features = ["test-support"] }
language = { path = "../language", features = ["test-support"] }