2023-10-25 17:31:47 +00:00
|
|
|
[package]
|
|
|
|
name = "multi_buffer"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2023-10-25 17:31:47 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/multi_buffer.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = [
|
|
|
|
"text/test-support",
|
|
|
|
"language/test-support",
|
|
|
|
"gpui/test-support",
|
|
|
|
"util/test-support",
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
clock.workspace = true
|
|
|
|
collections.workspace = true
|
2023-10-25 17:31:47 +00:00
|
|
|
futures.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
git.workspace = true
|
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
2023-10-25 17:31:47 +00:00
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
rand.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings.workspace = true
|
|
|
|
sum_tree.workspace = true
|
|
|
|
text.workspace = true
|
|
|
|
theme.workspace = true
|
|
|
|
util.workspace = true
|
2023-10-25 17:31:47 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
2023-10-25 17:31:47 +00:00
|
|
|
rand.workspace = true
|
2024-02-06 19:41:36 +00:00
|
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
|
|
text = { workspace = true, features = ["test-support"] }
|
|
|
|
util = { workspace = true, features = ["test-support"] }
|