2021-10-04 22:07:35 +03:00
|
|
|
[package]
|
2021-10-05 03:14:21 +03:00
|
|
|
name = "client"
|
2021-10-04 22:07:35 +03:00
|
|
|
version = "0.1.0"
|
2022-01-26 23:50:31 +03:00
|
|
|
edition = "2021"
|
2023-01-18 23:28:02 +03:00
|
|
|
publish = false
|
2024-01-27 15:51:16 +03:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 19:40:30 +03:00
|
|
|
|
2021-11-30 22:46:39 +03:00
|
|
|
[lib]
|
|
|
|
path = "src/client.rs"
|
2022-03-04 03:15:56 +03:00
|
|
|
doctest = false
|
2021-11-30 22:46:39 +03:00
|
|
|
|
2021-10-04 22:07:35 +03:00
|
|
|
[features]
|
2022-05-17 17:21:09 +03:00
|
|
|
test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"]
|
2021-10-04 22:07:35 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-11-20 05:52:28 +03:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2022-05-17 17:21:09 +03:00
|
|
|
collections = { path = "../collections" }
|
2022-09-27 03:18:34 +03:00
|
|
|
db = { path = "../db" }
|
2021-10-05 01:36:52 +03:00
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
util = { path = "../util" }
|
2024-01-30 22:08:20 +03:00
|
|
|
release_channel = { path = "../release_channel" }
|
2021-10-05 01:36:52 +03:00
|
|
|
rpc = { path = "../rpc" }
|
2023-08-22 02:30:57 +03:00
|
|
|
text = { path = "../text" }
|
2023-04-25 03:41:55 +03:00
|
|
|
settings = { path = "../settings" }
|
2023-08-26 03:00:53 +03:00
|
|
|
feature_flags = { path = "../feature_flags" }
|
2021-10-05 03:30:11 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2023-04-25 03:41:55 +03:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
2021-10-04 22:07:35 +03:00
|
|
|
async-recursion = "0.3"
|
2022-01-04 02:20:40 +03:00
|
|
|
async-tungstenite = { version = "0.16", features = ["async-tls"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2021-10-05 03:30:11 +03:00
|
|
|
image = "0.23"
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
rand.workspace = true
|
2023-05-10 22:17:52 +03:00
|
|
|
schemars.workspace = true
|
2023-10-03 02:35:31 +03:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2024-01-07 16:14:21 +03:00
|
|
|
serde_json.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
smol.workspace = true
|
2023-10-03 02:35:31 +03:00
|
|
|
sysinfo.workspace = true
|
|
|
|
tempfile = "3"
|
2023-04-25 03:41:55 +03:00
|
|
|
thiserror.workspace = true
|
|
|
|
time.workspace = true
|
2021-10-04 22:07:35 +03:00
|
|
|
tiny_http = "0.8"
|
2023-10-04 03:39:24 +03:00
|
|
|
uuid.workspace = true
|
2022-04-27 06:19:15 +03:00
|
|
|
url = "2.2"
|
2022-01-10 18:03:55 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-05-17 17:21:09 +03:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2022-01-10 18:03:55 +03:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2022-10-26 20:32:30 +03:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2023-04-11 18:43:05 +03:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|