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
|
|
|
|
2024-03-05 20:01:17 +03:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
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]
|
2024-02-23 06:28:08 +03:00
|
|
|
test-support = ["clock/test-support", "collections/test-support", "gpui/test-support", "rpc/test-support"]
|
2021-10-04 22:07:35 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-26 02:52:59 +03:00
|
|
|
chrono = { workspace = true, features = ["serde"] }
|
2024-02-23 06:28:08 +03:00
|
|
|
clock.workspace = true
|
2024-02-06 22:41:36 +03:00
|
|
|
collections.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
|
2023-04-25 03:41:55 +03:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
2021-10-04 22:07:35 +03:00
|
|
|
async-recursion = "0.3"
|
2024-02-02 20:08:15 +03:00
|
|
|
async-tungstenite = { version = "0.16", features = ["async-std", "async-native-tls"] }
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
2024-02-01 01:44:38 +03:00
|
|
|
once_cell = "1.19.0"
|
2023-04-25 03:41:55 +03:00
|
|
|
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
|
2024-01-07 16:14:21 +03:00
|
|
|
serde_json.workspace = true
|
2024-02-23 19:13:28 +03:00
|
|
|
sha2.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
smol.workspace = true
|
2023-10-03 02:35:31 +03:00
|
|
|
sysinfo.workspace = true
|
2024-02-23 19:13:28 +03:00
|
|
|
telemetry_events.workspace = true
|
2024-01-31 05:41:29 +03:00
|
|
|
tempfile.workspace = true
|
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"
|
2024-01-31 03:20:15 +03:00
|
|
|
url.workspace = true
|
2022-01-10 18:03:55 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-23 06:28:08 +03:00
|
|
|
clock = { workspace = true, features = ["test-support"] }
|
2024-02-06 22:41:36 +03: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"] }
|