mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-01 14:15:11 +00:00
42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
[package]
|
|
name = "notifications2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/notification_store2.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"channel/test-support",
|
|
"collections/test-support",
|
|
"gpui/test-support",
|
|
"rpc/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
channel = { package = "channel2", path = "../channel2" }
|
|
client = { package = "client2", path = "../client2" }
|
|
clock = { path = "../clock" }
|
|
collections = { path = "../collections" }
|
|
db = { package = "db2", path = "../db2" }
|
|
feature_flags = { package = "feature_flags2", path = "../feature_flags2" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
rpc = { package = "rpc2", path = "../rpc2" }
|
|
settings = { package = "settings2", path = "../settings2" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
text = { package = "text2", path = "../text2" }
|
|
util = { path = "../util" }
|
|
|
|
anyhow.workspace = true
|
|
time.workspace = true
|
|
|
|
[dev-dependencies]
|
|
client = { package = "client2", path = "../client2", features = ["test-support"] }
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
gpui = { package = "gpui2", path = "../gpui2", features = ["test-support"] }
|
|
rpc = { package = "rpc2", path = "../rpc2", features = ["test-support"] }
|
|
settings = { package = "settings2", path = "../settings2", features = ["test-support"] }
|
|
util = { path = "../util", features = ["test-support"] }
|