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
|
2021-10-04 19:07:35 +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]
|
2022-05-17 14:21:09 +00:00
|
|
|
collections = { path = "../collections" }
|
2022-09-27 00:18:34 +00:00
|
|
|
db = { path = "../db" }
|
2021-10-04 22:36:52 +00:00
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
rpc = { path = "../rpc" }
|
2023-04-25 00:41:55 +00:00
|
|
|
settings = { path = "../settings" }
|
2023-04-04 03:16:45 +00:00
|
|
|
staff_mode = { path = "../staff_mode" }
|
2021-10-05 00:30:11 +00:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2023-04-25 00:41:55 +00:00
|
|
|
|
|
|
|
anyhow.workspace = true
|
2021-10-04 19:07:35 +00:00
|
|
|
async-recursion = "0.3"
|
2022-01-03 23:20:40 +00:00
|
|
|
async-tungstenite = { version = "0.16", features = ["async-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
|
|
|
|
parking_lot.workspace = true
|
|
|
|
postage.workspace = true
|
|
|
|
rand.workspace = true
|
2023-05-10 19:17:52 +00:00
|
|
|
schemars.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
smol.workspace = true
|
|
|
|
thiserror.workspace = true
|
|
|
|
time.workspace = true
|
2021-10-04 19:07:35 +00:00
|
|
|
tiny_http = "0.8"
|
2022-09-27 00:18:34 +00:00
|
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
2022-04-27 03:19:15 +00:00
|
|
|
url = "2.2"
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
2022-09-27 21:20:13 +00:00
|
|
|
tempfile = "3"
|
2022-01-10 15:03:55 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-05-17 14:21:09 +00:00
|
|
|
collections = { path = "../collections", features = ["test-support"] }
|
2022-01-10 15:03:55 +00:00
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|
2022-10-26 17:32:30 +00:00
|
|
|
settings = { path = "../settings", features = ["test-support"] }
|
2023-04-11 15:43:05 +00:00
|
|
|
util = { path = "../util", features = ["test-support"] }
|