mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-24 05:25:18 +00:00
We aren't making use of it in these crates and it unblocks some web-related work Release Notes: - N/A or Added/Fixed/Improved ...
42 lines
902 B
TOML
42 lines
902 B
TOML
[package]
|
|
name = "notifications"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/notifications.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"channel/test-support",
|
|
|
|
"gpui/test-support",
|
|
"rpc/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
channel.workspace = true
|
|
client.workspace = true
|
|
futures-lite.workspace = true
|
|
component.workspace = true
|
|
gpui.workspace = true
|
|
rpc.workspace = true
|
|
sum_tree.workspace = true
|
|
time.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|
|
zed_actions.workspace = true
|
|
|
|
[dev-dependencies]
|
|
client = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
rpc = { workspace = true, features = ["test-support"] }
|
|
util = { workspace = true, features = ["test-support"] }
|