[package] name = "channel" version = "0.1.0" edition = "2021" publish = false license = "GPL-3.0-or-later" [lib] path = "src/channel.rs" doctest = false [features] test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"] [dependencies] anyhow.workspace = true client = { path = "../client" } clock = { path = "../clock" } collections = { path = "../collections" } db = { path = "../db" } feature_flags = { path = "../feature_flags" } futures.workspace = true gpui = { path = "../gpui" } image = "0.23" language = { path = "../language" } lazy_static.workspace = true log.workspace = true parking_lot.workspace = true postage.workspace = true rand.workspace = true release_channel = { path = "../release_channel" } rpc = { path = "../rpc" } schemars.workspace = true serde.workspace = true serde_derive.workspace = true settings = { path = "../settings" } smallvec.workspace = true smol.workspace = true sum_tree = { path = "../sum_tree" } tempfile.workspace = true text = { path = "../text" } thiserror.workspace = true time.workspace = true tiny_http = "0.8" url.workspace = true util = { path = "../util" } uuid.workspace = true [dev-dependencies] collections = { path = "../collections", features = ["test-support"] } gpui = { path = "../gpui", features = ["test-support"] } rpc = { path = "../rpc", features = ["test-support"] } client = { path = "../client", features = ["test-support"] } settings = { path = "../settings", features = ["test-support"] } util = { path = "../util", features = ["test-support"] }