2023-10-25 20:31:47 +03:00
|
|
|
[package]
|
|
|
|
name = "multi_buffer"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-10-25 20:31:47 +03: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 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
clock.workspace = true
|
|
|
|
collections.workspace = true
|
2024-04-20 00:27:56 +03:00
|
|
|
ctor.workspace = true
|
|
|
|
env_logger.workspace = true
|
2023-10-25 20:31:47 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
git.workspace = true
|
|
|
|
gpui.workspace = true
|
2024-04-20 00:27:56 +03:00
|
|
|
itertools.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
language.workspace = true
|
2023-10-25 20:31:47 +03:00
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
rand.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings.workspace = true
|
2024-05-11 00:06:51 +03:00
|
|
|
serde.workspace = true
|
2024-04-20 00:27:56 +03:00
|
|
|
smallvec.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
sum_tree.workspace = true
|
|
|
|
text.workspace = true
|
|
|
|
theme.workspace = true
|
|
|
|
util.workspace = true
|
2023-10-25 20:31:47 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
language = { workspace = true, features = ["test-support"] }
|
2023-10-25 20:31:47 +03:00
|
|
|
rand.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
|
|
text = { workspace = true, features = ["test-support"] }
|
|
|
|
util = { workspace = true, features = ["test-support"] }
|