2023-08-22 02:30:57 +03:00
|
|
|
[package]
|
|
|
|
name = "channel"
|
|
|
|
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-08-22 02:30:57 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/channel.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-01-31 05:41:29 +03:00
|
|
|
anyhow.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
client.workspace = true
|
|
|
|
clock.workspace = true
|
|
|
|
collections.workspace = true
|
2023-08-22 02:30:57 +03:00
|
|
|
futures.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
gpui.workspace = true
|
|
|
|
language.workspace = true
|
2023-08-22 02:30:57 +03:00
|
|
|
log.workspace = true
|
|
|
|
rand.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
release_channel.workspace = true
|
|
|
|
rpc.workspace = true
|
|
|
|
settings.workspace = true
|
|
|
|
sum_tree.workspace = true
|
|
|
|
text.workspace = true
|
2023-08-22 02:30:57 +03:00
|
|
|
time.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
util.workspace = true
|
2023-08-22 02:30:57 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 22:41:36 +03:00
|
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
|
|
rpc = { workspace = true, features = ["test-support"] }
|
|
|
|
client = { workspace = true, features = ["test-support"] }
|
|
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
|
|
util = { workspace = true, features = ["test-support"] }
|
2024-07-24 01:01:05 +03:00
|
|
|
http_client = { workspace = true, features = ["test-support"] }
|