2023-08-22 02:30:57 +03:00
|
|
|
[package]
|
|
|
|
name = "channel"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-24 02:26:58 +03:00
|
|
|
license = "GPL-3.0-only"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
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]
|
|
|
|
client = { path = "../client" }
|
|
|
|
collections = { path = "../collections" }
|
|
|
|
db = { path = "../db" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
rpc = { path = "../rpc" }
|
|
|
|
text = { path = "../text" }
|
|
|
|
language = { path = "../language" }
|
|
|
|
settings = { path = "../settings" }
|
2023-08-26 03:00:53 +03:00
|
|
|
feature_flags = { path = "../feature_flags" }
|
2023-08-22 02:30:57 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2023-10-04 03:39:24 +03:00
|
|
|
clock = { path = "../clock" }
|
2023-08-22 02:30:57 +03:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
image = "0.23"
|
|
|
|
lazy_static.workspace = true
|
2023-09-19 06:24:33 +03:00
|
|
|
smallvec.workspace = true
|
2023-08-22 02:30:57 +03:00
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
rand.workspace = true
|
|
|
|
schemars.workspace = true
|
|
|
|
smol.workspace = true
|
|
|
|
thiserror.workspace = true
|
|
|
|
time.workspace = true
|
|
|
|
tiny_http = "0.8"
|
2023-10-04 03:39:24 +03:00
|
|
|
uuid.workspace = true
|
2023-08-22 02:30:57 +03:00
|
|
|
url = "2.2"
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
tempfile = "3"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2023-09-08 04:06:05 +03:00
|
|
|
client = { path = "../client", features = ["test-support"] }
|
2023-08-22 02:30:57 +03:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
|
|
|
util = { path = "../util", features = ["test-support"] }
|