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-05-07 20:59:18 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
async-recursion = "0.3"
|
2024-07-24 01:01:05 +03:00
|
|
|
async-tungstenite = { workspace = true, features = ["async-std", "async-native-tls"] }
|
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
|
|
|
|
feature_flags.workspace = true
|
2024-06-11 21:43:12 +03:00
|
|
|
fs.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
2024-05-07 20:59:18 +03:00
|
|
|
gpui.workspace = true
|
2024-07-24 01:01:05 +03:00
|
|
|
http_client.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
2024-05-10 06:08:49 +03:00
|
|
|
once_cell.workspace = true
|
2024-06-18 02:27:42 +03:00
|
|
|
paths.workspace = true
|
2023-04-25 03:41:55 +03:00
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
rand.workspace = true
|
2024-05-07 20:59:18 +03:00
|
|
|
release_channel.workspace = true
|
|
|
|
rpc.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-05-07 20:59:18 +03:00
|
|
|
settings.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
|
2024-05-07 20:59:18 +03:00
|
|
|
text.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
|
2024-05-07 20:59:18 +03:00
|
|
|
util.workspace = true
|
2024-06-17 22:52:59 +03:00
|
|
|
worktree.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"] }
|
2024-07-24 01:01:05 +03:00
|
|
|
http_client = { workspace = true, features = ["test-support"] }
|
2024-05-13 23:10:03 +03:00
|
|
|
|
2024-06-11 21:43:12 +03:00
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
|
|
windows.workspace = true
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
cocoa.workspace = true
|
2024-06-22 02:32:32 +03:00
|
|
|
async-native-tls = { version = "0.5.0", features = ["vendored"] }
|