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"
|
2021-10-04 22:07:35 +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]
|
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" }
|
|
|
|
rpc = { path = "../rpc" }
|
2021-10-05 03:30:11 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2021-10-04 22:07:35 +03:00
|
|
|
anyhow = "1.0.38"
|
|
|
|
async-recursion = "0.3"
|
2022-01-04 02:20:40 +03:00
|
|
|
async-tungstenite = { version = "0.16", features = ["async-tls"] }
|
2021-10-05 03:30:11 +03:00
|
|
|
futures = "0.3"
|
|
|
|
image = "0.23"
|
2022-04-27 06:19:15 +03:00
|
|
|
isahc = "1.7"
|
2021-10-04 22:07:35 +03:00
|
|
|
lazy_static = "1.4.0"
|
2022-04-08 19:06:51 +03:00
|
|
|
log = { version = "0.4.16", features = ["kv_unstable_serde"] }
|
2021-10-04 22:07:35 +03:00
|
|
|
parking_lot = "0.11.1"
|
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
|
|
rand = "0.8.3"
|
|
|
|
smol = "1.2.5"
|
|
|
|
thiserror = "1.0.29"
|
2022-06-21 15:03:10 +03:00
|
|
|
time = { version = "0.3", features = ["serde", "serde-well-known"] }
|
2021-10-04 22:07:35 +03:00
|
|
|
tiny_http = "0.8"
|
2022-09-27 03:18:34 +03:00
|
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
2022-04-27 06:19:15 +03:00
|
|
|
url = "2.2"
|
2022-09-23 03:52:39 +03:00
|
|
|
serde = { version = "*", features = ["derive"] }
|
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"] }
|