mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
f19ab464c7
Send telemetry to collab not zed.dev Release Notes: - N/A --------- Co-authored-by: Marshall <marshall@zed.dev> Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
62 lines
1.6 KiB
TOML
62 lines
1.6 KiB
TOML
[package]
|
|
name = "client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/client.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = ["clock/test-support", "collections/test-support", "gpui/test-support", "rpc/test-support"]
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
clock.workspace = true
|
|
collections.workspace = true
|
|
db.workspace = true
|
|
gpui.workspace = true
|
|
util.workspace = true
|
|
release_channel.workspace = true
|
|
rpc.workspace = true
|
|
text.workspace = true
|
|
settings.workspace = true
|
|
feature_flags.workspace = true
|
|
sum_tree.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
async-recursion = "0.3"
|
|
async-tungstenite = { version = "0.16", features = ["async-std", "async-native-tls"] }
|
|
futures.workspace = true
|
|
image = "0.23"
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
once_cell = "1.19.0"
|
|
parking_lot.workspace = true
|
|
postage.workspace = true
|
|
rand.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
smol.workspace = true
|
|
sysinfo.workspace = true
|
|
telemetry_events.workspace = true
|
|
tempfile.workspace = true
|
|
thiserror.workspace = true
|
|
time.workspace = true
|
|
tiny_http = "0.8"
|
|
uuid.workspace = true
|
|
url.workspace = true
|
|
|
|
[dev-dependencies]
|
|
clock = { workspace = true, features = ["test-support"] }
|
|
collections = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
rpc = { workspace = true, features = ["test-support"] }
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
util = { workspace = true, features = ["test-support"] }
|