2021-10-04 19:07:35 +00:00
|
|
|
[package]
|
2021-10-05 00:14:21 +00:00
|
|
|
name = "client"
|
2021-10-04 19:07:35 +00:00
|
|
|
version = "0.1.0"
|
2022-01-26 20:50:31 +00:00
|
|
|
edition = "2021"
|
2023-01-18 20:28:02 +00:00
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2021-11-30 19:46:39 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/client.rs"
|
2022-03-04 00:15:56 +00:00
|
|
|
doctest = false
|
2021-11-30 19:46:39 +00:00
|
|
|
|
2021-10-04 19:07:35 +00:00
|
|
|
[features]
|
2022-05-17 14:21:09 +00:00
|
|
|
test-support = ["collections/test-support", "gpui/test-support", "rpc/test-support"]
|
2021-10-04 19:07:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-11-20 02:52:28 +00:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2024-02-06 19:41:36 +00:00
|
|
|
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
|
2023-04-25 00:41:55 +00:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
2021-10-04 19:07:35 +00:00
|
|
|
async-recursion = "0.3"
|
2024-02-02 17:08:15 +00:00
|
|
|
async-tungstenite = { version = "0.16", features = ["async-std", "async-native-tls"] }
|
2023-04-25 00:41:55 +00:00
|
|
|
futures.workspace = true
|
2021-10-05 00:30:11 +00:00
|
|
|
image = "0.23"
|
2023-04-25 00:41:55 +00:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
2024-01-31 22:44:38 +00:00
|
|
|
once_cell = "1.19.0"
|
2023-04-25 00:41:55 +00:00
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
rand.workspace = true
|
2023-05-10 19:17:52 +00:00
|
|
|
schemars.workspace = true
|
2023-10-02 23:35:31 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2024-01-07 13:14:21 +00:00
|
|
|
serde_json.workspace = true
|
2024-01-31 22:44:38 +00:00
|
|
|
sha2 = "0.10"
|
2023-04-25 00:41:55 +00:00
|
|
|
smol.workspace = true
|
2023-10-02 23:35:31 +00:00
|
|
|
sysinfo.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
tempfile.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
thiserror.workspace = true
|
|
|
|
time.workspace = true
|
2021-10-04 19:07:35 +00:00
|
|
|
tiny_http = "0.8"
|
2023-10-04 00:39:24 +00:00
|
|
|
uuid.workspace = true
|
2024-01-31 00:20:15 +00:00
|
|
|
url.workspace = true
|
2022-01-10 15:03:55 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-06 19:41:36 +00:00
|
|
|
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"] }
|