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-01-10 18:03:55 +03:00
|
|
|
test-support = ["gpui/test-support", "rpc/test-support"]
|
2021-10-04 22:07:35 +03:00
|
|
|
|
|
|
|
[dependencies]
|
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"
|
2021-10-04 22:07:35 +03:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
log = "0.4"
|
|
|
|
parking_lot = "0.11.1"
|
|
|
|
postage = { version = "0.4.1", features = ["futures-traits"] }
|
|
|
|
rand = "0.8.3"
|
|
|
|
smol = "1.2.5"
|
|
|
|
surf = "2.2"
|
|
|
|
thiserror = "1.0.29"
|
2021-10-05 03:30:11 +03:00
|
|
|
time = "0.3"
|
2021-10-04 22:07:35 +03:00
|
|
|
tiny_http = "0.8"
|
2022-01-10 18:03:55 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gpui = { path = "../gpui", features = ["test-support"] }
|
|
|
|
rpc = { path = "../rpc", features = ["test-support"] }
|